Fetch day-wise analytics data for your livestreams
GET/accounts/{account_id}/realtime/kit/{app_id}/analytics/livestreams/daywise
Returns day-wise 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)
Path Parameters
Fetch day-wise analytics data for your livestreams
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/$APP_ID/analytics/livestreams/daywise \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"data": [
{
"count": 4,
"date": "2023-07-15",
"total_ingest_seconds": 531,
"total_viewer_seconds": 116
}
],
"success": true
}Returns Examples
{
"data": [
{
"count": 4,
"date": "2023-07-15",
"total_ingest_seconds": 531,
"total_viewer_seconds": 116
}
],
"success": true
}