Endpoint Playground
Test Crawlora's PlayStation Store Concept (Game Hub) API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/playstation/concept?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric PlayStation concept id | |
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Language code |
{
"code": 200,
"msg": "OK",
"data": {
"id": "10000237",
"name": "Assassin's Creed Valhalla",
"publisher": "Ubisoft",
"release_date": "2020-11-12T05:00:00Z",
"platforms": [
"PS4",
"PS5"
],
"genres": [
"Role Playing Games"
],
"content_rating": {
"authority": "ESRB",
"name": "ESRB_MATURE_17",
"description": "ESRB Mature 17+"
},
"star_rating": {
"average": 4.08,
"count": 84255
},
"default_product_id": "UP0001-PPSA01491_00-GAME000000000000",
"price": {
"base_price": "$59.99",
"discounted_price": "$19.79",
"discount_text": "-67%",
"base_price_value": 5999,
"discounted_value": 1979,
"currency_code": "USD",
"is_free": false,
"applicability": "OUTRIGHT"
},
"editions": [
{
"product_id": "UP0001-PPSA01491_00-GAME000000000000",
"name": "Assassin's Creed Valhalla",
"classification": "FULL_GAME"
}
],
"add_ons": [
{
"product_id": "UP0001-PPSA01491_00-DLCEXPANSION0003",
"name": "Dawn of Ragnarok",
"classification": "ADD_ON_PACK",
"price": {
"base_price": "$39.99",
"currency_code": "USD"
}
}
],
"source_url": "https://store.playstation.com/en-us/concept/10000237"
}
}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 normalized store metadata for a PlayStation concept: title, publisher, release date, platforms, genres, description, content rating, aggregate star rating, the default product's purchase price, media, and the full lists of purchasable editions and add-ons. cc selects the store region (and price currency) and l the text language. Credential-free public PlayStation Store data.
{
"code": 200,
"msg": "OK",
"data": {
"id": "10000237",
"name": "Assassin's Creed Valhalla",
"publisher": "Ubisoft",
"release_date": "2020-11-12T05:00:00Z",
"platforms": [
"PS4",
"PS5"
],
"genres": [
"Role Playing Games"
],
"content_rating": {
"authority": "ESRB",
"name": "ESRB_MATURE_17",
"description": "ESRB Mature 17+"
},
"star_rating": {
"average": 4.08,
"count": 84255
},
"default_product_id": "UP0001-PPSA01491_00-GAME000000000000",
"price": {
"base_price": "$59.99",
"discounted_price": "$19.79",
"discount_text": "-67%",
"base_price_value": 5999,
"discounted_value": 1979,
"currency_code": "USD",
"is_free": false,
"applicability": "OUTRIGHT"
},
"editions": [
{
"product_id": "UP0001-PPSA01491_00-GAME000000000000",
"name": "Assassin's Creed Valhalla",
"classification": "FULL_GAME"
}
],
"add_ons": [
{
"product_id": "UP0001-PPSA01491_00-DLCEXPANSION0003",
"name": "Dawn of Ragnarok",
"classification": "ADD_ON_PACK",
"price": {
"base_price": "$39.99",
"currency_code": "USD"
}
}
],
"source_url": "https://store.playstation.com/en-us/concept/10000237"
}
}curl "https://api.crawlora.net/api/v1/playstation/concept?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"