Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for recommendations of a script or series of scripts that download and parse iTunes Connect sales data and AppStore comments, ratings and rankings data for a defined app.

I'm also aware of solutions like:

I'm sure I'll find a few more with more searching.

I can't help but feel there must be a really decent set of open source scripts out there to do this, given how many developers are now writing apps for the AppStore.

Would be interested to hear any commercial offerings as well (although my personal preference is for open source, so I can at least see what it is doing with my iTunes Connect login credentials).

To be clear, I'm really looking for something that hits all of the areas mentioned:

App Store (per store)

  • Comments
  • Ratings
  • Category/store rankings

iTunes Connect

  • The contents of the sales reports

Analysis/graphs of the data is not necessary (but would be a nice to have I guess). I'm not really looking for something like AppSales Mobile above, I would like the raw data so I can do my own analysis and formatting. So far it looks like AppViz (listed above) is the best out there.

Any suggestions on what is good/available or should I just go roll my own?

share|improve this question
1  
I want to draw attention to the fact that Apple has their own official tool now, see pojo's answer for the link. – benzado Jan 6 '12 at 16:28
1  
Sounds reasonable. I'm not doing dev for iOS at the moment so it is slightly more difficult for me to judge the answer. Given it is the official mechanism I'll change the accepted answer to pojo's, unless there is violent disagreement. – bradhouse Jan 8 '12 at 9:01

11 Answers

up vote 4 down vote accepted

Could the official AutoIngest tool from Apple be of use? See section 3.2.

share|improve this answer

www.appannie.com is a relatively new site that does all the things you mentioned. I think it's in line with what you are looking for because it's focused on being simple and easy to use.

It's free right now so you might want to give it a shot.

share|improve this answer
Looks pretty promising service. Well executed. – Teemu Kurppa Jun 28 '10 at 9:38
I tried this out just now and it seems excellent. – Ciryon Aug 26 '10 at 6:36
I've just tried it out as well -- definitely fits the bill. – DanM Oct 28 '10 at 15:11

Check out www.appfigures.com, it covers pretty much all of the above and includes: automatic report downloading (and archiving with full access), various interactive sales reports by date, country, region, etc., reviews from all app stores (123), and rank trending in top 400 for all countries.

It also sends reports by email so you dont even have to login.

And its free (while in beta)

share|improve this answer
It's actually top 200 from all app stores now, and updated hourly :) – Ariel Dec 16 '09 at 22:08
+1, as long as it stays free. :) If it goes paid, I'm rolling my own. The technical information is all out there. – Seva Alekseyev May 24 '10 at 16:32
The free account is "free forever", and there's no data sharing or aggregation. – Ariel May 25 '10 at 18:08
Looks like a great site you have there! I'll give it a shot for sure. – Chris May 25 '11 at 1:02

This only covers reviews, but it work for that, and free: AppsReviewFinder

share|improve this answer
The UI could use some polishing, but still very good. – Seva Alekseyev May 18 '10 at 14:29
AppReviewFinder yay! Multiple selection in the product list (or "Get all apps' reviews" command) would be most welcome, though. – Seva Alekseyev Aug 11 '10 at 17:05
Works great! Thanks for the answer – joe Sep 7 '12 at 5:30

For ranking details, check out this article

Scraping AppStore Reviews

Many of the comments also go on to develop the work done on the page.

For comments there's an Adobe Air application that collects store comments worldwide available from here but I don't believe the source is available. However, it proves it is possible.

share|improve this answer

The Rogue Amoeba guys cooked up iTunesConnectArchiver for persisting and storing the raw data. I haven't used it so I'm not sure if handle comments/ratings or just sales data, but the code is available and it seems like a good starting point at least

share|improve this answer

I've written a C# application to get and display all the comments from all the AppStores.

Update: It's not a script, but the source code is available at GitHub (http://github.com/berzniz/SimpleAppReviews/) so you can extend it.

Currently it can:

  • Download all comments and ratings per store
  • Display the reviews in a sortable table
  • Export data to CSV

You can get it here: SimpleAppReviews

share|improve this answer

If you allow me to promote my own little script here: I have written a Ruby script to format the raw Financial Reports from iTunes Connect to a nice HTML table. It doesn't download the files from iTunesConnect so you'd have to use one of the other tools before. You can get the script on GitHub.

share|improve this answer

You might also be interested in a script I wrote to check for apps being featured on the App Store homepage, in What's new, What's hot or Staff picks:

http://www.futuretap.com/blog/scraping-app-store-featured-entries/

share|improve this answer

I have started a project for this over at Sourceforge: https://sourceforge.net/projects/itunesanalytics/. It's in a planning stage now, but if anyone wants to join in, I think that there's potential for a simple, powerful, open-source, free, self-hosted web app. I'm thinking something that pulls down the data, adding it to a database, and then gives the graphs and views that many of the other projects here are trying to create.

There are more than a few features that I think are desirable, but getting some code up and running and out there would probably go a long way to getting more people involved.

It might be a good time for me to learn Ruby on Rails.

share|improve this answer
or maybe you try yii for this projoject? – headkit Jun 16 '11 at 20:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.