Endpoint Playground
Test Crawlora's PlayStation Store Category Grid 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/category?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Category UUID | |
| 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": "e7d3a34c-9a4a-4a94-a0d1-e42c94d0a3fb",
"name": "PS5 Games",
"page_info": {
"total_count": 1200,
"offset": 0,
"size": 24,
"is_last": false
},
"next_page": 2,
"count": 24,
"items": [
{
"kind": "concept",
"id": "10005024",
"name": "God of War Ragnarök",
"price": {
"base_price": "$69.99",
"discounted_price": "$69.99",
"is_free": false
}
}
],
"facets": [
{
"name": "conceptGenres",
"display_name": "Genre",
"values": [
{
"display_name": "Action",
"key": "ACTION",
"count": 900
}
]
}
],
"source_url": "https://store.playstation.com/en-us/category/e7d3a34c-9a4a-4a94-a0d1-e42c94d0a3fb"
}
}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 a specific PlayStation Store category grid (by category UUID) with per-item price, platforms, and media, plus the available filter facets 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": "e7d3a34c-9a4a-4a94-a0d1-e42c94d0a3fb",
"name": "PS5 Games",
"page_info": {
"total_count": 1200,
"offset": 0,
"size": 24,
"is_last": false
},
"next_page": 2,
"count": 24,
"items": [
{
"kind": "concept",
"id": "10005024",
"name": "God of War Ragnarök",
"price": {
"base_price": "$69.99",
"discounted_price": "$69.99",
"is_free": false
}
}
],
"facets": [
{
"name": "conceptGenres",
"display_name": "Genre",
"values": [
{
"display_name": "Action",
"key": "ACTION",
"count": 900
}
]
}
],
"source_url": "https://store.playstation.com/en-us/category/e7d3a34c-9a4a-4a94-a0d1-e42c94d0a3fb"
}
}curl "https://api.crawlora.net/api/v1/playstation/category?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"