Daily Active Users (DAU)
Retrieves daily active user (DAU) counts for a specified app, filtered by version, country, and time range.
- Method: GET
- Endpoint:
{{base_url}}/performance/daily-active-users-dau
Name
Type
Description
app_idRequiredstring
The app ID you want to query.
app_versionRequiredstring
The version of the app 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 Days200
Daily Active Users (DAU)
| Field | Type |
|---|---|
rows.app_id | string |
rows.updated_at | string |
rows.application_name | string |
rows.active_date | string |
rows.country_name | string |
rows.app_version | string |
rows.total_dau | integer |
columns.friendly_name | string |
columns.type | string |
columns.name | string |
- ApiKeyAuth
Request
{{base_url}}/performance/daily-active-users-dau?app_id=%7B%7Bapp_id%7D%7D&app_version=All%20Versions&country_name=All%20Countries&days_back=Last%20180%20DaysResponse
{
"rows": [
{
"app_id": "string",
"updated_at": "style",
"application_name": "string",
"active_date": "date",
"country_name": "string",
"app_version": "string",
"total_dau": "integer"
}
],
"columns": [
{
"friendly_name": "string",
"type": "string",
"name": "string"
}
]
}