Endpoint Playground
Test Crawlora's Microsoft Store Search 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/search?query=<query>&media_type=all&price=all&age=all" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search keyword | |
| media_type | string | No | all | Department to search |
| category | string | No | Category to filter by (accepted set depends on media_type) | |
| price | string | No | all | Price filter |
| age | string | No | all | Maximum-age filter |
| cursor | string | No | Opaque pagination cursor from a previous response's next_cursor | |
| country | string | No | Store country/region code (ISO-2) | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"query": "spotify",
"media_type": "apps",
"price": "all",
"age": "all",
"count": 1,
"items": [
{
"product_id": "9ncbcszsjrsb",
"title": "Spotify - Music and Podcasts",
"publisher": "Spotify AB",
"categories": [
"Music"
],
"media_type": "Apps",
"kind": "app",
"average_rating": 4.3,
"rating_count": "34K",
"price": 0,
"display_price": "Free",
"free": true,
"icon_url": "https://store-images.s-microsoft.com/image/apps.10546...",
"url": "https://apps.microsoft.com/detail/9ncbcszsjrsb",
"is_application": true
}
],
"has_more": true,
"next_cursor": "bz0wJmI9OU5DQkNTWlNKUlNCLD...",
"source_url": "https://apps.microsoft.com/api/products/search?query=spotify&mediaType=apps&age=all&price=all&category=all&subscription=all&cursor=&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 a page of Microsoft Store search results (apps, games, devices, and other listings) for a keyword, with cursor-based pagination and per-item publisher, rating, price, and media. media_type selects the department (apps, games, devices, passes, fonts, themes, tencent-android, tencent-mini, or all); category further filters within that department (the accepted set depends on media_type -- see the markdown doc for the full per-department lists). Pass the previous response's next_cursor to fetch the next page. Credential-free public Microsoft Store data, read directly from the store's own web API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "spotify",
"media_type": "apps",
"price": "all",
"age": "all",
"count": 1,
"items": [
{
"product_id": "9ncbcszsjrsb",
"title": "Spotify - Music and Podcasts",
"publisher": "Spotify AB",
"categories": [
"Music"
],
"media_type": "Apps",
"kind": "app",
"average_rating": 4.3,
"rating_count": "34K",
"price": 0,
"display_price": "Free",
"free": true,
"icon_url": "https://store-images.s-microsoft.com/image/apps.10546...",
"url": "https://apps.microsoft.com/detail/9ncbcszsjrsb",
"is_application": true
}
],
"has_more": true,
"next_cursor": "bz0wJmI9OU5DQkNTWlNKUlNCLD...",
"source_url": "https://apps.microsoft.com/api/products/search?query=spotify&mediaType=apps&age=all&price=all&category=all&subscription=all&cursor=&gl=US&hl=en-US"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"