DocsAPI ReferenceGet current participants
GET
/api/v1/bots/{bot_id}/participantsReturns the current list of participant names in the meeting. This list is maintained by the bot VM and is empty for bots that haven't yet joined.
Path Parameters
bot_idstringrequirede.g. "550e8400-e29b-41d4-a716-446655440000"Bot UUID.
Headers
X-API-KeystringrequiredYour workspace API key.
Responses
200Participant list.
{
"bot_id": "550e8400-e29b-41d4-a716-446655440000",
"participants": [
"Alice",
"Bob",
"Charlie"
]
}404Bot not found in this workspace.
Try it live
API Configurationglobal · all endpoints
GET
https://api.serveka.com/api/v1/bots/550e8400-e29b-41d4-a716-446655440000/participantsPath Parameters
curl -X GET 'https://api.serveka.com/api/v1/bots/550e8400-e29b-41d4-a716-446655440000/participants' \