Endpoint Playground
Test Crawlora's Search 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/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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: FULL_GAME, PREMIUM_EDITION, GAME_BUNDLE, ADD_ON_PACK, VIRTUAL_CURRENCY, LEVEL, OTHER | |
| genre | string | No | Exact genre filter (e.g. Action, Role Playing Games), max 128 characters | |
| platform | string | No | Exact platform filter: PS4 or PS5 | |
| content_rating | string | No | Exact content-rating authority filter (e.g. ESRB, PEGI), max 128 characters | |
| content_descriptor | string | No | Exact content-descriptor filter (e.g. Blood, Violence, In-Game Purchases, Users Interact), 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 (e.g. PS_PLUS, EA_PLAY, UBISOFT_PLUS), max 128 characters | |
| region | string | No | Exact store region (country code) filter, max 128 characters | |
| concept_id | string | No | Exact concept id filter (groups all SKUs of a title), 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: true returns add-ons/DLC/currency, false returns games and editions | |
| is_tied_to_subscription | boolean | No | Filter for titles included with a subscription (e.g. free with PS Plus) | |
| coming_soon | boolean | No | Filter for pre-release / not-yet-purchasable titles | |
| on_sale | boolean | No | Filter by titles currently discounted (discount_pct > 0) | |
| min_price_value | integer | No | Minimum current price in minor units (e.g. cents) | |
| max_price_value | integer | No | Maximum current price in minor units (e.g. cents) | |
| 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 | |
| sort | string | No | Sort enum: relevance, rating_desc, reviews_desc, price_asc, price_desc, discount_desc, release_desc, release_asc | |
| 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": "playstation-games",
"items": [
{
"product_id": "UP0001-PPSA01491_00-GAME000000000000",
"concept_id": "10000237",
"name": "Assassin's Creed Valhalla",
"publisher": "Ubisoft",
"platforms": [
"PS4",
"PS5"
],
"genres": [
"Role Playing Games"
],
"classification": "FULL_GAME",
"is_addon": false,
"base_price_value": 5999,
"discounted_value": 1979,
"currency": "USD",
"discount_pct": 67,
"price_tier": "10_to_20",
"star_rating_avg": 4.08,
"star_rating_count": 84255,
"release_date": "2020-11-12T05:00:00Z",
"release_year": 2020,
"region": "us"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "reviews_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 crawled public PlayStation Store catalog stored in a search index. One row per product SKU (game, edition or add-on); concept_id / np_title_id group a title's SKUs. price_tier enum: `free`, `under_5`, `5_to_10`, `10_to_20`, `20_to_40`, `40_to_60`, `60_plus`. Sort enum: `relevance`, `rating_desc`, `reviews_desc`, `price_asc`, `price_desc`, `discount_desc`, `release_desc`, `release_asc`. 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",
"items": [
{
"product_id": "UP0001-PPSA01491_00-GAME000000000000",
"concept_id": "10000237",
"name": "Assassin's Creed Valhalla",
"publisher": "Ubisoft",
"platforms": [
"PS4",
"PS5"
],
"genres": [
"Role Playing Games"
],
"classification": "FULL_GAME",
"is_addon": false,
"base_price_value": 5999,
"discounted_value": 1979,
"currency": "USD",
"discount_pct": 67,
"price_tier": "10_to_20",
"star_rating_avg": 4.08,
"star_rating_count": 84255,
"release_date": "2020-11-12T05:00:00Z",
"release_year": 2020,
"region": "us"
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "reviews_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/playstation-games/search" \
-H "x-api-key: $CRAWLORA_API_KEY"