Steam API endpoint
Use Crawlora's Steam Tag / Faceted Store Browse API to extract supported public Steam data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/steam/tagsBrowses the store by the community-tag taxonomy (Roguelike, Metroidvania, Cozy...) and the store filter facets, with no free-text term. Filter by one or more tag ids, a store category id, platform (os), a maximum price, specials-only, and hide-free-to-play; sort and page the browse-rank rows. Each row includes its community tag ids (resolve names via /steam/tags/list). Pagination runs the full result set (total is the real, fully-pageable match count); paging past total returns an empty page. Credential-free public Steam storefront JSON. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| tags | string | No | Comma-separated numeric community tag ids (all must match); resolve ids via /steam/tags/list | ||
| untags | string | No | Comma-separated numeric community tag ids to EXCLUDE | ||
| category1 | string | No | Numeric Steam store category id (e.g. 998 games, 21 dlc) | ||
| category2 | string | No | Additional numeric store category id (feature) | ||
| category3 | string | No | Additional numeric store category id (feature) | ||
| os | string | No | Comma-separated platform filter subset of: win, mac, linux | ||
| maxprice | string | No | Maximum price as whole cents in the cc currency, or the literal 'free' | ||
| specials | boolean | No | Only discounted titles | ||
| hidef2p | boolean | No | Hide free-to-play titles | ||
| deck_compatibility | string | No | Steam Deck compatibility filter: 1 unsupported, 2 playable, 3 verified Allowed values: 1, 2, 3 | ||
| vrsupport | string | No | Comma-separated VR-support filter ids (e.g. 401 seated, 402 standing, 403 roomscale) | ||
| filter | string | No | Curated preset applied within the other facets Allowed values: globaltopsellers, topsellers, popularnew, comingsoon | ||
| supportedlang | string | No | Only titles supporting this Steam language name | ||
| sort_by | string | No | Sort order Allowed values: Relevance, Released_DESC, Name_ASC, Price_ASC, Price_DESC, Reviews_DESC | ||
| start | integer | No | Result offset for pagination | ||
| count | integer | No | Results per page (max 100) | ||
| cc | string | No | Store country code (ISO, selects currency) | ||
| l | string | No | Language code | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/steam/tags?specials=true&hidef2p=true&deck_compatibility=1&filter=globaltopsellers&sort_by=Relevance&count=10" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"total": 43065,
"start": 0,
"count": 1,
"results": [
{
"appid": "1794680",
"name": "Vampire Survivors",
"url": "https://store.steampowered.com/app/1794680/Vampire_Survivors",
"release_date": "20 Oct, 2022",
"review_summary": "Overwhelmingly Positive",
"price": "$4.99",
"tag_ids": [
492,
1774,
3964,
4136,
4085
],
"platforms": {
"windows": true,
"mac": true,
"linux": true
}
}
],
"source_url": "https://store.steampowered.com/search/results/?query=&infinite=1&start=0&count=25&sort_by=Reviews_DESC&tags=492&cc=us&l=en"
}
}Request schema
No body schema
Response schema
#/definitions/steam.searchResultsResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | steam.SearchResultsResponse | No | ||||
| data.count | integer | No | ||||
| data.results | array | No | ||||
| data.results[].appid | string | No | ||||
| data.results[].bundleid | string | No | ||||
| data.results[].discount_pct | string | No | ||||
| data.results[].name | string | No | ||||
| data.results[].packageid | string | No | ||||
| data.results[].platforms | steam.Platforms | No | ||||
| data.results[].platforms.linux | boolean | No | ||||
| data.results[].platforms.mac | boolean | No | ||||
| data.results[].platforms.windows | boolean | No | ||||
| data.results[].price | string | No | ||||
| data.results[].release_date | string | No | ||||
| data.results[].review_summary | string | No | ||||
| data.results[].tag_ids | array | No | ||||
| data.results[].url | string | No | ||||
| data.source_url | string | No | ||||
| data.start | integer | No | ||||
| data.term | string | No | ||||
| data.total | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/steam/tags?specials=true&hidef2p=true&deck_compatibility=1&filter=globaltopsellers&sort_by=Relevance&count=10" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms