List ElevenLabs Agents
elevenlabs_list_agentsList conversational AI agents in your ElevenLabs workspace with optional name filtering and pagination. Retrieve agent IDs needed for making outbound calls.
Instructions
List conversational AI agents in the ElevenLabs workspace.
Use this first to discover the agent_id needed by elevenlabs_make_outbound_call.
Args:
search (string, optional): filter by agent name
page_size (number): 1-100, default 30
cursor (string, optional): pagination cursor
Returns JSON: { agents: [{ agent_id, name, created_at_unix_secs }], has_more, next_cursor }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor from a previous response's next_cursor | |
| search | No | Optional name filter, e.g. 'Jack' | |
| page_size | No | Max agents to return (1-100, default 30) |