Endpoint Playground
Test Crawlora's Search steam-playercounts 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-playercounts/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| app_id | string | No | Exact Steam app id filter | |
| date | string | No | Snapshot date filter yyyy-MM-dd | |
| sort | string | No | Sort enum: date_desc, date_asc, players_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-playercounts",
"items": [
{
"appid": 730,
"name": "Counter-Strike 2",
"snapshot_date": "2026-07-11",
"player_count": 899091,
"crawled_at": "2026-07-11T04:20:11Z"
}
],
"page": 1,
"page_size": 20,
"total": 365,
"sort": "date_desc"
}
}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 the daily concurrent-player time series for tracked games (one document per appid × day). Pair `app_id` with `sort=date_desc` for a game's player-count history, or pass `date` for one day's snapshot. Sort enum: `date_desc` (default), `date_asc`, `players_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-playercounts",
"items": [
{
"appid": 730,
"name": "Counter-Strike 2",
"snapshot_date": "2026-07-11",
"player_count": 899091,
"crawled_at": "2026-07-11T04:20:11Z"
}
],
"page": 1,
"page_size": 20,
"total": 365,
"sort": "date_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/steam-playercounts/search" \
-H "x-api-key: $CRAWLORA_API_KEY"