compare/Speech 2.8 HDvsSpeech 2.8 Turbo

Speech 2.8 HD vs Speech 2.8 Turbo

Pricing, context window, capabilities, and release date — pulled from each provider's public docs. Both are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.

RUN BOTH LIVE

Paste a prompt. Watch them race.

Both models stream in parallel through your own AIgateway key. Tokens, latency, and cost update as they arrive.

Sign in to runLive streaming uses your own key. It's free to sign up.
 Speech 2.8 HD
minimax/speech-2.8-hd
Speech 2.8 Turbo
minimax/speech-2.8-turbo
ProviderMiniMaxMiniMax
FamilyMiniMax SpeechMiniMax Speech
Modalityaudio-ttsaudio-tts
Context window
Max output
Released2026-04-132026-04-13
Input price$100000.00 /1K ch$60000.00 /1K ch
Output price
Cache read
Tools
Streaming
Vision
JSON mode
Reasoning
Prompt caching
Speech 2.8 HD
minimax/speech-2.8-hd
Full spec →

MiniMax Speech 2.8 HD focuses on studio-grade audio generation with emotion control, multilingual support (40+ languages), and voice cloning.

Strengths
  • Natural speech synthesis
Speech 2.8 Turbo
minimax/speech-2.8-turbo
Full spec →

MiniMax Speech 2.8 Turbo turns text into natural, expressive speech with voice cloning, emotion control, and 40+ language support at faster speeds.

Strengths
  • Natural speech synthesis
SWITCH BETWEEN THEM

One key, both models, one line different.

# pip install aigateway-py openai
# aigateway-py: sub-accounts, evals, replays, jobs, webhook verify.
# openai SDK: chat/embeddings/images/audio — drop-in compat per our SDK's own guidance.
from openai import OpenAI

client = OpenAI(
    base_url="https://api.aigateway.sh/v1",
    api_key="sk-aig-...",
)

# Try Speech 2.8 HD
client.chat.completions.create(
    model="minimax/speech-2.8-hd",
    messages=[{"role":"user","content":"hello"}],
)

# Try Speech 2.8 Turbo — same client, same key
client.chat.completions.create(
    model="minimax/speech-2.8-turbo",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyAdd a third model

Compare with another

Speech 2.8 HD vs TTS-1 HD
minimax/speech-2.8-hd · openai/tts-1-hd