Skip to content

Voices

List available Murf AI voices for speech synthesis.

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

1
2
3
4
5
6
7
using var client = new MurfClient(apiKey);

// List available voices for text-to-speech synthesis.
var voices = await client.SubpackageTextToSpeech.GetVoicesAsync(
    model: "GEN2");

// The response contains a list of available voices with metadata.