Endpoint Playground
Test Crawlora's Search the steam-prices 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-prices/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, price_asc, price_desc, discount_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-prices",
"items": [
{
"appid": 292030,
"name": "The Witcher 3: Wild Hunt",
"snapshot_date": "2026-07-11",
"currency": "USD",
"price_cents": 999,
"initial_price_cents": 3999,
"discount_pct": 75,
"is_free": false,
"crawled_at": "2026-07-11T04:25:47Z"
}
],
"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 price time series for priced games (one document per appid × day; integer cents). Pair `app_id` with `sort=date_desc` for a game's price history, or pass `date` for one day's snapshot. Sort enum: `date_desc` (default), `date_asc`, `price_asc`, `price_desc`, `discount_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-prices",
"items": [
{
"appid": 292030,
"name": "The Witcher 3: Wild Hunt",
"snapshot_date": "2026-07-11",
"currency": "USD",
"price_cents": 999,
"initial_price_cents": 3999,
"discount_pct": 75,
"is_free": false,
"crawled_at": "2026-07-11T04:25:47Z"
}
],
"page": 1,
"page_size": 20,
"total": 365,
"sort": "date_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/steam-prices/search" \
-H "x-api-key: $CRAWLORA_API_KEY"