v1

latestOpenAPI 3.1.02026-07-2414103.5 MB

App Demographics Over Time - Age

Returns a breakdown of an app’s user demographics by age, for a given time frame. Currently only available for Google (Android).

get/{app_id}/demographics/age

Path parameters

app_idstring required

Enter an app ID. How to find App IDs.

Query parameters

api_keystring required

Your Similarweb API key.

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.

start_datestring required

Start month (format: YYYY-MM)

end_datestring required

End month (format: YYYY-MM)

granularitystring required

Currently available in monthly granularity only.

formatstring

[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": "2022-01",
      "end_date": "2022-03",
      "store": "Google",
      "app_id": "com.facebook.katana",
      "format": "json",
      "country": "world"
    },
    "status": "Success"
  },
  "demographics_data": [
    {
      "date": "2022-01-01",
      "demographics_values": {
        "age_18_to_24": 25.35660013396617,
        "age_25_to_34": 34.44997110815325,
        "age_35_to_44": 25.26714752665668,
        "age_45_to_54": 12.60402071013572,
        "age_55_plus": 2.322260521088173
      }
    }
  ]
}