Endpoint Playground
Test Crawlora's Xbox Game Details 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/game?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | Xbox catalog product id | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "9PK3G146XXVF",
"title": "Call of Duty®: Modern Warfare® 4 - Vault Edition",
"publisher": "Activision Publishing Inc.",
"product_kind": "Game",
"categories": [
"Shooter"
],
"available_on": [
"PC"
],
"content_rating": {
"board": "ESRB",
"rating": "MATURE 17+",
"age": 17,
"descriptors": [
"Blood and Gore",
"Intense Violence"
]
},
"price": {
"list_price": 99.99,
"msrp": 99.99,
"currency": "USD",
"is_free": false
},
"is_preorder": true,
"box_art_url": "https://store-images.s-microsoft.com/image/apps.46360...",
"description": "Pre-order loyalty discount...",
"has_add_ons": true,
"included_with_subscription_ids": [],
"url": "https://www.xbox.com/en-US/games/store/game/9pk3g146xxvf"
}
}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 normalized Xbox catalog details for a single product id: title, description, publisher, categories, supported platforms, content rating, price, preorder status, media (box art, poster, hero art), trailers, and which subscriptions (e.g. Game Pass) include it. Credential-free public Xbox data, read directly from the store's own batch product-detail API.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "9PK3G146XXVF",
"title": "Call of Duty®: Modern Warfare® 4 - Vault Edition",
"publisher": "Activision Publishing Inc.",
"product_kind": "Game",
"categories": [
"Shooter"
],
"available_on": [
"PC"
],
"content_rating": {
"board": "ESRB",
"rating": "MATURE 17+",
"age": 17,
"descriptors": [
"Blood and Gore",
"Intense Violence"
]
},
"price": {
"list_price": 99.99,
"msrp": 99.99,
"currency": "USD",
"is_free": false
},
"is_preorder": true,
"box_art_url": "https://store-images.s-microsoft.com/image/apps.46360...",
"description": "Pre-order loyalty discount...",
"has_add_ons": true,
"included_with_subscription_ids": [],
"url": "https://www.xbox.com/en-US/games/store/game/9pk3g146xxvf"
}
}curl "https://api.crawlora.net/api/v1/xbox/game?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"