Endpoint Playground
Test Crawlora's PlayStation Store Merchandising Page 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/page?alias=<alias>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| alias | string | Yes | Merchandising page alias | |
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Language code |
{
"code": 200,
"msg": "OK",
"data": {
"sections": [
{
"id": "...",
"name": "New this week",
"count": 12,
"items": []
}
],
"count": 24,
"items": [],
"collections": [
{
"name": "Free to play",
"category_id": "4dfd67ab-4ed7-40b0-a937-a549aece13d0",
"link_type": "EMS_CATEGORY"
},
{
"name": "PlayStation Indies",
"category_id": "71516e4f-f209-458e-a2fb-fecd213f4198",
"link_type": "EMS_CATEGORY"
}
],
"source_url": "https://store.playstation.com/en-us/pages/collections"
}
}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.
Reads any PlayStation Store merchandising page by alias (e.g. collections, subscriptions, or a promotional alias) and returns its shelves (sections) plus the curated collection links found on the page. Each collection link carries a category_id (UUID) you can pass to /playstation/category to fetch that collection's full, paginated title grid — the credential-free way to browse themed/curated selections. Known aliases: collections, subscriptions, deals, latest. cc selects the store region (and price currency) and l the text language. Credential-free public PlayStation Store data.
{
"code": 200,
"msg": "OK",
"data": {
"sections": [
{
"id": "...",
"name": "New this week",
"count": 12,
"items": []
}
],
"count": 24,
"items": [],
"collections": [
{
"name": "Free to play",
"category_id": "4dfd67ab-4ed7-40b0-a937-a549aece13d0",
"link_type": "EMS_CATEGORY"
},
{
"name": "PlayStation Indies",
"category_id": "71516e4f-f209-458e-a2fb-fecd213f4198",
"link_type": "EMS_CATEGORY"
}
],
"source_url": "https://store.playstation.com/en-us/pages/collections"
}
}curl "https://api.crawlora.net/api/v1/playstation/page?alias=<alias>" \
-H "x-api-key: $CRAWLORA_API_KEY"