Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cartesia.ai/llms.txt

Use this file to discover all available pages before exploring further.

def voices_list(client: Cartesia) -> None:
    """List voices with pagination."""
    voices = client.voices.list(limit=10)
    for voice in voices:
        print(voice.name)
From cartesia-python/examples/examples.py:461

Run this example

cd cartesia-python
CARTESIA_API_KEY=YOUR_KEY python3 examples/examples.py voices_list