elevenlabs · Schema

VoiceListResponse

Properties

Name Type Description
voices array List of available voices.
View JSON Schema on GitHub

JSON Schema

elevenlabs-voicelistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VoiceListResponse",
  "title": "VoiceListResponse",
  "type": "object",
  "properties": {
    "voices": {
      "type": "array",
      "description": "List of available voices.",
      "items": {
        "$ref": "#/components/schemas/Voice"
      }
    }
  }
}