Endpoint Playground
Test Crawlora's Microsoft Store Spotlight 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/spotlight?media_type=home" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| media_type | string | No | home | Which spotlight to fetch |
| country | string | No | Store country/region code (ISO-2) | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"media_type": "home",
"count": 8,
"items": [
{
"product_id": "9ncbcszsjrsb",
"title": "Spotify - Music and Podcasts",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/9ncbcszsjrsb"
}
],
"source_url": "https://apps.microsoft.com/api/reco/getPromotionProducts?collectionName=Home%2FSpotlight%2FHome_Spotlight_T1_T2&gl=US&hl=en-US&site=SFA"
}
}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 the curated hero/spotlight shelf shown at the top of the store's home page or one department's landing page (the large featured banners, not the ranked charts or the smaller "Special events" shelf). Only home, apps, and games have a spotlight; any other media_type is rejected. Credential-free public Microsoft Store data, read directly from the store's own promotion-products API.
{
"code": 200,
"msg": "OK",
"data": {
"media_type": "home",
"count": 8,
"items": [
{
"product_id": "9ncbcszsjrsb",
"title": "Spotify - Music and Podcasts",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/9ncbcszsjrsb"
}
],
"source_url": "https://apps.microsoft.com/api/reco/getPromotionProducts?collectionName=Home%2FSpotlight%2FHome_Spotlight_T1_T2&gl=US&hl=en-US&site=SFA"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/spotlight" \
-H "x-api-key: $CRAWLORA_API_KEY"