Endpoint Playground
Test Crawlora's PlayStation concept reviews 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/concept/reviews?id=<id>&sort=latest" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric PlayStation concept id | |
| cc | string | No | Store country code (ISO) | |
| l | string | No | Language code | |
| page | integer | No | 1-based page number | |
| page_size | integer | No | Reviews per page | |
| sort | string | No | latest | Sort order |
| rating | integer | No | Filter to one star rating (1-5) |
{
"code": 200,
"msg": "OK",
"data": {
"concept_id": "10002456",
"name": "Marvel's Spider-Man 2",
"star_rating": {
"average": 4.62,
"count": 259000,
"distribution": [
{
"stars": 5,
"percent": 80
},
{
"stars": 4,
"percent": 10
},
{
"stars": 3,
"percent": 5
},
{
"stars": 2,
"percent": 2
},
{
"stars": 1,
"percent": 3
}
]
},
"total_count": 20,
"page": 1,
"page_size": 10,
"sort": "latest",
"has_next_page": true,
"returned": 10,
"reviews": [
{
"id": "1229558822",
"title": "Marvel Spider-Man 2 should have earned game of the year",
"comment": "I'm loving this game.",
"rating": 5,
"helpful_count": 0,
"product_name": "Marvel's Spider-Man 2",
"edition_name": "Standard Edition",
"last_updated": "2026-09-12T01:35:14.000Z",
"author": {
"online_id": "CaptinResukexSPx",
"is_ps_plus_subscriber": true,
"avatar_url": "http://static-resource.np.community.playstation.net/avatar_xl/WWS_A/A2117_xl.png"
}
}
],
"source_url": "https://store.playstation.com/en-us/concept/10002456"
}
}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 one page of written PlayStation Store reviews for a concept (game hub), each with its title, body, rating, helpful count, spoiler flag, the edition the reviewer owned, and reviewer identity (online id, PS Plus subscriber status, verified-purchase status, avatar). Also includes the concept's aggregate star rating (including its rating distribution). page/page_size page through the full review list (total_count reports the true upstream review count, has_next_page whether a later page has more), sort controls ordering, and rating optionally filters to one star value. Reviews are region-scoped: cc selects the store region whose reviews are returned (and the price currency) and l the text language. Credential-free public PlayStation Store data.
{
"code": 200,
"msg": "OK",
"data": {
"concept_id": "10002456",
"name": "Marvel's Spider-Man 2",
"star_rating": {
"average": 4.62,
"count": 259000,
"distribution": [
{
"stars": 5,
"percent": 80
},
{
"stars": 4,
"percent": 10
},
{
"stars": 3,
"percent": 5
},
{
"stars": 2,
"percent": 2
},
{
"stars": 1,
"percent": 3
}
]
},
"total_count": 20,
"page": 1,
"page_size": 10,
"sort": "latest",
"has_next_page": true,
"returned": 10,
"reviews": [
{
"id": "1229558822",
"title": "Marvel Spider-Man 2 should have earned game of the year",
"comment": "I'm loving this game.",
"rating": 5,
"helpful_count": 0,
"product_name": "Marvel's Spider-Man 2",
"edition_name": "Standard Edition",
"last_updated": "2026-09-12T01:35:14.000Z",
"author": {
"online_id": "CaptinResukexSPx",
"is_ps_plus_subscriber": true,
"avatar_url": "http://static-resource.np.community.playstation.net/avatar_xl/WWS_A/A2117_xl.png"
}
}
],
"source_url": "https://store.playstation.com/en-us/concept/10002456"
}
}curl "https://api.crawlora.net/api/v1/playstation/concept/reviews?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"