Fetch day-wise analytics data for your livestreams
client.RealtimeKit.Livestreams.GetLivestreamAnalyticsDaywise(ctx, appID, params) (*LivestreamGetLivestreamAnalyticsDaywiseResponse, error)
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)
Fetch day-wise analytics data for your livestreams
package main
import (
"context"
"fmt"
"github.com/cloudflare/cloudflare-go"
"github.com/cloudflare/cloudflare-go/option"
"github.com/cloudflare/cloudflare-go/realtime_kit"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"),
)
response, err := client.RealtimeKit.Livestreams.GetLivestreamAnalyticsDaywise(
context.TODO(),
"app_id",
realtime_kit.LivestreamGetLivestreamAnalyticsDaywiseParams{
AccountID: cloudflare.F("023e105f4ecef8ad9ca31a8372d0c353"),
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
}
{
"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
}