Endpoint Playground
Test Crawlora's Facet the Steam games 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-games/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: type, developer, publisher, genres, categories, tags, primary_tag, price_tier, review_tier, owners_bucket, release_year, run_id, is_free, coming_soon, platform_windows, platform_mac, platform_linux | |
| q | string | No | Full-text query over name, developer and publisher, max 256 characters | |
| type | string | No | Exact storefront type filter, max 128 characters | |
| developer | string | No | Exact developer filter, max 128 characters | |
| publisher | string | No | Exact publisher filter, max 128 characters | |
| genre | string | No | Exact genre filter, max 128 characters | |
| category | string | No | Exact store category filter, max 128 characters | |
| tag | string | No | Exact community-tag filter (e.g. Roguelike, Cozy), max 128 characters | |
| price_tier | string | No | Price-tier enum: free, under5, 5to15, 15to30, 30to60, over60 | |
| review_tier | string | No | Review-tier enum: overwhelmingly_positive, very_positive, positive, mixed, negative, insufficient | |
| owners_bucket | string | No | Exact SteamSpy owners-range bucket filter, max 128 characters | |
| run_id | string | No | Exact crawl run-id filter, max 128 characters | |
| is_free | boolean | No | Filter by free-to-play flag | |
| windows | boolean | No | Filter by Windows support | |
| mac | boolean | No | Filter by macOS support | |
| linux | boolean | No | Filter by Linux support | |
| on_sale | boolean | No | Filter by titles currently discounted (discount_pct > 0) | |
| min_price_cents | integer | No | Minimum current price in cents | |
| max_price_cents | integer | No | Maximum current price in cents | |
| min_owners | integer | No | Minimum estimated owners (SteamSpy owners midpoint) | |
| min_positive | integer | No | Minimum positive review count | |
| min_total_reviews | integer | No | Minimum total review count | |
| min_review_score | number | No | Minimum positive-review ratio, 0 through 1 | |
| min_metacritic | integer | No | Minimum Metacritic score, 0 through 100 | |
| min_ccu | integer | No | Minimum peak concurrent users yesterday | |
| min_release_year | integer | No | Minimum release year | |
| max_release_year | integer | No | Maximum release year |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "steam-games",
"facet": "genres",
"items": [
{
"value": "Indie",
"count": 4210
},
{
"value": "Action",
"count": 3175
},
{
"value": "Adventure",
"count": 2610
}
]
}
}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.
Returns terms aggregation counts for the Steam games dataset. Facet enum: `type`, `developer`, `publisher`, `genres`, `categories`, `price_tier`, `review_tier`, `owners_bucket`, `release_year`, `run_id`, `is_free`, `coming_soon`, `platform_windows`, `platform_mac`, `platform_linux`. price_tier enum: `free`, `under5`, `5to15`, `15to30`, `30to60`, `over60`. review_tier enum: `overwhelmingly_positive`, `very_positive`, `positive`, `mixed`, `negative`, `insufficient`. 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-games",
"facet": "genres",
"items": [
{
"value": "Indie",
"count": 4210
},
{
"value": "Action",
"count": 3175
},
{
"value": "Adventure",
"count": 2610
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/steam-games/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"