MiniMaxPaidOperationalModerated
Speech 2.6 Hd
API model name: speech-2.6-hd
Speech 2.6 Hd is MiniMax's music generation model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Specifications
- Provider
- MiniMax
- Type
- music generation model
What is Speech 2.6 Hd used for?
- Music & audio generation — background tracks, jingles and soundscapes.
Related models
Abab5.5 ChatMiniMax · $0.73 / 1MAqaMiniMax · $57.41 / 1MBabbage 002MiniMax · $0.38 / 1MDeep Research Pro Preview 12MiniMax · $57.41 / 1MMAI DS R1MiniMax · $0.36 / 1MMimo V2 ProMiniMax · $0.27 / 1MMiniMax Hailuo 02MiniMax · $2.93 / 1MMiniMax Hailuo 2.3MiniMax · $2.93 / 1MMiniMax M2MiniMax · $0.66 / 1MMiniMax M2.1MiniMax · $0.66 / 1MMiniMax M2.1 LightningMiniMax · $0.33 / 1MMiniMax M2.5 LightningMiniMax · $0.33 / 1M
Speech 2.6 Hd — frequently asked questions
- How much does Speech 2.6 Hd cost?
- Speech 2.6 Hd is billed per generation rather than per token. See the pricing page for the current rate.
- What can Speech 2.6 Hd do?
- Speech 2.6 Hd is MiniMax's music generation model, accessible through the Api.Airforce API.
- Is Speech 2.6 Hd free to use?
- Speech 2.6 Hd is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Speech 2.6 Hd via the API?
- Speech 2.6 Hd is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID speech-2.6-hd with your Api.Airforce API key.
- Who makes Speech 2.6 Hd?
- Speech 2.6 Hd is MiniMax's music generation model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Speech 2.6 Hd via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass speech-2.6-hd as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "speech-2.6-hd",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="speech-2.6-hd",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "speech-2.6-hd",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);