Skip to main content
POST
/
api
/
appstore
/
apps
/
reviews
/appstore/apps/reviews
curl --request POST \
  --url https://api.anysite.io/api/appstore/apps/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "app": "<string>",
  "count": 2,
  "timeout": 300,
  "country": "us"
}
'
[
  {
    "id": "<string>",
    "@type": "@appstore_review",
    "author": "<string>",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "updated_at": "<string>",
    "is_edited": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
app
string
required

App track ID, bundle ID, or App Store URL

Minimum string length: 1
Examples:

"310633997"

"net.whatsapp.WhatsApp"

"https://apps.apple.com/us/app/id310633997"

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
country
enum<string>
default:us

App Store storefront country

Available options:
us,
gb,
ca,
au,
de,
fr,
it,
es,
nl,
se,
jp,
kr,
cn,
in,
br,
mx,
ru,
tr,
pl,
ae,
sa,
sg,
hk,
tw,
id,
th,
vn,
ph,
my,
za

Response

Successful Response

id
string
required
@type
string
default:@appstore_review
author
string | null
rating
integer | null
title
string | null
text
string | null
updated_at
string | null
is_edited
boolean
default:false