elevenLabs.listAgents supports search and cursor. pageSize defaults to 30 and accepts 1–100. It returns agent IDs, names, tags, hasMore, and nextCursor.
automations/list-elevenlabs-agents.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Lists ElevenLabs agents available to the connected account.
elevenLabs.listAgents supports search and cursor. pageSize defaults to 30 and accepts 1–100. It returns agent IDs, names, tags, hasMore, and nextCursor.
import { automation, markSignificant, onInvocation } from "automate.ax"
import { elevenLabs } from "automate.ax/elevenlabs"
export default automation("List agents", () => {
onInvocation()
markSignificant(elevenLabs.listAgents({ search: "support" }))
})