Skip to main content
POST
/
api
/
microsoftstore
/
apps
/
reviews
/
summary
/microsoftstore/apps/reviews/summary
curl --request POST \
  --url https://api.anysite.io/api/microsoftstore/apps/reviews/summary \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "app": "<string>",
  "timeout": 300,
  "market": "US",
  "locale": "en-US"
}
'
[
  {
    "@type": "@microsoftstore_reviews_summary",
    "rating_status": "<string>",
    "average_rating": 123,
    "rating_count": 0,
    "review_count": 0,
    "source": "<string>",
    "star_distribution": [],
    "most_critical_review": {
      "id": "<string>",
      "@type": "@microsoftstore_review",
      "author": "<string>",
      "rating": 0,
      "title": "<string>",
      "text": "<string>",
      "submitted_at": "<string>",
      "helpful_count": 0,
      "helpful_negative_count": 0,
      "os_version": "<string>",
      "device_family": "<string>",
      "is_verified": false,
      "is_revised": false
    },
    "most_favorable_review": {
      "id": "<string>",
      "@type": "@microsoftstore_review",
      "author": "<string>",
      "rating": 0,
      "title": "<string>",
      "text": "<string>",
      "submitted_at": "<string>",
      "helpful_count": 0,
      "helpful_negative_count": 0,
      "os_version": "<string>",
      "device_family": "<string>",
      "is_verified": false,
      "is_revised": false
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
app
string
required

Microsoft Store product as a 12-character Store ID or a product page URL

Minimum string length: 1
Examples:

"9NCBCSZSJRSB"

"9WZDNCRFJBMP"

"https://apps.microsoft.com/detail/9NCBCSZSJRSB"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
market
enum<string>
default:US

Store market

Available options:
US,
GB,
CA,
AU,
DE,
FR,
IT,
ES,
NL,
BR,
MX,
IN,
JP,
KR,
TR
locale
enum<string>
default:en-US

Content language

Available options:
en-US,
en-GB,
en-CA,
en-AU,
de-DE,
fr-FR,
it-IT,
es-ES,
nl-NL,
pt-BR,
es-MX,
ja-JP,
ko-KR,
tr-TR

Response

Successful Response

@type
string
default:@microsoftstore_reviews_summary
rating_status
string | null
average_rating
number | null
rating_count
integer
default:0
review_count
integer
default:0
source
string | null
star_distribution
MicrosoftstoreStarBucket · object[]
most_critical_review
MicrosoftstoreReview · object
most_favorable_review
MicrosoftstoreReview · object