Minimax Speech 2.6 Hd API Documentation

Minimax Speech 2.6 Hd API Documentation

Playground

Try it on WaveSpeedAI!

Minimax Speech 2.6 HD: Ultra-human, low-latency (< 250ms) TTS with voice cloning, text normalization and support for 40+ languages. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

Features

High-definition Text-to-Speech (TTS) with natural pronunciation and crisp articulation. Supports custom cloned voices and built-in voices, adjustable speed, volume, and pitch, and coverage of 40+ languages for professional audio creation.


Features

  • Multilingual upgrade: Stronger English and overall multilingual similarity, accuracy, and rhythm vs. Speech 02; seamless switching across 40+ languages for meetings, podcasts, and daily dialog.
  • Lifelike tone replication: Control across language, accent, style, and emotion—preserves cross-language and regional accents and “age” timbre with high fidelity.
  • Global language set (40+): Expanded catalog including Bulgarian, Danish, Hebrew, Malay, Persian, Slovak, Swedish, Croatian, Filipino, Hungarian, Norwegian, Slovenian, Catalan, Nynorsk, Tamil, Afrikaans, and more—ideal for cross-border commerce, customer support, and localized marketing.
  • Real-time streaming capabilities: generate and play audio as it’s being synthesized, enabling low-latency experiences for live or interactive applications.

How to Use

1) Choose a Voice (voice_id)

Use either a custom voice you trained (voice cloning) or a built-in system voice (case-sensitive):

Wise_Woman, Friendly_Person, Inspirational_girl, Deep_Voice_Man, Calm_Woman,
Casual_Guy, Lively_Girl, Patient_Man, Young_Knight, Determined_Man, Lovely_Girl,
Decent_Boy, Imposing_Manner, Elegant_Man, Abbess, Sweet_Girl_2, Exuberant_Girl

2) Set Audio Parameters (mapped to the UI dropdowns)

  • english_normalization (boolean) Improves English text normalization, especially numbers/units (e.g., “$1,299” → “one thousand two hundred ninety-nine dollars”).
  • sample_rate (Hz) 22050 / 24000 / 44100 / 48000. Tip: 44.1 kHz for music/podcasts; 48 kHz for video.
  • bitrate (bps for MP3/OGG) 64k / 96k / 128k / 192k / 256k / 320k. Tip: ≥192k for distribution; 96–128k for previews.
  • channel: mono or stereo Mono is smaller/clearer for speech; stereo for spatial mixes.
  • format: mp3, wav, ogg, flac, wav is lossless (larger); mp3 is compact and web-friendly. Also supports streaming PCM output for real-time playback.
  • language_boost (IETF code: en, zh, ja, …) Prioritizes a primary language in mixed-language inputs.

Prosody controls

  • speed: speaking rate (e.g., 0.8–1.2)
  • volume: gain (linear or dB, depending on API)
  • pitch: pitch shift (semitones/cents or normalized)

Pricing

  • Price: $0.10 / 1,000 characters

Quick examples

  • 1,000 chars → $0.10
  • 2,500 chars → $0.10 × 2.5 = $0.25
  • 10,000 chars → $1.00

Typical Use Cases

Short-video and ad voiceovers, e-learning/courseware, AI assistants and IVR, podcasts/audiobooks, cross-border e-commerce localization.


Best-Practice Presets (optional)

  • Video voiceover: format=wav, sample_rate=48000, channel=mono, english_normalization=true
  • Web preview: format=mp3, sample_rate=44100, bitrate=128000, channel=mono
  • Podcast: format=mp3, sample_rate=44100, bitrate=192000–320000, channel=stereo if mixing music

Authentication

For authentication details, please refer to the Authentication Guide.

API Endpoints

Submit Task & Query Result

set -euo pipefail

export WAVESPEED_API_KEY="your-api-key"

REQUEST_BODY=$(cat <<'JSON'
{
  "text": "A clear example input",
  "voice_id": "your-voice-id",
  "speed": 1,
  "volume": 1,
  "pitch": 0,
  "emotion": "happy",
  "english_normalization": false,
  "sample_rate": 8000,
  "bitrate": 32000,
  "channel": "1",
  "format": "mp3",
  "language_boost": "Chinese"
}
JSON
)

# 1. Submit the prediction.
SUBMIT_RESPONSE=$(curl --silent --show-error --fail-with-body \
  -X POST "https://api.wavespeed.ai/api/v3/minimax/speech-2.6-hd" \
  -H "Authorization: Bearer ${WAVESPEED_API_KEY}" \
  -H "Content-Type: application/json" \
  -d "${REQUEST_BODY}")

TASK=$(printf '%s' "${SUBMIT_RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
PREDICTION_ID=$(printf '%s' "${TASK}" | jq -r '.id // empty')
if [ -z "${PREDICTION_ID}" ]; then
  printf 'Submission response did not contain a prediction id
' >&2
  exit 1
fi
RESULT_URL="https://api.wavespeed.ai/api/v3/predictions/${PREDICTION_ID}/result"

# 2. Poll until the prediction finishes.
while true; do
  RESPONSE=$(curl --silent --show-error --fail-with-body \
    "${RESULT_URL}" \
    -H "Authorization: Bearer ${WAVESPEED_API_KEY}")
  RESULT=$(printf '%s' "${RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
  STATUS=$(printf '%s' "${RESULT}" | jq -r '.status // empty')

  case "${STATUS}" in
    completed) printf '%s\n' "${RESULT}" | jq '.outputs'; break ;;
    failed|cancelled|timeout|deleted) printf '%s\n' "${RESULT}" | jq . >&2; exit 1 ;;
    *) sleep 2 ;;
  esac
done

Parameters

Task Submission Parameters

Request Parameters

ParameterTypeRequiredDefaultRangeDescription
textstringYes--Text to convert to speech. Every character is 1 token. Maximum 10000 characters. Use <#x#> between words to control pause duration (0.01-99.99s).
voice_idstringYes--Desired voice ID. Use a voice ID you have trained (https://wavespeed.ai/models/minimax/voice-clone), or one of the following system voice IDs: Wise_Woman, Friendly_Person, Inspirational_girl, Deep_Voice_Man, Calm_Woman, Casual_Guy, Lively_Girl, Patient_Man, Young_Knight, Determined_Man, Lovely_Girl, Decent_Boy, Imposing_Manner, Elegant_Man, Abbess, Sweet_Girl_2, Exuberant_Girl.
speednumberNo10.5 ~ 2Speech speed. Range: 0.5-2.0, where 1.0 is normal speed.
volumenumberNo10.1 ~ 10Speech volume. Range: 0.1-10.0, where 1.0 is normal volume.
pitchnumberNo0-12 ~ 12Speech pitch. Range: -12 to 12, where 0 is normal pitch.
emotionstringNohappyhappy, sad, angry, fearful, disgusted, surprised, neutralThe emotion of the generated speech.
english_normalizationbooleanNofalse-This parameter supports English text normalization, which improves performance in number-reading scenarios.
sample_rateintegerNo-8000, 16000, 22050, 24000, 32000, 44100Sample rate of generated sound.
bitrateintegerNo-32000, 64000, 128000, 256000Bitrate of generated sound.
channelstringNo-1, 2The number of channels of the generated audio. 1: mono, 2: stereo.
formatstringNo-mp3, wav, pcm, flacFormat of generated sound.
language_booststringNo-Chinese, Chinese,Yue, English, Arabic, Russian, Spanish, French, Portuguese, German, Turkish, Dutch, Ukrainian, Vietnamese, Indonesian, Japanese, Italian, Korean, Thai, Polish, Romanian, Greek, Czech, Finnish, Hindi, Bulgarian, Danish, Hebrew, Malay, Persian, Slovak, Swedish, Croatian, Filipino, Hungarian, Norwegian, Slovenian, Catalan, Nynorsk, Tamil, Afrikaans, autoEnhance the ability to recognize specified languages and dialects.
enable_base64_outputbooleanNofalse-If set to `true`, the prediction's `output` strings are returned as **naked base64** (no `data:<mime>;base64,` prefix). When `false` (default), outputs are returned as URLs pointing to our CDN.
enable_sync_modebooleanNofalse-If set to `true`, the request attempts to wait for the generated result and return outputs in the same response. If the result is not ready within the sync wait window, the API can return a timeout body while the task continues processing. This option is only available via the API and is supported only by some models.

Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
data.idstringUnique identifier for the prediction, Task Id
data.modelstringModel ID used for the prediction
data.outputsarrayOutput values, usually URL strings; some models return text strings or structured result objects (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.statusstringTask status. completed is successful; failed, cancelled, timeout, and deleted are failure terminal statuses.
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds

Result Request Parameters

ParameterTypeRequiredDefaultDescription
idstringYes-Task ID

Result Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
dataobjectThe prediction data object containing all details
data.idstringUnique identifier for the prediction
data.modelstringModel ID used for the prediction
data.outputsarray<string | object>Array of generated outputs (empty when status is not completed). Items are usually URL strings, but may be text strings or structured result objects, depending on the model.
data.urlsobjectObject containing related API endpoints
data.statusstringStatus: completed is successful; failed, cancelled, timeout, and deleted are failure terminal statuses
data.created_atstringISO timestamp of when the request was created
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds
© 2026 WaveSpeedAI. All rights reserved.