voice_id.
Sources
Voices come from three sources:- Public catalog: curated voices that ship with Breeze. List them with
GET /v1/voices. - Designed voices: created from a text prompt with
POST /v1/voice-previews/designand finalized withPOST /v1/voice-previews/{generated_voice_id}/save. - Cloned voices: created from audio samples with
POST /v1/voice-previews/clone, previewed viaGET /v1/voice-previews/{generated_voice_id}/stream, and finalized withPOST /v1/voice-previews/{generated_voice_id}/save.
voice_type="default" is the official Breeze catalog. voice_type="personal" is user-saved voices. Categories are premade, generated, and cloned.
Voice settings
Each voice stores defaultvoice_settings. Override per call by passing voice_settings in the request body.
guidance_scaleadjusts how strongly generation follows the prompt and reference voice. Accepted values range from1.0to10.0.
PATCH /v1/voices/{voice_id}/settings.
Browsing voices
Passsearch to GET /v1/voices to search every voice available to the
authenticated account. Public catalog results combine vector similarity with
exact, prefix, and substring name matches. Personal voices remain searchable
by name, description, or voice ID. Exact name matches rank first, and the API
falls back to text matching if semantic search is temporarily unavailable.
Pass language_code to restrict the search to voices whose saved preview audio
uses that supported two-letter language code. The language filter is applied
before semantic and text ranking, so every returned voice matches the requested
audio language.
Use the voice library to browse the public catalog and preview samples.
Voice workflows
Text to speech
Use any saved or public
voice_id to generate one-shot, async, or streaming audio.Voice Design
Create a new voice from a text description and sample script.
Voice Clone
Create a reusable voice from a consented audio sample.
List voices
Search and filter the public catalog and your saved voices by
voice_type and origin.CLI voices
Browse, audition, design, clone, and manage voices from the terminal.
Voice Library
Browse voices visually, preview samples, and copy voice IDs from Breeze Studio.

