(Available from version 1.11) This operation returns the engagement data for a specific VOD stream. Engagement data provides insight into how many plays your stream received and for how long.
If you don't send from and to query parameters, the last hour's worth of data is returned. See the trend field in the response for information about sample intervals.
If the time range between from and to query parameters is:
Success
Unauthorized
Forbidden
Not Found
Gone
Unprocessable Entity
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/analytics/popularity/vod_streams/tvctq36g?from=2023-04-14T10:31:54.486Z&to=2023-07-13T10:31:54.486Z&include=trend"
{- "vod_stream": {
- "id": "tvctq36g",
- "play_rate": 0.2,
- "completion_rate": 0.42,
- "duration_ms": 9761000,
- "avg_seconds_watched": 302,
- "avg_percentage_watched": 67,
- "total_seconds_watched": 77699,
- "trend": [
- {
- "percent": 1,
- "viewers": 7
}, - {
- "percent": 2,
- "viewers": 7
}, - {
- "percent": 3,
- "viewers": 7
}, - {
- "percent": 4,
- "viewers": 7
}, - {
- "percent": 5,
- "viewers": 10
}, - {
- "percent": 6,
- "viewers": 7
}, - {
- "percent": 7,
- "viewers": 7
}, - {
- "percent": 8,
- "viewers": 25
}, - {
- "percent": 9,
- "viewers": 25
}, - {
- "percent": 10,
- "viewers": 25
}, - {
- "percent": 11,
- "viewers": 7
}, - {
- "spercent": 12,
- "viewers": 7
}, - {
- "percent": 13,
- "viewers": 7
}
]
}, - "limits": {
- "from": "2024-03-14T10:31:54.000Z",
- "to": "2024-04-13T10:31:54.000Z"
}
}