Fetch day-wise session and recording analytics data for an App
realtime_kit.livestreams.get_org_analytics(strapp_id, LivestreamGetOrgAnalyticsParams**kwargs) -> LivestreamGetOrgAnalyticsResponse
GET/accounts/{account_id}/realtime/kit/{app_id}/analytics/daywise
Returns day-wise session and recording analytics data of an App for the specified time range start_date to end_date. If start_date and end_date are not provided, the default time range is set from 30 days ago to the current date.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
Parameters
Fetch day-wise session and recording analytics data for an App
import os
from cloudflare import Cloudflare
client = Cloudflare(
api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted
)
response = client.realtime_kit.livestreams.get_org_analytics(
app_id="app_id",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)
print(response.data){
"data": {
"recording_stats": {
"day_stats": [
{
"day": "day",
"total_recording_minutes": 0,
"total_recordings": 0
}
],
"recording_count": 0,
"recording_minutes_consumed": 0
},
"session_stats": {
"day_stats": [
{
"day": "day",
"total_session_minutes": 0,
"total_sessions": 0
}
],
"sessions_count": 0,
"sessions_minutes_consumed": 0
}
},
"success": true
}Returns Examples
{
"data": {
"recording_stats": {
"day_stats": [
{
"day": "day",
"total_recording_minutes": 0,
"total_recordings": 0
}
],
"recording_count": 0,
"recording_minutes_consumed": 0
},
"session_stats": {
"day_stats": [
{
"day": "day",
"total_session_minutes": 0,
"total_sessions": 0
}
],
"sessions_count": 0,
"sessions_minutes_consumed": 0
}
},
"success": true
}