Skip to content
Last updated

List all Meeting Buddy bot sessions for the authenticated user's organization.

GEThttps://api.aitronos.com/v1/meeting-buddy/sessions

Retrieve a paginated list of all Meeting Buddy sessions belonging to the authenticated user's organization. Results can be filtered by status and date range.

Query Parameters

status string optional

Filter by session status. Valid values: initializing, joining, active, recording, leaving, completed, failed.

start_date string optional

Filter sessions created after this date. ISO 8601 format (e.g., 2025-12-01 or 2025-12-01T00:00:00Z).

end_date string optional

Filter sessions created before this date. ISO 8601 format (e.g., 2025-12-31 or 2025-12-31T23:59:59Z).

page integer optional · Defaults to 1

Page number (minimum: 1).

page_size integer optional · Defaults to 20

Number of items per page (minimum: 1, maximum: 100).


Returns

Returns a paginated list of Session objects with pagination metadata including total, page, page_size, and total_pages.

cURL
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/sessions?status=active&page=1&page_size=20" \
  -H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool