Skip to main content

DAU per country

Retrieves daily active user (DAU) counts broken down by country for a specified app over a given time period.

Request
  • Method: GET
  • Endpoint: {{base_url}}/performance/dau-per-country
Query parameters
Name
Type
Description
app_idRequired
string

The app ID you want to query.

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
Additional parameters
Name
In
Type
Description
x-api-token
header
N/A
Response
200

DAU per country

FieldType
rows.daily_active_usersinteger
rows.countrystring
rows.activity_datestring
rows.updated_atstring
rows.app_idstring
rows.application_namestring
columns.friendly_namestring
columns.typestring
columns.namestring
Security
  • ApiKeyAuth
Request
{{base_url}}/performance/dau-per-country?app_id=%7Bapp_id%7D&days_back=Last%2030%20Days
Response
{
  "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"
    }
  ]
}