provider Agents Platform GET /v1/convai/users
@utdk/elevenlabs /v1/convai/users
Get Conversation Users
Get distinct users from conversations with pagination.
agent_id query
Agent id (agent_…) or speech engine external id (seng_), resolved to the same underlying resource.
branch_id query
Filter conversations by branch ID.
call_start_before_unix query
Unix timestamp (in seconds) to filter conversations up to this start date.
call_start_after_unix query
Unix timestamp (in seconds) to filter conversations after to this start date.
search query
Search/filter by user ID (exact match).
page_size query
How many users to return at maximum. Defaults to 30.
integer
sort_by query
The field to sort the results by. Defaults to last_contact_unix_secs.
enum: last_contact_unix_secs, conversation_count
cursor query
Used for fetching next page. Cursor is returned in the response.
xi-api-key header
Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.

Try it

Authentication
Configure credentials for ElevenLabs API Documentation
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

getConversationUsersRoute
GET/v1/convai/users
Get distinct users from conversations with pagination.

Agent id (agent_…) or speech engine external id (seng_), resolved to the same underlying resource.

Filter conversations by branch ID.

Unix timestamp (in seconds) to filter conversations up to this start date.

Unix timestamp (in seconds) to filter conversations after to this start date.

Search/filter by user ID (exact match).

How many users to return at maximum. Defaults to 30.

The field to sort the results by. Defaults to last_contact_unix_secs.

Used for fetching next page. Cursor is returned in the response.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import elevenlabs from '@utdk/elevenlabs';

await elevenlabs.getConversationUsersRoute({
  "page_size": 30
})