All Reviews allows you to fetch the top 100 reviews entries that AppTweak has been able to gather about a specific app on the App Store in the selected country.
Please note that the example has been stripped of redundant data to keep the documentation as concise as possible. The API might return additional, undocumented fields in the JSON, which your App should not rely upon.
The Review list contains a series of review entries describing comments made by users on the app in the selected country. We limit the number of reviews returned by the API to the first 100 items without regard the period (dates range).
By default, these results are sorted by the following criterion: Most Helpful, in the same way, as Google does in its Store.
The two letter language (ISO Alpha-2) you want to fetch the reviews for.
Get the list of our language codes, here.
GET /android/applications/com.facebook.katana/reviews.json?language=en
curl -X GET -H "X-Apptweak-Key: ${API_KEY}" "https://api.apptweak.com/android/applications/com.facebook.katana/reviews.json?language=en"
The response to the application reviews request is a JSON hash containing all the existing review entries for the given application in the selected language on the Play Store.
The ID that Google has given to the application.
Key/value pairs containing the informations related to the author of the review (name, photo and profile).
Author's name.
Author's photo URL
Author's profile.
The "body" of the review, its main content.
The number of characters used in the body of the review.
The two letter language (ISO Alpha-2) the reviews were fetched for.
The date on which the review has been posted on the Play Store for the related application.
The ID that Google has given to the review.
The number of stars the user gave to the application (Integer 1 => 5).
Key/value pairs describing the score of this review depending on the type of sort (most_useful, most_recent, most_critical and most_positive).
The review title.
The version of the app which the user was using when they made the review
{
"content": [
{
"language": "en",
"application_id": "com.facebook.katana",
"version": "281.0.0.36.124",
"date": "2020-08-04T15:21:54Z",
"rating": 1,
"title": "",
"body": "There had many bugs since the update, I cant access the prev and fastforward 10sec on the side of videos. I can't watch the playlist normally, when I watch one episode then I'm done with it, it goes back to watch icon, then I have to go back to my profile and search for it again. Get back the friend request button, its more convinient with it, than to be on the notif. Please fix it.",
"body_length": 385,
"id": "gp:AOqpTOHtcYOzCqcYQW1Ugo4S69In-cfnnRh1ebOyxOxP0HiI_o6T1O8zL6Gk1WH00WUiKVJJkLo8rZNVXAYZgQ",
"author": {
"name": "Jhueca Usui",
"photo": "https://lh3.googleusercontent.com/a-/AOh14Gg9mRBpGI2E0-mM7IeumRXRxyG_vNa305BLBQU9aw",
"profile": ""
},
"sort_score": {
"most_useful": 1598452793
}
}
],
"metadata": {
"request": {
"path": "/applications/com.facebook.katana/reviews.json",
"store": "android",
"params": {
"language": "en",
"id": "com.facebook.katana",
"format": "json"
},
"performed_at": "2020-08-27 06:50:03 UTC"
},
"content": {
}
}
}