Skip to main content
POST
/
api
/
steamdb
/
apps
/
search
/steamdb/apps/search
curl --request POST \
  --url https://api.anysite.io/api/steamdb/apps/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 1000,
  "timeout": 300
}
'
[
  {
    "app_id": 123,
    "name": "<string>",
    "url": "<string>",
    "@type": "@steamdb_app_search_result",
    "image": "<string>",
    "has_store_page": false,
    "steam_store_url": "<string>",
    "updated_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search keyword

Minimum string length: 1
Examples:

"portal"

"team fortress"

count
integer
required

Max number of results to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

app_id
integer
required
name
string
required
url
string
required
@type
string
default:@steamdb_app_search_result
image
string | null
has_store_page
boolean
default:false
steam_store_url
string | null
updated_at
string | null