compare/tts-1-hdvsSpeech 2.8 HD

tts-1-hd vs Speech 2.8 HD

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.
 tts-1-hd
openai/tts-1-hd
Speech 2.8 HD
minimax/speech-2.8-hd
ProvideropenaiMiniMax
Familyopenai
Modalityttsaudio-tts
Context window
Max output
Released2026-04-132026-04-13
Input price$0.030 /1K ch$0.100 /1K ch
Output price
Cache read
Tools
Streaming
Vision
JSON mode
Reasoning
Prompt caching
tts-1-hd
openai/tts-1-hd
Full spec →

OpenAI's high-definition text-to-speech model producing higher quality audio output.

Strengths
  • Text-to-speech synthesis
  • Voice cloning
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
SWITCH BETWEEN THEM

One key, both models, one line different.

from openai import OpenAI

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

# Try tts-1-hd
client.chat.completions.create(
    model="openai/tts-1-hd",
    messages=[{"role":"user","content":"hello"}],
)

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

Compare with another

Claude Opus 4.7 vs Speech 2.8 HD
anthropic/claude-opus-4.7 · minimax/speech-2.8-hd
Claude Opus 4.7 vs tts-1-hd
anthropic/claude-opus-4.7 · openai/tts-1-hd