Endpoint Playground
Test Crawlora's Microsoft Store Category Browse 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/category?category=<category>&media_type=apps" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Category to browse | |
| media_type | string | No | apps | Department to browse |
| 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": {
"media_type": "apps",
"category": "Photo & video",
"count": 20,
"items": [
{
"product_id": "xp9kn75rrb9nhs",
"title": "CapCut",
"description": "Try out CapCut desktop version!...",
"categories": [
"Photo & video"
],
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/xp9kn75rrb9nhs"
}
],
"has_more": true,
"next_cursor": "bz0yMCZiPSZzPTdtZlMrUSt2MjBpKz...",
"source_url": "https://apps.microsoft.com/api/Products/GetFilteredProducts?category=Photo+%26+video&mediaType=apps&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 a single department+category listing, cursor-paginated, with no search keyword required -- the credential-free way to list an entire category (search requires a non-empty query and returns nothing for an empty one). category is required; the accepted set depends on media_type (see /microsoftstore/search's markdown doc for the full per-department lists). media_type defaults to apps; all is not accepted here since it has no category filter upstream. Credential-free public Microsoft Store data, read directly from the store's own category-filter API.
{
"code": 200,
"msg": "OK",
"data": {
"media_type": "apps",
"category": "Photo & video",
"count": 20,
"items": [
{
"product_id": "xp9kn75rrb9nhs",
"title": "CapCut",
"description": "Try out CapCut desktop version!...",
"categories": [
"Photo & video"
],
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/xp9kn75rrb9nhs"
}
],
"has_more": true,
"next_cursor": "bz0yMCZiPSZzPTdtZlMrUSt2MjBpKz...",
"source_url": "https://apps.microsoft.com/api/Products/GetFilteredProducts?category=Photo+%26+video&mediaType=apps&gl=US&hl=en-US"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"