Skip to content

Voices

List available text-to-speech voices.

This example assumes using DId; is in scope and apiKey contains your DId API key.

1
2
3
4
5
6
7
// List all available TTS voices for generating talking avatar videos.
// Each voice includes metadata such as provider, gender, language, and access level.
using var client = new DIdClient(apiKey);

var voices = await client.Voices.VoicesAsync();

var first = voices[0];