Seed Audio 1.0 API

Seed Audio 1.0 is a non-streaming audio generation model for speech, sound effects, timbre control, and reference-guided audio creation.
Output
$0.00325 / sec
Released
Jun 29, 2026

How to use Seed Audio 1.0 API

Install any OpenAI-compatible SDK, point it at api.aimlapi.com/v1, and set the model to bytedance/seed-audio-1-0.
import requests

r = requests.post(
    "https://api.aimlapi.com/v1/tts",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "bytedance/seed-audio-1-0",
      "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": "bytedance/seed-audio-1-0",
    "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":"bytedance/seed-audio-1-0","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.

Seed Audio 1.0 API Pricing

TypePrice
Input
Output
$0.00325 / sec tokens

Start building with Seed Audio 1.0

Get API Key
1000+ models, one API.