Get a dashboard summary with all key metrics for Meeting Buddy sessions.
GEThttps://api.aitronos.com/v1/meeting-buddy/analytics/summary
Returns an aggregated summary of Meeting Buddy session metrics within a date range, including total sessions, active/completed/failed counts, average duration, success rate, platform distribution, and transcription usage. Defaults to the last 30 days if no date range is specified.
start_date string optional
Start of date range (UTC, ISO 8601 format). Defaults to 30 days before end_date.
end_date string optional
End of date range (UTC, ISO 8601 format). Defaults to current time.
Returns a summary object with the following fields:
| Field | Type | Description |
|---|---|---|
total_sessions | integer | Total number of sessions in the date range |
active_sessions | integer | Currently active sessions |
completed_sessions | integer | Completed sessions |
failed_sessions | integer | Failed sessions |
total_duration_hours | number | Sum of all session durations in hours |
avg_duration_minutes | number | Average session duration in minutes |
total_participants_unique | integer | Approximate unique participant count |
platform_distribution | object | Session counts by platform (e.g., {"meet": 15, "zoom": 8}) |
success_rate | number | Ratio of completed to completed + failed sessions |
sessions_today | integer | Sessions created today |
sessions_this_week | integer | Sessions created in the last 7 days |
transcription_enabled_rate | number | Fraction of sessions with transcription enabled |
cURL
- Bash
- Python
- Python
- JavaScript
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/analytics/summary?start_date=2025-12-01T00:00:00Z&end_date=2025-12-31T23:59:59Z" \
-H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool