Endpoint Playground
Test Crawlora's Search the steam-charts dataset API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/steam-charts/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Full-text query over the game name, max 256 characters | |
| chart | string | No | Chart enum: most_played, concurrent, top_sellers | |
| country | string | No | Market filter: global (player-count charts) or an ISO country code (top_sellers), max 128 characters | |
| app_id | string | No | Exact Steam app id filter; pair with sort=date_desc for rank/players history | |
| date | string | No | Snapshot date filter yyyy-MM-dd; defaults to the latest snapshot | |
| sort | string | No | Sort enum: rank, rank_desc, date_desc | |
| page | integer | No | Page number, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "steam-charts",
"items": [
{
"chart_uid": "concurrent:global:2026-07-11:1",
"chart": "concurrent",
"country": "global",
"snapshot_date": "2026-07-11",
"rank": 1,
"app_id": "730",
"name": "Counter-Strike 2",
"concurrent_in_game": 899091,
"peak_in_game": 1308574
}
],
"snapshot_date": "2026-07-11",
"page": 1,
"page_size": 20,
"total": 100,
"sort": "rank"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches daily snapshots of Steam's player-count and sales charts, stored in a search index (one document per chart × country × snapshot × rank) so history accumulates. Charts: `most_played` (weekly peak concurrent), `concurrent` (live concurrent players), `top_sellers` (weekly sales; country-specific). With no `date` the latest snapshot is returned (today's chart); pair `app_id` with `sort=date_desc` for an app's rank/players over time. Country is `global` for the player-count charts or an ISO code (e.g. `us`) for `top_sellers`. Sort enum: `rank`, `rank_desc`, `date_desc`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "steam-charts",
"items": [
{
"chart_uid": "concurrent:global:2026-07-11:1",
"chart": "concurrent",
"country": "global",
"snapshot_date": "2026-07-11",
"rank": 1,
"app_id": "730",
"name": "Counter-Strike 2",
"concurrent_in_game": 899091,
"peak_in_game": 1308574
}
],
"snapshot_date": "2026-07-11",
"page": 1,
"page_size": 20,
"total": 100,
"sort": "rank"
}
}curl "https://api.crawlora.net/api/v1/datasets/steam-charts/search" \
-H "x-api-key: $CRAWLORA_API_KEY"