v1

latestOpenAPI 3.1.02026-07-2414103.5 MB

Monthly Active Users (Android and iOS) - Legacy

Returns the unique monthly active users of a given app.

get/{store}/{app_id}/engagement/mau

Path parameters

storestring required

Input either "Google" (Android) or "Apple" (iOS).

app_idstring required

Enter an app ID. How to find App IDs

Query parameters

api_keystring required

Your Similarweb REST API key

start_datestring required

Start month (format: YYYY-MM)

end_datestring required

End month (format: YYYY-MM)

countrystring required

Country filter, as a 2-letter ISO country code. To see the country filters you have access to, please refer to the Check Capabilities endpoint.

granularitystring required

Set the granularity for the returned values. Can be 'monthly', or left blank to retrieve the average monthly unique visitors for the selected time period.

formatstring

json [optional] Format in which the reply should be returned. Possible values: 'json' (default) or 'xml'.

Response

200

Example response

{
  "meta": {
    "request": {
      "granularity": "Monthly",
      "start_date": "2019-01",
      "end_date": "2019-05",
      "store": "Apple",
      "app_id": "310633997",
      "format": "json",
      "country": "us"
    },
    "status": "Success",
    "last_updated": "2019-06-30"
  },
  "monthly_active_users": [
    {
      "start_date": "2019-01-01",
      "end_date": "2019-01-31",
      "active_users": 24765268.19234888
    }
  ]
}