Skip to main content

App Installs

Retrieves app install statistics for a specified application over a defined period and country.

Request
  • Method: GET
  • Endpoint: {{base_url}}/performance/app-installs
Query parameters
Name
Type
Description
app_idRequired
string

The app ID you want to query.

country_nameRequired
string

Name of a specific country. Use All Countries for the entire world. Country names must start with a capital letter. Spaces are allowed (e.g. United States).

days_backRequired
string

The timeframe for which the statistics are fetched.

Allowed values: Last 30 Days, Last 90 Days, Last 180 Days, Last 365 Days
installation_sourceRequired
string

The download source for the app. Use All Sources to retrieve all the the sources.

Additional parameters
Name
In
Type
Description
authorization
header
string
Response
200

App Installs

FieldType
rows.total_installationsinteger
rows.installation_sourcestring
rows.install_datestring
rows.updated_atstring
rows.app_idstring
rows.application_namestring
rows.unique_installationsinteger
rows.country_namestring
columns.friendly_namestring
columns.typestring
columns.namestring
Security
  • ApiKeyAuth
Request
{{base_url}}/performance/app-installs?app_id=%7B%7Bapp_id%7D%7D&country_name=All%20Countries&days_back=Last%20180%20Days&installation_source=All%20Sources
Response
{
  "rows": [
    {
      "total_installations": "integer",
      "installation_source": "string",
      "install_date": "date",
      "updated_at": "style",
      "app_id": "string",
      "application_name": "string",
      "unique_installations": "integer",
      "country_name": "string"
    }
  ],
  "columns": [
    {
      "friendly_name": "string",
      "type": "string",
      "name": "string"
    }
  ]
}