Chappy 003
Chappy 003

Reputation: 436

How to get count of downloads of an android app

I'm crawling and scraping android market Web site.

But I cannot get count of downloads of apps from the Web site because it doesn't provide information about downloads though it provides ranking.

So, does anyone know how to get the count of downloads?

Upvotes: 3

Views: 9355

Answers (1)

Naheed Akhtar
Naheed Akhtar

Reputation: 136

I think you can do it in 2 steps:

  1. Get list of all app ids in first step
  2. Get details for each app id through https://market.android.com/details?id=com.xyz.uvw etc. (In the details page there is "INSTALLS" which gives the range for total number of installs)

Upvotes: 2

Related Questions