Skip to main content
POST
/
api
/
microsoftstore
/
apps
/
reviews
/microsoftstore/apps/reviews
curl --request POST \
  --url https://api.anysite.io/api/microsoftstore/apps/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "app": "<string>",
  "count": 2,
  "timeout": 300,
  "market": "US",
  "locale": "en-US"
}
'
[
  {
    "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"

count
integer
required

Max number of reviews to return

Required range: x >= 1
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

id
string
required
@type
string
default:@microsoftstore_review
author
string | null
rating
integer
default:0
title
string | null
text
string | null
submitted_at
string | null
helpful_count
integer
default:0
helpful_negative_count
integer
default:0
os_version
string | null
device_family
string | null
is_verified
boolean
default:false
is_revised
boolean
default:false