Skip to main content
POST
/
api
/
steam
/
apps
/
search
/steam/apps/search
curl --request POST \
  --url https://api.anysite.io/api/steam/apps/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "term": "<string>",
  "count": 5,
  "timeout": 300,
  "cc": "us",
  "language": "en"
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "@steam_search_app",
    "type": "<string>",
    "image": "<string>",
    "price": {
      "@type": "@steam_search_price",
      "currency": "<string>",
      "initial": 123,
      "final": 123
    },
    "platforms": {
      "@type": "@steam_search_platforms",
      "windows": false,
      "mac": false,
      "linux": false
    },
    "metascore": 123,
    "controller_support": "<string>",
    "streamingvideo": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
term
string
required

Search term — an app name, keyword, or franchise

Minimum string length: 1
Examples:

"counter strike"

"portal"

count
integer
required

Max number of results to return

Required range: 1 <= x <= 10
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
cc
enum<string>
default:us

Storefront country (controls price, currency and region)

Available options:
us,
gb,
ca,
au,
de,
fr,
it,
es,
nl,
se,
jp,
kr,
cn,
in,
br,
mx,
ru,
tr,
pl,
ae,
sa,
sg,
hk,
tw,
id,
th,
vn,
ph,
my,
za
language
string
default:en

Language for localized text fields

Minimum string length: 2

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:@steam_search_app
type
string | null
image
string | null
price
SteamSearchPrice · object
platforms
SteamSearchPlatforms · object
metascore
integer | null
controller_support
string | null
streamingvideo
boolean
default:false