Endpoint Playground
Test Crawlora's Xbox Catalog Browse 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/browse?sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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": {
"total_items": 17620,
"has_more": true,
"next_cursor": "eyJIYXNNb3JlIjp0cnVlLC4uLn0=",
"items": [
{
"product_id": "BT5P2X999VH2",
"title": "Fortnite",
"product_kind": "Game",
"categories": [
"Shooter"
],
"available_on": [
"PC",
"XboxSeriesX|S"
],
"price": {
"list_price": 0,
"is_free": true
},
"url": "https://www.xbox.com/en-US/games/store/game/bt5p2x999vh2"
}
]
}
}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 the full Xbox storefront catalog (games, add-ons, and subscriptions), optionally sorted and/or filtered. With no sort/filter parameters, returns the store's own default (relevance) order. Multiple values for a repeatable filter (genre, price, platform, subscription, age_rating, multiplayer, technical_features, handheld_compatibility) match ANY of them (logical OR); different filter fields combine as logical AND. Cursor-paginated, fixed at 25 items per page.
{
"code": 200,
"msg": "OK",
"data": {
"total_items": 17620,
"has_more": true,
"next_cursor": "eyJIYXNNb3JlIjp0cnVlLC4uLn0=",
"items": [
{
"product_id": "BT5P2X999VH2",
"title": "Fortnite",
"product_kind": "Game",
"categories": [
"Shooter"
],
"available_on": [
"PC",
"XboxSeriesX|S"
],
"price": {
"list_price": 0,
"is_free": true
},
"url": "https://www.xbox.com/en-US/games/store/game/bt5p2x999vh2"
}
]
}
}curl "https://api.crawlora.net/api/v1/xbox/browse" \
-H "x-api-key: $CRAWLORA_API_KEY"