Datasets API endpoint
Use Crawlora's Search PlayStation games dataset API to search or inspect stored structured datasets as JSON. This page includes request parameters, cURL examples, response schema, validation behavior, credit cost, and a Playground link for testing before integration. Dataset endpoints read indexed records and do not apply proxy routing.
/datasets/playstation-games/searchSearches 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`. Developers commonly use this endpoint for repeatable dataset search, filtering, facets, local business enrichment, analytics, exports, and internal tools that need structured records beyond the limited manual refinement available in the Google Maps app. Authentication uses the x-api-key header, usage is metered with the credit cost shown on this page, and the request does not trigger live scraping or proxy routing.
Request parameters are generated from the active endpoint catalog. Dataset parameters filter, page, facet, or locate stored structured records; they do not configure a live scraper or proxy path.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| 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 | 1 | Page number, defaults to 1 | |
| page_size | integer | No | 20 and maxes at 100 | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/datasets/playstation-games/search?q=coffee&is_free=true&is_addon=true&is_tied_to_subscription=true&coming_soon=true&on_sale=true&page=1" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint reads stored indexed dataset records. It does not execute a live upstream Google Maps request, browser session, or proxy-routed scraping job.
Crawlora does not silently return invalid dataset search results when filters, pagination, coordinates, or stored record lookups cannot be satisfied.
| Status | Common failure case |
|---|---|
| 400 | Invalid input, missing required parameter, invalid enum, bad coordinate pair, or result window beyond the dataset limit |
| 404 | Requested stored dataset item is not present |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal dataset query or storage error |
When possible, Crawlora returns structured error context so your integration can adjust filters, page size, location inputs, or lookup identifiers.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
{
"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"
}
}Request schema
No body schema
Response schema
#/definitions/datasets.playstationGamesSearchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | datasets.PlaystationSearchResponse | No | ||||
| data.dataset | string | No | ||||
| data.items | array | No | ||||
| data.items[].addon_count | integer | No | ||||
| data.items[].base_price_value | integer | No | ||||
| data.items[].classification | string | No | Classification is the storeDisplayClassification (FULL_GAME, PREMIUM_EDITION, GAME_BUNDLE, ADD_ON_PACK, VIRTUAL_CURRENCY, LEVEL, OTHER, ...). | |||
| data.items[].coming_soon | boolean | No | ||||
| data.items[].concept_id | string | No | ||||
| data.items[].content_descriptors | array | No | ||||
| data.items[].content_rating_authority | string | No | ||||
| data.items[].content_rating_desc | string | No | ||||
| data.items[].content_rating_name | string | No | ||||
| data.items[].crawled_at | string | No | ||||
| data.items[].currency | string | No | ||||
| data.items[].description | string | No | ||||
| data.items[].discount_end_time | string | No | ||||
| data.items[].discount_pct | integer | No | ||||
| data.items[].discount_text | string | No | ||||
| data.items[].discounted_value | integer | No | ||||
| data.items[].edition_count | integer | No | ||||
| data.items[].genres | array | No | ||||
| data.items[].header_image | string | No | ||||
| data.items[].is_addon | boolean | No | ||||
| data.items[].is_free | boolean | No | ||||
| data.items[].is_tied_to_subscription | boolean | No | ||||
| data.items[].name | string | No | ||||
| data.items[].np_title_id | string | No | ||||
| data.items[].platforms | array | No | ||||
| data.items[].price_tier | string | No | ||||
| data.items[].product_id | string | No | ||||
| data.items[].publisher | string | No | ||||
| data.items[].region | string | No | Region is the store country code the record was crawled from (selects currency). | |||
| data.items[].release_date | string | No | ||||
| data.items[].release_year | integer | No | ||||
| data.items[].run_id | string | No | ||||
| data.items[].schema_version | integer | No | ||||
| data.items[].seed_rank | integer | No | ||||
| data.items[].service_branding | array | No | ||||
| data.items[].source_url | string | No | ||||
| data.items[].star_rating_avg | number | No | ||||
| data.items[].star_rating_count | integer | No | ||||
| data.page | integer | No | ||||
| data.page_size | integer | No | ||||
| data.sort | string | No | ||||
| data.total | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/datasets/playstation-games/search?q=coffee&is_free=true&is_addon=true&is_tied_to_subscription=true&coming_soon=true&on_sale=true&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms