Skip to main content
POST
/
api
/
amazon
/
appstore
/
apps
/
reviews
/amazon/appstore/apps/reviews
curl --request POST \
  --url https://api.anysite.io/api/amazon/appstore/apps/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "app": "<string>",
  "count": 2,
  "timeout": 300,
  "domain": "amazon.com"
}
'
[
  {
    "@type": "AmazonAppReview",
    "id": "<string>",
    "author": "<string>",
    "document_title": "<string>",
    "text": "<string>",
    "rating": 123,
    "is_verified": false,
    "review_date": "<string>",
    "country": "<string>",
    "helpful_count": 123,
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
app
string
required

Amazon Appstore app ASIN or an app URL containing it

Minimum string length: 1
Examples:

"B005ZXWMUS"

"https://www.amazon.com/dp/B00992CF6W"

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
domain
enum<string>
default:amazon.com

Amazon marketplace domain.

Available options:
amazon.com,
amazon.co.uk,
amazon.de,
amazon.fr,
amazon.it,
amazon.es,
amazon.ca,
amazon.co.jp,
amazon.com.mx,
amazon.com.br,
amazon.in,
amazon.com.au,
amazon.nl,
amazon.se,
amazon.pl,
amazon.com.tr,
amazon.ae,
amazon.sa,
amazon.sg

Response

Successful Response

@type
string
default:AmazonAppReview
id
string | null
author
string | null
document_title
string | null
text
string | null
rating
number | null
is_verified
boolean
default:false
review_date
string | null
country
string | null
helpful_count
integer | null
images
string[]