v1

latestOpenAPI 3.1.02026-07-2414103.5 MB

App Downloads (Android) - New

Returns the number of times an app was downloaded from the Google Play Store over a given time frame.

get/google/downloads

Query parameters

api_keystring

Your REST API key

app_idstring

The App ID identifying an application on its respective platform.

start_datestring

Start date (format: YYYY-MM). To retrieve 'Last 28 days' remove the start_date & end_date parameters.

end_datestring

End date (format: YYYY-MM). To retrieve 'Last 28 days' remove the start_date & end_date parameters.

countrystring

Country filter, as a 2-letter ISO country code, or "world" for worldwide.

granularitystring

Set the granularity for the returned values. Can be "daily", "weekly" or "monthly".

formatstring

[optional] Format in which the reply should be returned. Possible values: 'json' (default) or 'xml'

mtdstring

Overrides the end_date and includes data up to the most recent date available (applicable only for “daily” and “weekly” granularities). “Monthly” granularity is not supported and will result in an error.

Response

200

Example response

{
  "meta": {
    "request": {
      "store": "Google",
      "granularity": "Monthly",
      "start_date": "2024-01",
      "end_date": "2024-03",
      "app_id": "com.whatsapp",
      "format": "json",
      "country": "us"
    },
    "status": "Success",
    "last_updated": "2025-02-28"
  },
  "downloads": [
    {
      "date": "2024-01-01",
      "downloads": 2615635
    }
  ]
}