Endpoint Playground
Test Crawlora's PlayStation Store Browse (All Games) 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/browse" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1-based page number | |
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Language code |
{
"code": 200,
"msg": "OK",
"data": {
"id": "28c9c2b2-cecc-415c-9a08-482a605cb104",
"name": "All games",
"page_info": {
"total_count": 10000,
"offset": 0,
"size": 24,
"is_last": false
},
"next_page": 2,
"count": 24,
"items": [
{
"kind": "concept",
"id": "10017658",
"name": "Call of Duty®: Black Ops II",
"price": {
"base_price": "$39.99",
"discounted_price": "$39.99",
"is_free": false
}
}
],
"facets": [
{
"name": "webBasePrice",
"display_name": "Price",
"values": [
{
"display_name": "Free",
"key": "0-0",
"count": 244
}
]
}
],
"source_url": "https://store.playstation.com/en-us/pages/browse"
}
}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 a page of the PlayStation Store "all games" grid with per-item price, platforms, and media, plus the available filter facets (price, genre, platform, subscription, content type, etc.) with value counts. Pass page to advance; next_page is set when more results exist. 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": "28c9c2b2-cecc-415c-9a08-482a605cb104",
"name": "All games",
"page_info": {
"total_count": 10000,
"offset": 0,
"size": 24,
"is_last": false
},
"next_page": 2,
"count": 24,
"items": [
{
"kind": "concept",
"id": "10017658",
"name": "Call of Duty®: Black Ops II",
"price": {
"base_price": "$39.99",
"discounted_price": "$39.99",
"is_free": false
}
}
],
"facets": [
{
"name": "webBasePrice",
"display_name": "Price",
"values": [
{
"display_name": "Free",
"key": "0-0",
"count": 244
}
]
}
],
"source_url": "https://store.playstation.com/en-us/pages/browse"
}
}curl "https://api.crawlora.net/api/v1/playstation/browse" \
-H "x-api-key: $CRAWLORA_API_KEY"