elevenlabs · Schema

ConversationListResponse

Properties

Name Type Description
conversations array List of conversations.
has_more boolean Whether there are more conversations available.
next_cursor string Cursor for pagination.
View JSON Schema on GitHub

JSON Schema

elevenlabs-conversationlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConversationListResponse",
  "title": "ConversationListResponse",
  "type": "object",
  "properties": {
    "conversations": {
      "type": "array",
      "description": "List of conversations.",
      "items": {
        "$ref": "#/components/schemas/ConversationSummary"
      }
    },
    "has_more": {
      "type": "boolean",
      "description": "Whether there are more conversations available."
    },
    "next_cursor": {
      "type": "string",
      "description": "Cursor for pagination."
    }
  }
}