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_id
string

The app ID you want to query.

country_name
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_back
string

The timeframe for which the statistics are fetched.

installation_source
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.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": "string",
      "app_id": "string",
      "unique_installations": "integer",
      "country_name": "string"
    }
  ],
  "columns": [
    {
      "friendly_name": "string",
      "type": "string",
      "name": "string"
    }
  ]
}