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 ratings histogram API Playground
Returns total ratings count and the 1-5 star histogram shown on the App Store product page.
GETapiKey1 credit/requestappstore.ratingsResponseDocAppStore
Endpoint details
Returns total ratings count and the 1-5 star histogram shown on the App Store product page.
- Method
- GET
- Path
- /appstore/ratings
- Authentication
- apiKey
- Credit cost
- 1 credit/request
- Platform
- AppStore
- Parameters
- 5 documented fields
Request parameters
id:queryapp_id:querycountry:querylang:queryx-api-key:header
Response schema fields
codedatadata.histogramdata.ratingsmsg
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"score": 4.9,
"ratings": 1200000,
"histogram": {
"1": 1200,
"2": 800,
"3": 2400,
"4": 12000,
"5": 1183600
}
}
}cURL example
curl "https://api.crawlora.net/api/v1/appstore/ratings" \
-H "x-api-key: <api-key>"