Skip to main content
Back to API Platform

Seed Audio 1.0 API

ByteDance Seed Audio 1.0. Generate speech, voice clones, and full audio scenes (radio dramas, podcasts, narration) from a prompt. Integrate this model via REST with endpoint docs, parameters, and code examples.

Audio Generation
Credit Cost
0.1 credits/sec
Type
Audio

API Endpoint

POST
/api/v1/models/seed-audio/run

Test This Model

Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.

Parameters

Input parameters accepted by this model

ParameterTypeDefault
prompt
required
string
-
voice
string
-
audio_urls
array
-
image_url
url
-
output_format
enum
mp3
sample_rate
integer
24000
speed
number
1
volume
number
1
pitch
integer
0

Code Examples

Narration with a preset voice — copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/seed-audio/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Welcome to PixelDojo, where ideas become images.",
    "voice": "kian_en_zh"
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 1,
  "creditsRemaining": 95,
  "expiresAt": "2026-07-18T05:14:34Z"
}

Completed Response

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "audio": "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.mp3"
  },
  "creditCost": 1,
  "expiresAt": "2026-07-18T05:14:34Z"
}