Skip to content
Last updated

Retrieve detailed information about a specific Meeting Buddy bot session.

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

Get the full session profile including status, timestamps, recording statistics, and participant information. For active sessions, statistics are updated in real time. For completed sessions, final recording and transcription information is included.

Path Parameters

session_id string required

The unique identifier of the session. Must start with mbsess_ prefix.


Returns

Returns a Session object with full details including current status, timestamps, recording statistics, and participant data.

cURL
curl -s -X GET https://api.aitronos.com/v1/meeting-buddy/sessions/mbsess_abc123def456 \
  -H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool