Endpoint Playground
Test Crawlora's Microsoft Store Recommendations 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/recommended" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | No | Store country/region code (ISO-2) | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"section_title": "Recommended for you",
"items": [
{
"product_id": "9P4QK476J199",
"title": "Bermuda Adventures: Farm Games",
"categories": [
"Action & adventure",
"Role playing",
"Simulation"
],
"average_rating": 4.5,
"icon_url": "https://store-images.s-microsoft.com/image/apps.2503...",
"url": "https://apps.microsoft.com/detail/9p4qk476j199"
}
],
"source_url": "https://apps.microsoft.com/api/Products/ZeroStateSearch?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 the store's default, query-less "Recommended for you" shelf -- the same recommendations the search box shows before a caller types anything. No query parameters beyond region/locale. Credential-free public Microsoft Store data, read directly from the store's own zero-state search API.
{
"code": 200,
"msg": "OK",
"data": {
"section_title": "Recommended for you",
"items": [
{
"product_id": "9P4QK476J199",
"title": "Bermuda Adventures: Farm Games",
"categories": [
"Action & adventure",
"Role playing",
"Simulation"
],
"average_rating": 4.5,
"icon_url": "https://store-images.s-microsoft.com/image/apps.2503...",
"url": "https://apps.microsoft.com/detail/9p4qk476j199"
}
],
"source_url": "https://apps.microsoft.com/api/Products/ZeroStateSearch?gl=US&hl=en-US"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/recommended" \
-H "x-api-key: $CRAWLORA_API_KEY"