App Installs
Retrieves app install statistics for a specified application over a defined period and country.
- Method: GET
- Endpoint:
{{base_url}}/performance/app-installs
Name
Type
Description
app_idRequiredstring
The app ID you want to query.
country_nameRequiredstring
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_backRequiredstring
The timeframe for which the statistics are fetched.
Allowed values:
Last 30 Days, Last 90 Days, Last 180 Days, Last 365 Daysinstallation_sourceRequiredstring
The download source for the app. Use All Sources to retrieve all the the sources.
Name
In
Type
Description
x-api-tokenheader
N/A
200
App Installs
| Field | Type |
|---|---|
rows.total_installations | integer |
rows.installation_source | string |
rows.install_date | string |
rows.updated_at | string |
rows.app_id | string |
rows.application_name | string |
rows.unique_installations | integer |
rows.country_name | string |
columns.friendly_name | string |
columns.type | string |
columns.name | string |
- ApiKeyAuth
Request
{{base_url}}/performance/app-installs?app_id=%7Bapp_id%7D&country_name=%7Bcountry_name%7D&days_back=Last%2030%20Days&installation_source=%7Binstallation_source%7DResponse
{
"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"
}
]
}