Monthly Active Users (MAU)
Retrieves the number of monthly active users (MAU) for a specified application.
- Method: GET
- Endpoint:
{{base_url}}/performance/monthly-active-users-mau
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).
200
Monthly Active Users (MAU)
| Field | Type |
|---|---|
rows.active_month | string |
rows.app_id | string |
rows.updated_at | string |
rows.application_name | string |
rows.sum_mau | integer |
rows.country_name | string |
columns.friendly_name | string |
columns.type | string |
columns.name | string |
- ApiKeyAuth
Request
{{base_url}}/performance/monthly-active-users-mau?app_id=%7Bapp_id%7D&country_name=%7Bcountry_name%7DResponse
{
"rows": [
{
"active_month": "date",
"app_id": "string",
"updated_at": "style",
"application_name": "string",
"sum_mau": "integer",
"country_name": "string"
}
],
"columns": [
{
"friendly_name": "string",
"type": "string",
"name": "string"
}
]
}