Get time-series session trends for Meeting Buddy sessions.
GEThttps://api.aitronos.com/v1/meeting-buddy/analytics/trends
Returns session count, completion, failure, and duration trends over time, bucketed by day, week, or month. Useful for tracking usage patterns and identifying growth or decline in meeting recording activity. Defaults to the last 30 days with daily granularity.
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.
granularity string optional ยท Defaults to "day"
Time bucketing level. Valid values: day, week, month.
Returns a trends object containing the granularity and an array of data points:
| Field | Type | Description |
|---|---|---|
granularity | string | Bucketing level used (day, week, or month) |
data | array | Array of trend data points |
Each data point contains:
| Field | Type | Description |
|---|---|---|
period | string | Period label (e.g., "2025-12-15" or "2025-W50") |
session_count | integer | Total sessions in the period |
completed_count | integer | Completed sessions |
failed_count | integer | Failed sessions |
total_duration_hours | number | Total duration in hours |
avg_duration_minutes | number | Average session duration in minutes |
cURL
- Bash
- Python
- Python
- JavaScript
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/analytics/trends?granularity=week&start_date=2025-12-01T00:00:00Z" \
-H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool