Extract statistics from google play

I am creating statistics and would like to have statistics from google play (app store). Information, for example, the most popular, downloadable, price, etc.

Does anyone know if there is an API for this or should I clean it myself?

+6
source share
1 answer

There is a project called android-market-api http://code.google.com/p/android-market-api . Start from there.

http://code.google.com/p/android-market-api/source/browse/trunk/AndroidMarketApi/proto/market.proto . Look at the definition of the application to get an idea of ​​what you can extract.

You can ask the guy who wrote it how he turned his attention to the protocol of the Android market.

Using it, you can search and then get information for each application.

+7
source

Source: https://habr.com/ru/post/917276/


All Articles