Endpoint Playground
Test Crawlora's Microsoft Store Browse by Publisher 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/publisher?publisher_name=<publisher_name>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| publisher_name | string | Yes | Exact publisher/developer name | |
| 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": {
"publisher_name": "Spotify AB",
"count": 1,
"items": [
{
"product_id": "9ncbcszsjrsb",
"title": "Spotify - Music and Podcasts",
"publisher": "Spotify AB",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/9ncbcszsjrsb"
}
],
"has_more": false,
"source_url": "https://apps.microsoft.com/api/Products/SearchByPublisherName?publisherName=Spotify+AB&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 every product a publisher/developer has listed on the Microsoft Store, cursor-paginated. publisher_name must match the publisher name exactly as shown on a listing (e.g. the publisher field returned by /microsoftstore/product or /microsoftstore/search). Credential-free public Microsoft Store data, read directly from the store's own browse-by-publisher API.
{
"code": 200,
"msg": "OK",
"data": {
"publisher_name": "Spotify AB",
"count": 1,
"items": [
{
"product_id": "9ncbcszsjrsb",
"title": "Spotify - Music and Podcasts",
"publisher": "Spotify AB",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/9ncbcszsjrsb"
}
],
"has_more": false,
"source_url": "https://apps.microsoft.com/api/Products/SearchByPublisherName?publisherName=Spotify+AB&gl=US&hl=en-US"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/publisher?publisher_name=<publisher_name>" \
-H "x-api-key: $CRAWLORA_API_KEY"