Returns the list of participants for a bot. Results are paginated using cursor pagination.
Authentication
Requires API key authentication via the Authorization header.
Path Parameters
Bot ID (e.g., bot_xxxxxxxxxxx)
Query Parameters
Cursor for pagination. Use the next value from the previous response to get the next page.
Filter participants by participant ID (e.g., par_xxxxxxxxxxx)
Filter participants by whether they are the meeting host
Response
URL for the next page of results, or null if no more results
URL for the previous page of results, or null if on first page
Array of participant objects
Participant Object
Unique identifier for the participant
User UUID (platform-specific persistent identifier for the participant)
Whether the participant is the meeting host
Example Request
curl https://app.attendee.dev/api/v1/bots/bot_weIAju4OXNZkDTpZ/participants \
-H "Authorization: Token YOUR_API_KEY_HERE" \
-H "Content-Type: application/json"
Example with Host Filter
curl "https://app.attendee.dev/api/v1/bots/bot_weIAju4OXNZkDTpZ/participants?is_host=true" \
-H "Authorization: Token YOUR_API_KEY_HERE" \
-H "Content-Type: application/json"
Example with Participant ID Filter
curl "https://app.attendee.dev/api/v1/bots/bot_weIAju4OXNZkDTpZ/participants?id=par_abc123xyz" \
-H "Authorization: Token YOUR_API_KEY_HERE" \
-H "Content-Type: application/json"
curl "https://app.attendee.dev/api/v1/bots/bot_weIAju4OXNZkDTpZ/participants?cursor=cD00ODY%3D" \
-H "Authorization: Token YOUR_API_KEY_HERE" \
-H "Content-Type: application/json"