Reputation: 637
Hello i am wondering if there is any way to get the app information like number of downloads, rating, review etc . from appstore or from itunes connect. If I call this url http://itunes.apple.com/US/lookup?bundleId=com.XXX.XXX it gives the some of the information related to that app like supported os, devices, images, etc. I would like to know do we have such permissions or such possibility to do that.
Any reference, link, or suggestions will be highly appreciated. Thanks in advance
Upvotes: 9
Views: 10569
Reputation: 4500
In case you're looking for an out-of-the-box API to handle reviews and ratings you should check ours (Appfigures) out:
The following request will get you all of the reviews for Super Mario Run for iPhone in the US (but you can add any country or app):
https://api.appfigures.com/reviews?countries=us&products=265018212233
This request will get you the current ratings for Super Mario Run in all countries:
https://api.appfigures.com/v2/reports/ratings?products=265018212233&group_by=country
Upvotes: 1
Reputation: 1178
Edit
I found a new way by looking at what Apple does in iTunes Connect
First answer
Yes there is : https://itunes.apple.com/us/rss/customerreviews/id=APP_ID/sortBy=mostRecent/json?l=fr
Where APP_ID is the ID of you app composed of numbers [0-9]+.
For exemple : https://itunes.apple.com/us/rss/customerreviews/id=284882215/sortBy=mostRecent/json
Upvotes: 19