Endpoint Playground
Test Crawlora's Microsoft Store Related Products 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/related?product_id=<product_id>&product_type=Application" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | Seed Microsoft Store product id | |
| product_type | string | No | Application | The seed product's own type. Omit to auto-resolve from product_id. |
| 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) |
{
"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"
}
}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 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/related?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"