GET
/
v1
/
voices
from elevenlabs import ElevenLabs

client = ElevenLabs(
    api_key="YOUR_API_KEY",
)
client.voices.get_all()
{
  "voices": [
    {
      "voice_id": "<string>",
      "name": "<string>",
      "samples": [
        {
          "sample_id": "<string>",
          "file_name": "<string>",
          "mime_type": "<string>",
          "size_bytes": 123,
          "hash": "<string>"
        }
      ],
      "category": "generated",
      "fine_tuning": {
        "is_allowed_to_fine_tune": true,
        "state": {},
        "verification_failures": [
          "<string>"
        ],
        "verification_attempts_count": 123,
        "manual_verification_requested": true,
        "language": "<string>",
        "progress": {},
        "message": {},
        "dataset_duration_seconds": 123,
        "verification_attempts": [
          {
            "text": "<string>",
            "date_unix": 123,
            "accepted": true,
            "similarity": 123,
            "levenshtein_distance": 123,
            "recording": {
              "recording_id": "<string>",
              "mime_type": "<string>",
              "size_bytes": 123,
              "upload_date_unix": 123,
              "transcription": "<string>"
            }
          }
        ],
        "slice_ids": [
          "<string>"
        ],
        "manual_verification": {
          "extra_text": "<string>",
          "request_time_unix": 123,
          "files": [
            {
              "file_id": "<string>",
              "file_name": "<string>",
              "mime_type": "<string>",
              "size_bytes": 123,
              "upload_date_unix": 123
            }
          ]
        },
        "max_verification_attempts": 123,
        "next_max_verification_attempts_reset_unix_ms": 123
      },
      "labels": {},
      "description": "<string>",
      "preview_url": "<string>",
      "available_for_tiers": [
        "<string>"
      ],
      "settings": {
        "stability": 123,
        "similarity_boost": 123,
        "style": 0,
        "use_speaker_boost": true
      },
      "sharing": {
        "status": "enabled",
        "history_item_sample_id": "<string>",
        "date_unix": 123,
        "whitelisted_emails": [
          "<string>"
        ],
        "public_owner_id": "<string>",
        "original_voice_id": "<string>",
        "financial_rewards_enabled": true,
        "free_users_allowed": true,
        "live_moderation_enabled": true,
        "rate": 123,
        "notice_period": 123,
        "disable_at_unix": 123,
        "voice_mixing_allowed": true,
        "featured": true,
        "category": "generated",
        "reader_app_enabled": true,
        "image_url": "<string>",
        "ban_reason": "<string>",
        "liked_by_count": 123,
        "cloned_by_count": 123,
        "name": "<string>",
        "description": "<string>",
        "labels": {},
        "review_status": "not_requested",
        "review_message": "<string>",
        "enabled_in_library": true,
        "instagram_username": "<string>",
        "twitter_username": "<string>",
        "youtube_username": "<string>",
        "tiktok_username": "<string>",
        "moderation_check": {
          "date_checked_unix": 123,
          "name_value": "<string>",
          "name_check": true,
          "description_value": "<string>",
          "description_check": true,
          "sample_ids": [
            "<string>"
          ],
          "sample_checks": [
            123
          ],
          "captcha_ids": [
            "<string>"
          ],
          "captcha_checks": [
            123
          ]
        },
        "reader_restricted_on": [
          {
            "resource_type": "read",
            "resource_id": "<string>"
          }
        ]
      },
      "high_quality_base_model_ids": [
        "<string>"
      ],
      "safety_control": "NONE",
      "voice_verification": {
        "requires_verification": true,
        "is_verified": true,
        "verification_failures": [
          "<string>"
        ],
        "verification_attempts_count": 123,
        "language": "<string>",
        "verification_attempts": [
          {
            "text": "<string>",
            "date_unix": 123,
            "accepted": true,
            "similarity": 123,
            "levenshtein_distance": 123,
            "recording": {
              "recording_id": "<string>",
              "mime_type": "<string>",
              "size_bytes": 123,
              "upload_date_unix": 123,
              "transcription": "<string>"
            }
          }
        ]
      },
      "permission_on_resource": "<string>",
      "is_owner": true,
      "is_legacy": false,
      "is_mixed": false,
      "created_at_unix": 123
    }
  ]
}

Headers

xi-api-key
string

Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Query Parameters

show_legacy
boolean
default:false

If set to true, legacy premade voices will be included in responses from /v1/voices

Response

200
application/json
Successful Response
voices
object[]
required