Endpoint Playground
Test Crawlora's Xbox Curated Collection 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/collection?id=TopFreeGames" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | TopFreeGames | Curated collection to fetch |
| cursor | string | No | Opaque pagination cursor from a previous response's next_cursor | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"id": "TopFreeGames",
"title": "Top free games",
"total_items": 500,
"has_more": true,
"next_cursor": "eyJIYXNNb3JlIjp0cnVlLC4uLn0=",
"items": [
{
"product_id": "BQ1TN1T79V9K",
"title": "Roblox - Xbox",
"price": {
"list_price": 0,
"is_free": true
},
"url": "https://www.xbox.com/en-US/games/store/game/bq1tn1t79v9k"
}
]
}
}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 a named, editorially curated Xbox collection (e.g. Top Free Games, Top Paid Games, Optimized for Series X|S, Xbox Play Anywhere) -- the same mechanism that powers xbox.com's own marketing hub pages. Pages forward via an opaque cursor: pass the previous response's next_cursor to fetch the next page. This is a partial, non-exhaustive list of known collection ids -- the upstream exposes no discovery endpoint for the full set. Credential-free public Xbox data, read directly from the store's own named-channel API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "TopFreeGames",
"title": "Top free games",
"total_items": 500,
"has_more": true,
"next_cursor": "eyJIYXNNb3JlIjp0cnVlLC4uLn0=",
"items": [
{
"product_id": "BQ1TN1T79V9K",
"title": "Roblox - Xbox",
"price": {
"list_price": 0,
"is_free": true
},
"url": "https://www.xbox.com/en-US/games/store/game/bq1tn1t79v9k"
}
]
}
}curl "https://api.crawlora.net/api/v1/xbox/collection?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"