HomeModels › MiniMax Speech 2.8 HD
MiniMax · Speech 2.8 HD · Just Added

MiniMax Speech 2.8 HD API

MiniMax's latest flagship text-to-speech model, exposed through NovAI's OpenAI-compatible /v1/audio/speech endpoint — studio-grade voices with emotion control and 32kHz output, billed by real token usage with zero platform fee.

$1.54 / 1M
Token rate
≈$0.054
Per 1K chars (ref)
32kHz
Sample rate
$0
Platform fee
Sign Up - Get $2.00 Free Credit See All Pricing

Why use MiniMax Speech 2.8 HD on NovAI?

  • Latest flagship TTS - MiniMax Speech 2.8 HD, studio-grade fidelity
  • Emotion control - expressive, natural prosody per voice
  • 32kHz audio - high-quality output sample rate
  • URL or binary - response_format=url for a link, mp3/wav/opus for bytes
  • Fine-grained control - speed, volume, pitch and emotion parameters
  • Token billing - pay only for real upstream token usage

Best use cases

  • Audiobook and podcast narration
  • IVR and voice-assistant responses
  • Video voice-over and dubbing
  • Accessibility / screen-reader voices
  • Premium branded voice experiences

Quick start

cURL — return an audio URL

curl https://aiapi-pro.com/v1/audio/speech \
  -H "Authorization: Bearer $NOVAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "minimax-speech-2.8-hd",
    "input": "Hello! Welcome to NovAI - one API key for every Chinese frontier model.",
    "voice": "male-qn-qingse",
    "response_format": "url"
  }'

Python (OpenAI SDK) — binary audio bytes

from openai import OpenAI
client = OpenAI(
    base_url="https://aiapi-pro.com/v1",
    api_key="YOUR_NOVAI_API_KEY",
)
resp = client.audio.speech.create(
    model="minimax-speech-2.8-hd",
    voice="male-qn-qingse",
    input="Hello! Welcome to NovAI - one API key for every Chinese frontier model.",
)
resp.stream_to_file("speech.mp3")

Billed by real upstream token usage (usage.total_tokens × $1.54 / 1M). Set response_format to mp3/wav/opus… for binary bytes (default), or url for a JSON body with audio_url (valid ~24h). Optional: speed, volume, pitch, emotion; default voice male-qn-qingse.

Try MiniMax Speech 2.8 HD today

Zero platform fee. Credits never expire. OpenAI-compatible API.

Sign Up Free