elevenlabs · Schema

AgentListResponse

Properties

Name Type Description
agents array List of agents.
has_more boolean Whether there are more agents available.
next_cursor string Cursor for retrieving the next page.
View JSON Schema on GitHub

JSON Schema

elevenlabs-agentlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AgentListResponse",
  "title": "AgentListResponse",
  "type": "object",
  "properties": {
    "agents": {
      "type": "array",
      "description": "List of agents.",
      "items": {
        "$ref": "#/components/schemas/AgentSummary"
      }
    },
    "has_more": {
      "type": "boolean",
      "description": "Whether there are more agents available."
    },
    "next_cursor": {
      "type": "string",
      "description": "Cursor for retrieving the next page."
    }
  }
}