Skip to main content
GET
/
api
/
v1
/
voice
List available voices
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://blackbox.dasha.ai/api/v1/voice', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
[
  {
    "id": "<string>",
    "provider": "<string>",
    "category": "Public",
    "name": "<string>",
    "voiceId": "<string>",
    "description": "<string>",
    "language": "<string>",
    "labels": {},
    "previewUrl": "<string>",
    "createdTime": "2023-11-07T05:31:56Z",
    "lastUpdatedTime": "2023-11-07T05:31:56Z"
  }
]

Voice Categories

Public Voices:
  • Pre-trained voices available to all users
  • Wide variety of languages, accents, and characteristics
Cloned Voices:
  • Custom voices created from audio samples
  • Organization-specific and private

Voice Selection

Consider these factors when selecting a voice:
  • Language: Match your target audience’s language
  • Characteristics: Gender, age, accent, tone
  • Quality: Audio clarity and naturalness
  • Performance: Latency and real-time suitability

Response

Returns available voices successfully

id
string
required

Unique identifier for the voice

Minimum string length: 1
provider
string
required

TTS provider used for this voice. Supported providers: ElevenLabs, Cartesia, Lmnt.

Minimum string length: 1
category
enum<string>
required

Voice category. Public voices are provided by the TTS provider, Cloned voices are custom voices created through voice cloning.

Available options:
Public,
Cloned
name
string | null

Display name of the voice

voiceId
string | null

Voice ID used for synthesis

description
string | null

Description of voice characteristics

language
string | null

Primary language for the voice

labels
object

Custom metadata labels

previewUrl
string | null

URL for voice preview audio

createdTime
string<date-time> | null

Timestamp when voice was created

lastUpdatedTime
string<date-time> | null

Timestamp when voice was last updated