Endpoint Playground
Test Crawlora's Microsoft Store Review Summary 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/reviews/summary?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | Microsoft Store product id | |
| country | string | No | Store country/region code (ISO-2) | |
| locale | string | No | Display locale (BCP-47) |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "9ncbcszsjrsb",
"rating_status": "RatingAvailable",
"average_rating": 4.3,
"review_count": 307,
"rating_distribution": {
"1": 4526,
"2": 1183,
"3": 2945,
"4": 3842,
"5": 21729
},
"most_critical_review": {
"id": "74a23681-6299-5cc4-5e83-a48d1c49ece6",
"reviewer_name": "constance",
"rating": 1,
"title": "spotify has fallen off. HARD.",
"text": "so, the app used to be great...",
"market": "US",
"locale": "EN-US",
"submitted_at_utc": "2026-07-12T21:41:45.0235229Z",
"helpful_positive": 74,
"helpful_negative": 30
},
"most_favorable_review": {
"id": "a80be162-85f8-1c09-a229-2e31b69eeb0a",
"reviewer_name": "Junior chainsmoker",
"rating": 4,
"title": "crappy download",
"text": "pop download",
"market": "US",
"locale": "EN-US",
"submitted_at_utc": "2026-08-25T21:50:24.4352905Z",
"helpful_positive": 4
},
"source_url": "https://apps.microsoft.com/api/Products/GetReviewsSummary/9NCBCSZSJRSB?catalogSource=BigCat&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 product's aggregate rating: average rating, total review count, a 1-5 star rating distribution, and the upstream-selected most critical and most favorable written reviews. Credential-free public Microsoft Store data, read directly from the store's own review-summary API.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "9ncbcszsjrsb",
"rating_status": "RatingAvailable",
"average_rating": 4.3,
"review_count": 307,
"rating_distribution": {
"1": 4526,
"2": 1183,
"3": 2945,
"4": 3842,
"5": 21729
},
"most_critical_review": {
"id": "74a23681-6299-5cc4-5e83-a48d1c49ece6",
"reviewer_name": "constance",
"rating": 1,
"title": "spotify has fallen off. HARD.",
"text": "so, the app used to be great...",
"market": "US",
"locale": "EN-US",
"submitted_at_utc": "2026-07-12T21:41:45.0235229Z",
"helpful_positive": 74,
"helpful_negative": 30
},
"most_favorable_review": {
"id": "a80be162-85f8-1c09-a229-2e31b69eeb0a",
"reviewer_name": "Junior chainsmoker",
"rating": 4,
"title": "crappy download",
"text": "pop download",
"market": "US",
"locale": "EN-US",
"submitted_at_utc": "2026-08-25T21:50:24.4352905Z",
"helpful_positive": 4
},
"source_url": "https://apps.microsoft.com/api/Products/GetReviewsSummary/9NCBCSZSJRSB?catalogSource=BigCat&gl=US&hl=en-US"
}
}curl "https://api.crawlora.net/api/v1/microsoftstore/reviews/summary?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"