Fetch complete analytics data for your livestreams
client.realtimeKit.livestreams.getLivestreamAnalyticsComplete(stringappId, LivestreamGetLivestreamAnalyticsCompleteParams { account_id, end_time, start_time } params, RequestOptionsoptions?): LivestreamGetLivestreamAnalyticsCompleteResponse { data, success }
GET/accounts/{account_id}/realtime/kit/{app_id}/analytics/livestreams/overall
Returns livestream analytics for the specified time range.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
Fetch complete analytics data for your livestreams
import Cloudflare from 'cloudflare';
const client = new Cloudflare({
apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted
});
const response = await client.realtimeKit.livestreams.getLivestreamAnalyticsComplete('app_id', {
account_id: '023e105f4ecef8ad9ca31a8372d0c353',
});
console.log(response.data);{
"data": {
"count": 0,
"total_ingest_seconds": 0,
"total_viewer_seconds": 0
},
"success": true
}Returns Examples
{
"data": {
"count": 0,
"total_ingest_seconds": 0,
"total_viewer_seconds": 0
},
"success": true
}