Endpoint Playground
Test Crawlora's Microsoft Store Special Events 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/events?media_type=apps" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| media_type | string | No | apps | Department to fetch special events for |
| page | integer | No | 1-based page number | |
| page_size | integer | No | Items per page (max 24) | |
| country | string | No | Store country/region code (ISO-2) | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"media_type": "apps",
"title": "Special events",
"page": 1,
"page_size": 3,
"count": 3,
"items": [
{
"product_id": "9pp6qxxzs9d1",
"title": "Noteastic | Handwritten Note-Taking",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/9pp6qxxzs9d1"
}
],
"source_url": "https://apps.microsoft.com/api/Reco/GetEventProductsList?gl=US&hl=en-US&mediaType=apps&noItems=3&pgNo=1"
}
}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 department's "Special events" promotional shelf -- featured/limited-time products, distinct from the ranked charts (/microsoftstore/charts) and the curated home/department spotlight (/microsoftstore/spotlight). Only apps and games have this shelf; any other media_type is rejected. Credential-free public Microsoft Store data, read directly from the store's own promotional-events API.
{
"code": 200,
"msg": "OK",
"data": {
"media_type": "apps",
"title": "Special events",
"page": 1,
"page_size": 3,
"count": 3,
"items": [
{
"product_id": "9pp6qxxzs9d1",
"title": "Noteastic | Handwritten Note-Taking",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/9pp6qxxzs9d1"
}
],
"source_url": "https://apps.microsoft.com/api/Reco/GetEventProductsList?gl=US&hl=en-US&mediaType=apps&noItems=3&pgNo=1"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/events" \
-H "x-api-key: $CRAWLORA_API_KEY"