Endpoint Playground
Test Crawlora's Microsoft Store Category Taxonomy 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/categories?media_type=apps" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| media_type | string | No | apps | Department to list categories for |
{
"code": 200,
"msg": "OK",
"data": {
"media_type": "apps",
"categories": [
{
"category": "Books & reference",
"subcategories": [
"E-reader",
"Fiction",
"Nonfiction",
"Reference"
]
},
{
"category": "Business",
"subcategories": [
"Accounting & finance",
"Collaboration",
"CRM",
"Data & analytics",
"File management",
"Inventory & logistics",
"Legal & HR",
"Project management",
"Remote desktop",
"Sales & marketing",
"Time & expenses"
]
},
{
"category": "Entertainment"
},
{
"category": "Photo & video"
}
]
}
}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 accepted category for a department, and -- apps only -- each category's own finer subcategories (e.g. Books & reference -> E-reader, Fiction, Nonfiction, Reference). This is the discovery endpoint for the category/subcategory values accepted by /microsoftstore/search, /microsoftstore/category, and /microsoftstore/charts. Subcategories are apps-only: games categories have none. Credential-free public Microsoft Store data, live-verified and pinned rather than a passthrough call.
{
"code": 200,
"msg": "OK",
"data": {
"media_type": "apps",
"categories": [
{
"category": "Books & reference",
"subcategories": [
"E-reader",
"Fiction",
"Nonfiction",
"Reference"
]
},
{
"category": "Business",
"subcategories": [
"Accounting & finance",
"Collaboration",
"CRM",
"Data & analytics",
"File management",
"Inventory & logistics",
"Legal & HR",
"Project management",
"Remote desktop",
"Sales & marketing",
"Time & expenses"
]
},
{
"category": "Entertainment"
},
{
"category": "Photo & video"
}
]
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"