Endpoint Playground
Test Crawlora's PlayStation Store Product 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/product?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | PlayStation product id | |
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Language code |
{
"code": 200,
"msg": "OK",
"data": {
"id": "UP0001-PPSA01491_00-GAME000000000000",
"name": "Assassin's Creed Valhalla",
"np_title_id": "PPSA01491_00",
"concept_id": "10000237",
"type": "GAME",
"classification": "FULL_GAME",
"platforms": [
"PS4",
"PS5"
],
"star_rating": {
"average": 4.08,
"count": 84255
},
"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"
},
"source_url": "https://store.playstation.com/en-us/product/UP0001-PPSA01491_00-GAME000000000000"
}
}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 single PlayStation product/edition: title, np title id, parent concept id, product type and store classification, edition name, publisher, release date, platforms, genres, spoken/screen languages, content rating, aggregate star rating, purchase price, and media. 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": "UP0001-PPSA01491_00-GAME000000000000",
"name": "Assassin's Creed Valhalla",
"np_title_id": "PPSA01491_00",
"concept_id": "10000237",
"type": "GAME",
"classification": "FULL_GAME",
"platforms": [
"PS4",
"PS5"
],
"star_rating": {
"average": 4.08,
"count": 84255
},
"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"
},
"source_url": "https://store.playstation.com/en-us/product/UP0001-PPSA01491_00-GAME000000000000"
}
}curl "https://api.crawlora.net/api/v1/playstation/product?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"