Endpoint Playground
Test Crawlora's Microsoft Store Charts 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/microsoftstore/charts?list=TopFree&media_type=apps&discount_filter=onsale&subscription_filter=gamepass&num_players_filter=AllPlayers" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| list | string | Yes | TopFree | Chart to fetch |
| media_type | string | No | apps | Department to scope the chart to |
| category | string | No | Optional category to scope the chart to further | |
| subcategory | string | No | Optional finer subcategory within category (apps only; requires category to also be set) | |
| discount_filter | string | No | onsale | Optional discount filter |
| subscription_filter | string | No | gamepass | Optional subscription filter (games only) |
| num_players_filter | string | No | AllPlayers | Optional player-count filter (games only) |
| page | integer | No | 1-based page number | |
| page_size | integer | No | Items per page (max 24) | |
| country | string | No | Store country/region code (ISO-2) | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"list": "TopFree",
"title": "Must-have free apps",
"media_type": "apps",
"page": 1,
"page_size": 3,
"count": 3,
"items": [
{
"product_id": "9nksqgp7f2nh",
"title": "WhatsApp",
"publisher": "Meta Platforms, Inc.",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/9nksqgp7f2nh"
}
],
"source_url": "https://apps.microsoft.com/api/Reco/GetComputedProductsList?filteredCategories=AllProducts&listName=TopFree&mediaType=apps&noItems=24&pgNo=1&gl=US&hl=en-US"
}
}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 a curated Microsoft Store chart (top free, top paid, top grossing, trending, deals, new releases, getting-started picks, or -- apps only -- most popular), optionally scoped to a category/subcategory and, for games, by Xbox Game Pass availability or player count. Some charts (notably NewAndRising) can legitimately return fewer items than page_size even at the first page -- that reflects real upstream sparsity for that chart, not a parsing gap. Credential-free public Microsoft Store data, read directly from the store's own curated-list API.
{
"code": 200,
"msg": "OK",
"data": {
"list": "TopFree",
"title": "Must-have free apps",
"media_type": "apps",
"page": 1,
"page_size": 3,
"count": 3,
"items": [
{
"product_id": "9nksqgp7f2nh",
"title": "WhatsApp",
"publisher": "Meta Platforms, Inc.",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/9nksqgp7f2nh"
}
],
"source_url": "https://apps.microsoft.com/api/Reco/GetComputedProductsList?filteredCategories=AllProducts&listName=TopFree&mediaType=apps&noItems=24&pgNo=1&gl=US&hl=en-US"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/charts?list=<list>" \
-H "x-api-key: $CRAWLORA_API_KEY"