Endpoint Playground
Test Crawlora's PlayStation Store Search 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/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | Search term | |
| 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": {
"term": "god of war",
"page_info": {
"total_count": 40,
"offset": 0,
"size": 24,
"is_last": false
},
"next_page": 2,
"count": 24,
"items": [
{
"kind": "product",
"id": "UP9000-CUSA07408_00-00000000GODOFWAR",
"name": "God of War",
"np_title_id": "CUSA07408_00",
"classification": "FULL_GAME",
"platforms": [
"PS4"
],
"price": {
"base_price": "$19.99",
"discounted_price": "$9.99",
"discount_text": "-50%",
"is_free": false
}
}
],
"source_url": "https://store.playstation.com/en-us/search/god%20of%20war"
}
}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 PlayStation Store search results (concepts and products) for a term, with pagination and per-item price, platforms, classification, and media. 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": {
"term": "god of war",
"page_info": {
"total_count": 40,
"offset": 0,
"size": 24,
"is_last": false
},
"next_page": 2,
"count": 24,
"items": [
{
"kind": "product",
"id": "UP9000-CUSA07408_00-00000000GODOFWAR",
"name": "God of War",
"np_title_id": "CUSA07408_00",
"classification": "FULL_GAME",
"platforms": [
"PS4"
],
"price": {
"base_price": "$19.99",
"discounted_price": "$9.99",
"discount_text": "-50%",
"is_free": false
}
}
],
"source_url": "https://store.playstation.com/en-us/search/god%20of%20war"
}
}curl "https://api.crawlora.net/api/v1/playstation/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"