Endpoint Playground
Test Crawlora's Xbox 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/xbox/search?query=<query>&category=games&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search keyword | |
| category | string | No | games | Result category |
| cursor | string | No | Opaque pagination cursor from a previous response's next_cursor | |
| sort | string | No | relevance | Sort order |
| genre | array | No | Genre filter (repeatable) | |
| price | array | No | Price-band filter (repeatable) | |
| platform | array | No | Platform filter (repeatable) | |
| subscription | array | No | Subscription filter, by the subscription's own product id (repeatable) | |
| age_rating | array | No | ESRB age-rating filter (repeatable) | |
| multiplayer | array | No | Multiplayer-mode filter (repeatable) | |
| technical_features | array | No | Technical-feature filter (repeatable) | |
| handheld_compatibility | array | No | Handheld compatibility filter (repeatable) | |
| supported_language | array | No | Supported-language filter, by BCP-47 tag (repeatable) | |
| accessibility | array | No | Accessibility-feature filter (repeatable) | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"query": "halo",
"category": "games",
"total_items": 41,
"has_more": true,
"items": [
{
"product_id": "9NP1P1WFS0LB",
"title": "Halo Infinite",
"product_kind": "Game",
"url": "https://www.xbox.com/en-US/games/store/game/9np1p1wfs0lb"
}
]
}
}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 Xbox search results for a keyword, scoped to a category (games, add-ons, or hardware) and optionally sorted/filtered with the same parameters as /xbox/browse. Cursor-paginated. Credential-free public Xbox data, read directly from the store's own per-category search API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "halo",
"category": "games",
"total_items": 41,
"has_more": true,
"items": [
{
"product_id": "9NP1P1WFS0LB",
"title": "Halo Infinite",
"product_kind": "Game",
"url": "https://www.xbox.com/en-US/games/store/game/9np1p1wfs0lb"
}
]
}
}curl "https://api.crawlora.net/api/v1/xbox/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"