v3
latestOpenAPI 3.1.02026-08-0150254154.0 KBFlux Text to Speech (batch)
Synthesize a complete block of text into a single audio response using Deepgram's Flux TTS batch (REST) API. Use this for pre-rendering fixed audio (IVR prompts, notifications, narration) where the whole text is known up front and you don't need incremental playback or interruption.
Query parameters
URL to which we'll make the callback request
HTTP method by which the callback request will be made
Opts out requests from the Deepgram Model Improvement Program. Refer to our Docs for pricing impacts before setting this to true. https://dpgr.am/deepgram-mip
Label your requests for the purpose of identification during usage reporting
The bitrate of the audio in bits per second. Choose from predefined ranges or specific values based on the encoding type.
Container specifies the file format wrapper for the output audio. The available options depend on the encoding type.
Encoding allows you to specify the expected encoding of your audio output
Flux TTS model used to synthesize the submitted text, in the form flux-{voice}-{language} (for example, flux-alexis-en). Required; unlike the v1 (Aura) endpoint there is no default and only flux models are accepted. English-only at launch.
Sample Rate specifies the sample rate for the output audio. Based on the encoding, different sample rates are supported. For some encodings, the sample rate is not configurable
Processing priority for asynchronous (callback) requests. The only supported value is low.
Headers
Use Authorization: Token <API_KEY> Example: Authorization: Token 12345abcdef
Request body
Response
Returns the synthesized audio in the requested encoding as a binary stream. When a callback URL is supplied, the request is processed asynchronously and the response body is instead a JSON acknowledgement (Content-Type application/json) of the form {"request_id": "..."}, with the audio delivered to the callback URL. Because this endpoint is typed as a binary audio stream, SDK callers that set callback receive this JSON acknowledgement through the audio byte iterator as raw bytes and must join the chunks and parse request_id themselves.