Get Audience Details by using the analytics endpoint to retrieve the size, demographic, device and location details of a given list of audiences.
Endpoint
/traffic/audiences/analyticsUse the following HTTP method:
Use the
GETmethod to view details about the composition of a given list of Audience Segment Ids.
Parameters
Parameters | Parameter Type | Description | Data Type | Required/Optional |
|---|---|---|---|---|
| query | List of comma-separated Audience Segment Ids. |
| Required |
Sample Request URL
GET https://dspapi.admanagerplus.yahoo.com/traffic/audiences/analytics?segmentId={segmentId}Sample Response
{
"response": [
{
"segmentId": 1,
"age": [
{
"name": "13-17",
"count": 954139,
"uniqueCount": 382047
},...
],
"gender": [
{
"name": "UNKNOWN",
"count": 626194227,
"uniqueCount": 125411880
},...
],
"device": [
{
"name": "Desktop",
"count": 1230320527,
"uniqueCount": 0
},...
],
"location": [
{
"continent": "South America",
"countries": [
{
"name": "Colombia",
"count": 1847222,
"uniqueCount": 691559
},...
]
},...
],
"audienceSize": null
},...
],
"errors": null,
"timeStamp": "2025-09-08T13:48:19.445Z"
}