v1

latestOpenAPI 3.1.02026-07-2414103.5 MB

Daily Stickiness (DAU/MAU) - Legacy

Returns the ratio between the average Daily Active Users of a given month and the Monthly Active Users of that month of a given app.

get/{store}/{app_id}/engagement/daily-stickiness

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.

formatstring

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

Response

200

Example response

{
  "meta": {
    "request": {
      "start_date": "2023-11",
      "end_date": "2024-01",
      "store": "Google",
      "app_id": "com.whatsapp",
      "format": "json",
      "country": "us"
    },
    "status": "Success",
    "last_updated": "2024-02-29"
  },
  "daily_stickiness": [
    {
      "start_date": "2023-11-01",
      "end_date": "2023-11-30",
      "daily_stickiness": 0.5606480182073518
    }
  ]
}