Skip to main content

List Available Voices

list() also declares include_public, but the current Python implementation only sends that query field when it is True; include_public=False therefore behaves like the API default instead of excluding public voices. Use the raw Voice API when you need that filter.

Get a Specific Voice

Create a Voice

Create a new voice with optional reference audio files:
The reference_files parameter accepts file paths (str or Path) whose extensions are WAV, MP3, OGG, M4A, or FLAC.

Update a Voice

The SDK also declares an is_public update argument, but the current API does not accept that field on PATCH /v1/voices/{voice_id}. Use publish() to make a voice public. The API’s generative_voice_description field is not exposed by this SDK’s create/update methods; use the Voice API reference when you need it.

Delete a Voice

Manage Reference Audio

Publish a Voice

Request that your voice be made publicly available. An admin will verify it before it becomes visible to others.

Next steps