Endpoint Playground
Test Crawlora's PlayStation Store Latest Releases 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/latest" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Language code |
{
"code": 200,
"msg": "OK",
"data": {
"sections": [
{
"id": "a1b2c3d4-0000-0000-0000-000000000000",
"name": "New This Week",
"count": 10,
"items": [
{
"kind": "concept",
"id": "10005024",
"name": "God of War Ragnarök",
"platforms": [
"PS5"
],
"price": {
"base_price": "$69.99",
"discounted_price": "$69.99",
"is_free": false
}
}
]
}
],
"count": 10,
"items": [
{
"kind": "concept",
"id": "10005024",
"name": "God of War Ragnarök",
"price": {
"base_price": "$69.99",
"discounted_price": "$69.99",
"is_free": false
}
}
],
"source_url": "https://store.playstation.com/en-us/pages/latest"
}
}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 the PlayStation Store latest-releases landing page as a list of merchandising shelves (sections), each with its titles and per-item price, plus a flattened, de-duplicated item list across all shelves. 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": "a1b2c3d4-0000-0000-0000-000000000000",
"name": "New This Week",
"count": 10,
"items": [
{
"kind": "concept",
"id": "10005024",
"name": "God of War Ragnarök",
"platforms": [
"PS5"
],
"price": {
"base_price": "$69.99",
"discounted_price": "$69.99",
"is_free": false
}
}
]
}
],
"count": 10,
"items": [
{
"kind": "concept",
"id": "10005024",
"name": "God of War Ragnarök",
"price": {
"base_price": "$69.99",
"discounted_price": "$69.99",
"is_free": false
}
}
],
"source_url": "https://store.playstation.com/en-us/pages/latest"
}
}curl "https://api.crawlora.net/api/v1/playstation/latest" \
-H "x-api-key: $CRAWLORA_API_KEY"