Reputation: 113
I have any Requirement to show the Number of Downloads + Number of Uninstall + User Rating of Application from Google Play Store and iOS. Is there any API available wherein I can Fetch this information and show it in another application.
Upvotes: 2
Views: 9100
Reputation: 2925
Google Play now allows to access your own app "Download reports" programmatically via Google Cloud Storage and gutils as explained here: https://support.google.com/googleplay/android-developer/answer/6135870?hl=en
For iOS you can access reports for your own app via the App Store Connect API, for example with this endpoint: https://developer.apple.com/documentation/appstoreconnectapi/download_sales_and_trends_reports
However, if you want to access data about third-party apps (e.g. to build a competitors analysis report) you would need non-Google and non-Apple alternatives that can provide you with "Download estimates" (i.e. calculated based on statistical models), historical rating data, etc. You can have a look at the Lookup API for Android Apps, which provides a lot of of apps' information that can be used for bulging your app-tracking dashboard.
(Full disclosure: I am the CEO at 42matters.com)
Upvotes: 3
Reputation: 17613
Google Play Store API doesn't seem to mention any of the features you've stated. Google Play Developer API is used to manage:
The closest thing I can suggest is that you check the new Firebase 2.0. They've added better analytics centered on mobile apps.
Check this SO thread for other non-Google alternatives. There's also a bunch of non-Google software to track uninstalls suggested by Quora users.
Upvotes: 1