v1
latestOpenAPI 3.1.02026-07-2414103.5 MBApp Demographics Over Time - Gender
Returns a breakdown of an app’s user demographics by gender, for a given time frame Currently only available for Google (Android).
get/{app_id}/demographics/gender
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
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": {
"male": 51.837613062236024,
"female": 48.162386937763976
}
}
]
}