Public Playground
Preview the endpoint before sending a live request
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.
Playground
Retrieve App Store reviews API Playground
Returns one page of customer reviews for an app. Provide either `id` or `app_id`.
GETapiKey3 credits/requestappstore.reviewsResponseDocAppStore
Endpoint details
Returns one page of customer reviews for an app. Provide either `id` or `app_id`.
- Method
- GET
- Path
- /appstore/reviews
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- AppStore
- Parameters
- 7 documented fields
Request parameters
id:queryapp_id:querycountry:querypage:querysort:querylang:queryx-api-key:header
Response schema fields
codedatadata[].iddata[].scoredata[].textdata[].titledata[].updateddata[].urldata[].user_namedata[].user_urldata[].versionmsg
Sample response summary
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "review-1",
"title": "Helpful assistant",
"score": 5,
"author": "App Store User",
"content": "Great for writing and research."
}
]
}cURL example
curl "https://api.crawlora.net/api/v1/appstore/reviews" \
-H "x-api-key: <api-key>"