import requests r = requests.post( "https://api.aimlapi.com/v1/tts", headers={"Authorization": "Bearer " + AIMLAPI_KEY}, json={ "model": "minimax/speech-2.6-turbo", "text": "Hello from AI/ML API" }, ) print(r.json()["audio"]) # URL to the generated audio
const r = await fetch("https://api.aimlapi.com/v1/tts", { method: "POST", headers: { Authorization: `Bearer ${process.env.AIMLAPI_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ "model": "minimax/speech-2.6-turbo", "text": "Hello from AI/ML API" }), }); const { audio } = await r.json(); console.log(audio); // URL to the generated audio
curl -X POST https://api.aimlapi.com/v1/tts \ -H "Authorization: Bearer $AIMLAPI_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"minimax/speech-2.6-turbo","text":"Hello from AI/ML API"}' # the JSON response contains "audio" — a URL to the generated speech
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Input | |
| Output | |
| Benchmark | Score | What it measures | Source | Retrieved |
|---|---|---|---|---|
| TTS Arena | 1128 (Elo) | Human preference Elo from blind pairwise listening comparisons of speech samples, measured independently by Artificial Analysis | Source | July 16, 2026 |
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
MiniMax Speech 2.6 Turbo This page | Speech synthesis | |||
| Speech synthesis | ||||
| Speech synthesis | ||||
| Speech synthesis | ||||
| Speech synthesis |
MiniMax Speech 2.6 Turbo takes text as input and returns audio.
MiniMax Speech 2.6 Turbo became available on January 5, 2026.
MiniMax Speech 2.6 Turbo is priced at $0.078 / 1M tokens.
MiniMax Speech 2.6 Turbo is billed per generation — a fixed charge per output rather than by prompt length.
MiniMax Speech 2.6 Turbo was built by MiniMax.
Send a request to https://api.aimlapi.com/v1/tts with minimax/speech-2.6-turbo as the model id.
Yes. MiniMax Speech 2.6 Turbo is served through AI/ML API, so the same key and endpoint format used for other models applies.
It supports text-to-speech generation across 40 languages.