Skip to main content

Daily Active Users (DAU)

Retrieves daily active user (DAU) counts for a specified app, filtered by version, country, and time range.

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

The app ID you want to query.

app_versionRequired
string

The version of the app you want to query.

country_nameRequired
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_backRequired
string

The timeframe for which the statistics are fetched.

Allowed values: Last 30 Days, Last 90 Days, Last 180 Days
Additional parameters
Name
In
Type
Description
x-api-token
header
N/A
Response
200

Daily Active Users (DAU)

FieldType
rows.app_idstring
rows.updated_atstring
rows.application_namestring
rows.active_datestring
rows.country_namestring
rows.app_versionstring
rows.total_dauinteger
columns.friendly_namestring
columns.typestring
columns.namestring
Security
  • ApiKeyAuth
Request
{{base_url}}/performance/daily-active-users-dau?app_id=%7Bapp_id%7D&app_version=%7Bapp_version%7D&country_name=%7Bcountry_name%7D&days_back=Last%2030%20Days
Response
{
  "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"
    }
  ]
}