Endpoint Playground
Test Crawlora's Microsoft Store Search Suggestions 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/suggest?prefix=<prefix>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| prefix | string | Yes | Partial search term to autocomplete | |
| country | string | No | Store country/region code (ISO-2) | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"prefix": "spot",
"completions": [
"spotify",
"spot",
"spotify for podcasters"
],
"products": [
{
"product_id": "9p2hsmm82401",
"title": "Spot The Differences! Party",
"icon_url": "https://store-images.s-microsoft.com/image/apps.9200...",
"media_type": "games",
"is_game": true,
"url": "https://www.xbox.com/games/store/spot-the-differences-party/9p2hsmm82401?ocid=storeforweb"
},
{
"product_id": "9ncbcszsjrsb",
"title": "Spotify - Music and Podcasts",
"icon_url": "https://store-images.s-microsoft.com/image/apps.24630...",
"media_type": "apps",
"is_application": true,
"url": "https://apps.microsoft.com/detail/9ncbcszsjrsb"
}
],
"source_url": "https://apps.microsoft.com/api/products/getAutosuggestions?prefix=spot&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 typeahead-style Microsoft Store search suggestions for a partial search term: plain-text completions plus a short list of matching products (id, title, icon, department, and store URL). Credential-free public Microsoft Store data, read directly from the store's own autocomplete API.
{
"code": 200,
"msg": "OK",
"data": {
"prefix": "spot",
"completions": [
"spotify",
"spot",
"spotify for podcasters"
],
"products": [
{
"product_id": "9p2hsmm82401",
"title": "Spot The Differences! Party",
"icon_url": "https://store-images.s-microsoft.com/image/apps.9200...",
"media_type": "games",
"is_game": true,
"url": "https://www.xbox.com/games/store/spot-the-differences-party/9p2hsmm82401?ocid=storeforweb"
},
{
"product_id": "9ncbcszsjrsb",
"title": "Spotify - Music and Podcasts",
"icon_url": "https://store-images.s-microsoft.com/image/apps.24630...",
"media_type": "apps",
"is_application": true,
"url": "https://apps.microsoft.com/detail/9ncbcszsjrsb"
}
],
"source_url": "https://apps.microsoft.com/api/products/getAutosuggestions?prefix=spot&gl=US&hl=en-US"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/suggest?prefix=<prefix>" \
-H "x-api-key: $CRAWLORA_API_KEY"