DAU per country
Retrieves daily active user (DAU) counts broken down by country for a specified app over a given time period.
- Method: GET
- Endpoint:
{{base_url}}/performance/dau-per-country
Name
Type
Description
app_idRequiredstring
The app ID you want to query.
days_backRequiredstring
The timeframe for which the statistics are fetched.
Allowed values:
Last 30 Days, Last 90 Days, Last 180 Days, Last 365 DaysName
In
Type
Description
x-api-tokenheader
N/A
200
DAU per country
| Field | Type |
|---|---|
rows.daily_active_users | integer |
rows.country | string |
rows.activity_date | string |
rows.updated_at | string |
rows.app_id | string |
rows.application_name | string |
columns.friendly_name | string |
columns.type | string |
columns.name | string |
- ApiKeyAuth
Request
{{base_url}}/performance/dau-per-country?app_id=%7Bapp_id%7D&days_back=Last%2030%20DaysResponse
{
"rows": [
{
"daily_active_users": "integer",
"country": "string",
"activity_date": "date",
"updated_at": "string",
"app_id": "string",
"application_name": "string"
}
],
"columns": [
{
"friendly_name": "string",
"type": "string",
"name": "string"
}
]
}