Skip to content
Last updated

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.

Query Parameters

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

Returns a trends object containing the granularity and an array of data points:

FieldTypeDescription
granularitystringBucketing level used (day, week, or month)
dataarrayArray of trend data points

Each data point contains:

FieldTypeDescription
periodstringPeriod label (e.g., "2025-12-15" or "2025-W50")
session_countintegerTotal sessions in the period
completed_countintegerCompleted sessions
failed_countintegerFailed sessions
total_duration_hoursnumberTotal duration in hours
avg_duration_minutesnumberAverage session duration in minutes
cURL
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