models/ByteDance/Bytedance Seed Audio 1.0
ByteDance

Bytedance Seed Audio 1.0

music
Compare
MODALITIES
text

Bytedance Seed Audio 1.0 (bytedance/seed-audio-1.0) is a music model from ByteDance. Pricing via AIgateway: $0.188 per minute. Call it via https://api.aigateway.sh/v1/audio/music — set model="bytedance/seed-audio-1.0".

model · bytedance/seed-audio-1.0

Use this model

model: bytedance/seed-audio-1.0
curl https://api.aigateway.sh/v1/audio/music \
  -H "Authorization: Bearer $AIGATEWAY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"bytedance/seed-audio-1.0","prompt":"lo-fi piano with light rain","duration":15}'
API schema

Call Bytedance Seed Audio 1.0 from any OpenAI SDK

POST https://api.aigateway.sh/v1/audio/music·Content-Type: application/json·Auth: Bearer sk-aig-...

Request body

json
{
  "model": "bytedance/seed-audio-1.0",
  "prompt": "Calm lo-fi instrumental, warm Rhodes, vinyl crackle",
  "is_instrumental": true,     // omit and pass "lyrics" for a vocal track
  "duration": 15,             // seconds — honored, clamped to this model's range
}

// Response is an async job — poll /v1/jobs/<id> until status === "completed".

Response

json
{
  "id": "job_abc123",
  "status": "queued",
  "model": "bytedance/seed-audio-1.0",
  "created": 1776947082
}

// After completion:
{
  "id": "job_abc123",
  "status": "completed",
  "result": {
    "url": "https://media.aigateway.sh/music/abc123.mp3",
    "duration": 30
  }
}

Quickstart

# See docs at https://aigateway.sh/docs

Errors

401authentication_errorInvalid or missing API key
402insufficient_creditsWallet empty (PAYG only)
404not_foundUnknown model or endpoint
429rate_limit_errorOver per-minute limit — see Retry-After header
500server_errorUpstream provider failed (retryable)
503service_unavailableUpstream saturated (retryable)
Full docs →API reference →OpenAPI spec →llms.txt →

Frequently asked questions

What is Bytedance Seed Audio 1.0?
undefined It is a music model from ByteDance, accessible via AIgateway's OpenAI-compatible API at slug bytedance/seed-audio-1.0.
How much does Bytedance Seed Audio 1.0 cost via AIgateway?
$0.1875 per minute of audio, billed pass-through.
How do I call Bytedance Seed Audio 1.0 from my code?
Point the OpenAI SDK at https://api.aigateway.sh/v1 with your AIgateway key and set model to "bytedance/seed-audio-1.0". The request and response shapes match OpenAI exactly.
Does Bytedance Seed Audio 1.0 support streaming, tool calling, vision, and JSON mode?
Streaming — no. Tool calling — no. Vision — no. JSON mode — no. Prompt caching — no.
Can I bring my own ByteDance API key (BYOK)?
Yes. Attach a ByteDance key in your AIgateway dashboard and this model flips to pass-through — you pay ByteDance directly and AIgateway adds no platform fee on those calls.