Breakdown
GET /api/analytics/breakdown
Audience breakdown by browser, OS, device, or domain.
Requires analytics.read. See Overview for shared parameters and category scope.
Parameters
| Parameter | Required | Description |
|---|---|---|
dimension | Yes | browser, os, device, or domain |
contentType | No | vod (default) or live |
contentId | No | Limit to one video or live event |
from, to | No | ISO 8601 range |
minimumWatchSeconds | No | Default 3 |
limit | No | Default 100 |
Request
curl -X GET "https://app.ignitevideo.cloud/api/analytics/breakdown?dimension=device&contentType=vod" \
-H "Authorization: Bearer YOUR_API_KEY"Response
{
"dimension": "browser" | "os" | "device" | "domain",
"from": string,
"to": string,
"minimumWatchSeconds": number,
"breakdown": [
{
"value": string,
"views": number,
"watchSeconds": number,
"sessions": number
},
[...]
]
}