Microsoft Store API endpoint
Use Crawlora's Microsoft Store Related Products API to extract supported public Microsoft Store data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/microsoftstore/relatedReturns products related to a seed product id, paginated. product_type must match the seed product's own media type (apps -> Application, games -> Game, passes -> Passes) -- any other value is rejected upstream. Omit product_type to have it resolved automatically from product_id via one extra lightweight lookup; pass it explicitly to skip that lookup. Credential-free public Microsoft Store data, read directly from the store's own recommendation API. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| product_id | string | Yes | Seed Microsoft Store product id | ||
| product_type | string | No | The seed product's own type. Omit to auto-resolve from product_id. Allowed values: Application, Game, Passes | ||
| page | integer | No | 1-based page number | ||
| page_size | integer | No | Related products per page (max 24) | ||
| country | string | No | Store country/region code (ISO-2) | ||
| locale | string | No | Display locale (BCP-47) | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/microsoftstore/related?product_type=Application&page=1&country=us" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "9ncbcszsjrsb",
"product_type": "Application",
"page": 1,
"page_size": 10,
"total_count": 50,
"has_more_pages": true,
"items": [
{
"product_id": "xpdc2rh70k22mn",
"title": "Discord",
"publisher": "Discord, Inc.",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/xpdc2rh70k22mn"
}
],
"source_url": "https://apps.microsoft.com/api/Reco/GetRelatedProductsList/9NCBCSZSJRSB?noItems=10&pgNo=1&productType=Application&gl=US&hl=en-US"
}
}Request schema
No body schema
Response schema
#/definitions/microsoftstore.relatedResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | microsoftstore.RelatedResponse | No | ||||
| data.has_more_pages | boolean | No | true | |||
| data.items | array | No | ||||
| data.items[].average_rating | number | No | 4.3 | |||
| data.items[].award | microsoftstore.Award | No | ||||
| data.items[].award.category | string | No | Productivity category | |||
| data.items[].award.description | string | No | The Microsoft Store Awards celebrate apps and games that emphasize exceptional experiences for their users. | |||
| data.items[].award.editorial_id | string | No | Editorials/Awards_2025/Global/Notion_xpdbvss44r0l9h | |||
| data.items[].award.title | string | No | Microsoft Store Awards 2025 | |||
| data.items[].award.year | integer | No | 2025 | |||
| data.items[].categories | array | No | ["Music"] | |||
| data.items[].description | string | No | Love music and podcasts? Play your favorite songs... | |||
| data.items[].display_price | string | No | Free | |||
| data.items[].free | boolean | No | true | |||
| data.items[].icon_url | string | No | https://store-images.s-microsoft.com/image/apps.10546... | |||
| data.items[].is_application | boolean | No | true | |||
| data.items[].is_game | boolean | No | ||||
| data.items[].is_pwa | boolean | No | ||||
| data.items[].is_subscription | boolean | No | ||||
| data.items[].is_theme | boolean | No | ||||
| data.items[].kind | string | No | app | |||
| data.items[].media_type | string | No | Apps | |||
| data.items[].poster_art_url | string | No | ||||
| data.items[].price | number | No | 0 | |||
| data.items[].product_id | string | No | 9ncbcszsjrsb | |||
| data.items[].publisher | string | No | Spotify AB | |||
| data.items[].rating_count | string | No | 34K | |||
| data.items[].release_date_utc | string | No | 2017-10-24T12:04:25Z | |||
| data.items[].title | string | No | Spotify - Music and Podcasts | |||
| data.items[].url | string | No | https://apps.microsoft.com/detail/9ncbcszsjrsb | |||
| data.page | integer | No | 1 | |||
| data.page_size | integer | No | 10 | |||
| data.product_id | string | No | 9ncbcszsjrsb | |||
| data.product_type | string | No | Application | |||
| data.source_url | string | No | ||||
| data.total_count | integer | No | 50 | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/microsoftstore/related?product_type=Application&page=1&country=us" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms