SunoPaidOperationalModerated
Suno Music Open
API model name: suno_music_open
Suno Music Open is Suno'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
- Suno
- Type
- music generation model
What is Suno Music Open used for?
- Music & audio generation — background tracks, jingles and soundscapes.
Related models
Suno UploadsSuno · $2.75 / 1MSuno V4.5Suno · FreeSuno V5Suno · FreeSuno V5.5Suno · FreeQwen3 Vl 30b A3b InstructAlibaba · $0.20 / 1MQwen3 Vl 32b InstructAlibaba · $0.57 / 1MQwen3 Vl 8b InstructAlibaba · $0.14 / 1MSora Video2OpenAI · $406.66 / 1MSora Video2 ProOpenAI · $1,355.55 / 1MSpeech 02 HdMiniMax · $2.93 / 1MSpeech 02 TurboMiniMax · $2.93 / 1MSpeech 2.6 HdMiniMax · $2.93 / 1M
Suno Music Open — frequently asked questions
- How much does Suno Music Open cost?
- Suno Music Open is billed per generation rather than per token. See the pricing page for the current rate.
- What can Suno Music Open do?
- Suno Music Open is Suno's music generation model, accessible through the Api.Airforce API.
- Is Suno Music Open free to use?
- Suno Music Open is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Suno Music Open via the API?
- Suno Music Open is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID suno_music_open with your Api.Airforce API key.
- Who makes Suno Music Open?
- Suno Music Open is Suno'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 Suno Music Open via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass suno_music_open as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "suno_music_open",
"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="suno_music_open",
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: "suno_music_open",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);