Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get apps review and ratings from itunes connect

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

like image 471
Smile Avatar asked Dec 30 '14 13:12

Smile


People also ask

How do I see my iTunes Reviews?

Instead, open the Settings app and tap "iTunes and App Store," and then tap your Apple ID — you'll be able to find your reviews there.

Where are Reviews in App Store Connect?

App Review submissions Access the App Review section on the app's page in App Store Connect.

How do I export apple App Store Reviews?

To download your app reviews as a CSV, head over to Reviews in the Explore navigation menu. Apply the necessary filters to refine the review list to only show the reviews you are interested in (or leave it as it is to export them all). Press 'Export' to export app reviews.

What is waiting for review in App Store Connect?

Waiting for review means that apple team will review your app before allowing you to submit on TestFlight for public testing. It will take around 24~48 hours for them to review your app. After if your app is approved, you can submit on TestFlight and create public link for anyone with the link as tester.


2 Answers


Edit

I found a new way by looking at what Apple does in iTunes Connect

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/1076274943/platforms/ios/reviews?sort=REVIEW_SORT_ORDER_MOST_RECENT


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


like image 193
jfgrang Avatar answered Oct 09 '22 07:10

jfgrang


In case you're looking for an out-of-the-box API to handle reviews and ratings you should check ours (Appfigures) out:

  • Read/Reply to Reviews: https://docs.appfigures.com/api/reference/v2/reviews

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

  • Get ratings by country + over time: https://docs.appfigures.com/api/reference/v2/reports-ratings

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

like image 28
Ariel Avatar answered Oct 09 '22 06:10

Ariel