Endpoint Playground
Test Crawlora's PlayStation Store Search Suggestions 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/suggest?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | Search term (partial or full) | |
| limit | integer | No | Maximum number of suggestions to return (max 20) | |
| cc | string | No | Store country code (ISO, selects currency) | |
| l | string | No | Language code |
{
"code": 200,
"msg": "OK",
"data": {
"term": "god of war",
"cc": "us",
"l": "en",
"total": 160,
"items": [
{
"id": "UP9000-CUSA07408_00-00000000GODOFWAR",
"name": "God of War",
"short_name": "God of War",
"classification": "FULL_GAME",
"platforms": [
"PS4"
],
"publisher": "Sony Interactive Entertainment",
"release_date": "2018-04-20T00:00:00Z",
"price": {
"display": "$19.99",
"value": 1999
},
"image": {
"type": "10",
"url": "https://vulcan.dl.playstation.net/img/rnd/202011/1021/X3WIAh63yKhRRiMohLoJMeQu.png"
},
"store_url": "https://store.playstation.com/en-us/product/UP9000-CUSA07408_00-00000000GODOFWAR"
}
],
"source_url": "https://store.playstation.com/store/api/chihiro/00_09_000/tumbler/US/en/99/god%20of%20war?size=5&suggested_size=5&mode=game"
}
}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 typeahead-style PlayStation Store search suggestions for a partial or full term: id, name, classification, platforms, publisher, release date, price, a representative image, and a direct store URL per match. Matching is upstream-ordered and loose (it may include titles that only loosely relate to the term), not a ranked exact-substring search. limit caps how many suggestions are returned (max 20; the upstream API does not honor a higher value). 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",
"cc": "us",
"l": "en",
"total": 160,
"items": [
{
"id": "UP9000-CUSA07408_00-00000000GODOFWAR",
"name": "God of War",
"short_name": "God of War",
"classification": "FULL_GAME",
"platforms": [
"PS4"
],
"publisher": "Sony Interactive Entertainment",
"release_date": "2018-04-20T00:00:00Z",
"price": {
"display": "$19.99",
"value": 1999
},
"image": {
"type": "10",
"url": "https://vulcan.dl.playstation.net/img/rnd/202011/1021/X3WIAh63yKhRRiMohLoJMeQu.png"
},
"store_url": "https://store.playstation.com/en-us/product/UP9000-CUSA07408_00-00000000GODOFWAR"
}
],
"source_url": "https://store.playstation.com/store/api/chihiro/00_09_000/tumbler/US/en/99/god%20of%20war?size=5&suggested_size=5&mode=game"
}
}curl "https://api.crawlora.net/api/v1/playstation/suggest?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"