Endpoint Playground
Test Crawlora's Facet PlayStation 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/playstation-games/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: publisher, classification, genres, platforms, content_rating_authority, price_tier, service_branding, region, release_year, run_id, is_free, is_addon, coming_soon | |
| q | string | No | Full-text query over name and publisher, max 256 characters | |
| publisher | string | No | Exact publisher filter, max 128 characters | |
| classification | string | No | Exact classification filter, max 128 characters | |
| genre | string | No | Exact genre filter, max 128 characters | |
| platform | string | No | Exact platform filter: PS4 or PS5 | |
| content_rating | string | No | Exact content-rating authority filter, max 128 characters | |
| content_descriptor | string | No | Exact content-descriptor filter, max 128 characters | |
| price_tier | string | No | Price-tier enum: free, under_5, 5_to_10, 10_to_20, 20_to_40, 40_to_60, 60_plus | |
| branding | string | No | Exact subscription/service-branding filter, max 128 characters | |
| region | string | No | Exact store region (country code) filter, max 128 characters | |
| concept_id | string | No | Exact concept id filter, max 128 characters | |
| np_title_id | string | No | Exact np_title_id filter, max 128 characters | |
| run_id | string | No | Exact crawl run-id filter, max 128 characters | |
| is_free | boolean | No | Filter by free flag | |
| is_addon | boolean | No | Filter add-ons vs games | |
| is_tied_to_subscription | boolean | No | Filter subscription-included titles | |
| coming_soon | boolean | No | Filter for pre-release titles | |
| on_sale | boolean | No | Filter by titles currently discounted (discount_pct > 0) | |
| min_price_value | integer | No | Minimum current price in minor units | |
| max_price_value | integer | No | Maximum current price in minor units | |
| min_star_rating | number | No | Minimum average star rating, 0 through 5 | |
| min_star_count | integer | No | Minimum number of star ratings | |
| min_discount_pct | integer | No | Minimum discount percent, 0 through 100 | |
| min_release_year | integer | No | Minimum release year | |
| max_release_year | integer | No | Maximum release year |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "playstation-games",
"facet": "genres",
"items": [
{
"value": "Action",
"count": 6005
},
{
"value": "Adventure",
"count": 2354
}
]
}
}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 PlayStation games dataset. Facet enum: `publisher`, `classification`, `genres`, `platforms`, `content_rating_authority`, `price_tier`, `service_branding`, `region`, `release_year`, `run_id`, `is_free`, `is_addon`, `coming_soon`. price_tier enum: `free`, `under_5`, `5_to_10`, `10_to_20`, `20_to_40`, `40_to_60`, `60_plus`. 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": "playstation-games",
"facet": "genres",
"items": [
{
"value": "Action",
"count": 6005
},
{
"value": "Adventure",
"count": 2354
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/playstation-games/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"