Content
GET /api/analytics/content
Ranked list of content items by views in the workspace for a content type.
Requires analytics.read. See Overview for shared parameters and category scope.
Parameters
| Parameter | Required | Description |
|---|---|---|
contentType | No | vod (default) or live |
from, to | No | ISO 8601 range |
minimumWatchSeconds | No | Default 3 |
limit | No | Default 100 |
Request
curl -X GET "https://app.ignitevideo.cloud/api/analytics/content?contentType=vod&limit=50" \
-H "Authorization: Bearer YOUR_API_KEY"Response
{
"from": string,
"to": string,
"minimumWatchSeconds": number,
"content": [
{
"contentId": string,
"views": number,
"watchSeconds": number,
"completions": number,
"sessions": number
},
[...]
]
}