DocsAPI ReferenceList bots for a meeting
GET/api/v1/meetings/{meeting_id}/bots

Returns all bot instances that attended a specific meeting. Useful when multiple bots joined the same conference call.

Path Parameters

meeting_idstringrequirede.g. "99"

Internal meeting UUID (from `MeetingResponse.id`).

Headers

X-API-Keystringrequired

Your workspace API key.

Responses

200Array of bot objects that attended the meeting.
[
  {
    "bot_id": "550e8400-e29b-41d4-a716-446655440000",
    "status": "completed",
    "created_at": "2026-05-12T10:00:00Z"
  }
]
404Meeting not found in this workspace.