Skip to main content
GET
/
v1
/
voice
/
list
curl -X GET "https://api.slidevid.ai/v1/voice/list?language=English&gender=Female" \
  -H "x-api-key: your_api_key_here"
{
  "success": true,
  "data": {
    "voices": [
      {
        "id": "1004",
        "voiceId": "tzX5paJ07p5hyWFcU3uG",
        "name": "Jude",
        "gender": "Male",
        "language": "English",
        "accent": "British",
        "country": "GB",
        "templateUrl": "https://cdn.tryslidevid.ai/voices/jude.mp3",
        "thumbnail": "/images/voice-default.png",
        "isCustom": false,
        "source": "library"
      }
    ],
    "total": 150
  }
}

Overview

This endpoint returns all voices available for text-to-speech, including ElevenLabs library voices and custom cloned voices.

Query Parameters

type
string
default:"all"
  • library: Only ElevenLabs library voices
  • custom: Only custom cloned voices
  • all: Both library and custom voices (default)
language
string
Filter by language (e.g., “English”, “Spanish”, “French”)
gender
string
Filter by gender (“Male”, “Female”)
curl -X GET "https://api.slidevid.ai/v1/voice/list?language=English&gender=Female" \
  -H "x-api-key: your_api_key_here"
{
  "success": true,
  "data": {
    "voices": [
      {
        "id": "1004",
        "voiceId": "tzX5paJ07p5hyWFcU3uG",
        "name": "Jude",
        "gender": "Male",
        "language": "English",
        "accent": "British",
        "country": "GB",
        "templateUrl": "https://cdn.tryslidevid.ai/voices/jude.mp3",
        "thumbnail": "/images/voice-default.png",
        "isCustom": false,
        "source": "library"
      }
    ],
    "total": 150
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

type
enum<string>

Filter by voice type

Available options:
library,
custom,
all
language
string

Filter by language

gender
enum<string>

Filter by gender

Available options:
Male,
Female

Response

200

Success