Endpoint Playground
Test Crawlora's Microsoft Store Editorial Article 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/editorial?editorial_id=<editorial_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| editorial_id | string | Yes | Editorial content id, from a product's award.editorial_id field | |
| country | string | No | Store country/region code (ISO-2) | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"editorial_id": "Editorials/Awards_2025/Global/Notion_xpdbvss44r0l9h",
"title": "Productivity category",
"header_image": "https://images-eds-ssl.xboxlive.com/image?url=...",
"subtitle": {
"text": "Microsoft Store Awards 2025",
"icon": "https://cdn.storeedgefd.dsx.mp.microsoft.com/assets/cb/78/cb78740c-94b9-45a4-a4be-fb388ebaa394.png"
},
"paragraphs": [
"Notion for Windows turbocharges productivity with real-time AI-powered agents, customizable workspaces, and offline access..."
],
"relevant_products": [
{
"product_id": "xpdbvss44r0l9h",
"title": "Notion",
"publisher": "Notion Labs Inc.",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/xpdbvss44r0l9h"
}
],
"source_url": "https://apps.microsoft.com/api/pages/editorial?editorialId=Editorials%2FAwards_2025%2FGlobal%2FNotion_xpdbvss44r0l9h&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 Microsoft Store editorial article (currently only seen in the wild as a per-product Microsoft Store Awards writeup). There is no discovery endpoint for editorial ids: they are only found embedded in a product's own award.editorial_id field, returned by /microsoftstore/search, /microsoftstore/category, /microsoftstore/charts, /microsoftstore/publisher, and /microsoftstore/related when that product carries an award. An unknown/invalid id returns a 503 upstream error, not a clean 404 -- the upstream itself does not distinguish the two. Credential-free public Microsoft Store data, read directly from the store's own editorial-page API.
{
"code": 200,
"msg": "OK",
"data": {
"editorial_id": "Editorials/Awards_2025/Global/Notion_xpdbvss44r0l9h",
"title": "Productivity category",
"header_image": "https://images-eds-ssl.xboxlive.com/image?url=...",
"subtitle": {
"text": "Microsoft Store Awards 2025",
"icon": "https://cdn.storeedgefd.dsx.mp.microsoft.com/assets/cb/78/cb78740c-94b9-45a4-a4be-fb388ebaa394.png"
},
"paragraphs": [
"Notion for Windows turbocharges productivity with real-time AI-powered agents, customizable workspaces, and offline access..."
],
"relevant_products": [
{
"product_id": "xpdbvss44r0l9h",
"title": "Notion",
"publisher": "Notion Labs Inc.",
"media_type": "Apps",
"kind": "app",
"price": 0,
"display_price": "Free",
"free": true,
"url": "https://apps.microsoft.com/detail/xpdbvss44r0l9h"
}
],
"source_url": "https://apps.microsoft.com/api/pages/editorial?editorialId=Editorials%2FAwards_2025%2FGlobal%2FNotion_xpdbvss44r0l9h&gl=US&hl=en-US"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/editorial?editorial_id=<editorial_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"