Create Seedance 2.5 — Text To Video
curl --request POST \
--url https://api.apisale.ai/v1/run/bytedance/seedance-2.5/text-to-video \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"input": {
"prompt": "Cinematic aerial glide over a neon-soaked megacity at blue hour, wet glass towers, volumetric god rays, slow forward push, IMAX anamorphic, no text",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "16:9",
"bitrate_mode": "standard",
"generate_audio": true
}
}
'import requests
url = "https://api.apisale.ai/v1/run/bytedance/seedance-2.5/text-to-video"
payload = { "input": {
"prompt": "Cinematic aerial glide over a neon-soaked megacity at blue hour, wet glass towers, volumetric god rays, slow forward push, IMAX anamorphic, no text",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "16:9",
"bitrate_mode": "standard",
"generate_audio": True
} }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
input: {
prompt: 'Cinematic aerial glide over a neon-soaked megacity at blue hour, wet glass towers, volumetric god rays, slow forward push, IMAX anamorphic, no text',
duration: '5',
resolution: '720p',
aspect_ratio: '16:9',
bitrate_mode: 'standard',
generate_audio: true
}
})
};
fetch('https://api.apisale.ai/v1/run/bytedance/seedance-2.5/text-to-video', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"run_id": "<string>",
"endpoint": "<string>",
"model": "<string>",
"capability": "<string>",
"mode": "<string>",
"status": "queued",
"created_at": "2023-11-07T05:31:56Z",
"output": {},
"error": {
"type": "<string>",
"code": 123,
"message": "<string>"
},
"billing": {
"amount": "<string>",
"currency": "usd"
},
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"elapsed_ms": 123
}Bytedance
Seedance 2.5 — Text To Video
ByteDance Seedance 2.5 — unified multimodal reference-to-video; up to 30s, 480p–1080p, native audio. Optimized for text to video via apisale.
POST
/
v1
/
run
/
bytedance
/
seedance-2.5
/
text-to-video
Create Seedance 2.5 — Text To Video
curl --request POST \
--url https://api.apisale.ai/v1/run/bytedance/seedance-2.5/text-to-video \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"input": {
"prompt": "Cinematic aerial glide over a neon-soaked megacity at blue hour, wet glass towers, volumetric god rays, slow forward push, IMAX anamorphic, no text",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "16:9",
"bitrate_mode": "standard",
"generate_audio": true
}
}
'import requests
url = "https://api.apisale.ai/v1/run/bytedance/seedance-2.5/text-to-video"
payload = { "input": {
"prompt": "Cinematic aerial glide over a neon-soaked megacity at blue hour, wet glass towers, volumetric god rays, slow forward push, IMAX anamorphic, no text",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "16:9",
"bitrate_mode": "standard",
"generate_audio": True
} }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
input: {
prompt: 'Cinematic aerial glide over a neon-soaked megacity at blue hour, wet glass towers, volumetric god rays, slow forward push, IMAX anamorphic, no text',
duration: '5',
resolution: '720p',
aspect_ratio: '16:9',
bitrate_mode: 'standard',
generate_audio: true
}
})
};
fetch('https://api.apisale.ai/v1/run/bytedance/seedance-2.5/text-to-video', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"run_id": "<string>",
"endpoint": "<string>",
"model": "<string>",
"capability": "<string>",
"mode": "<string>",
"status": "queued",
"created_at": "2023-11-07T05:31:56Z",
"output": {},
"error": {
"type": "<string>",
"code": 123,
"message": "<string>"
},
"billing": {
"amount": "<string>",
"currency": "usd"
},
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"elapsed_ms": 123
}Overview
ByteDance Seedance 2.5 — unified multimodal reference-to-video; up to 30s, 480p–1080p, native audio. Optimized for text to video via apisale.Docs = API contract + Try it (snapshot). Explore = browser playground. Model page = product examples.
Endpoint
POST https://api.apisale.ai/v1/run/bytedance/seedance-2.5/text-to-video
| Model slug | bytedance/seedance-2.5/text-to-video |
| Category | Text to Video (text-to-video) |
| Lab | Bytedance |
| Mode | async |
Pricing
From $0.072/sec apisale price is 30% below the vendor’s official list price.| Tier | Unit | Official price | apisale price |
|---|---|---|---|
| 480p | second | $0.103 | $0.072 |
| 720p | second | $0.231 | $0.162 |
| 1080p | second | $0.569 | $0.398 |
Official price = vendor list price. apisale price = what you pay through apisale.
Request
{
"input": {
"prompt": "Cinematic aerial glide over a neon-soaked megacity at blue hour, wet glass towers, volumetric god rays, slow forward push, IMAX anamorphic, no text",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "16:9",
"bitrate_mode": "standard",
"generate_audio": true
}
}
Parameters
Fields marked * are required. UseAuthorization: Key YOUR_API_KEY for REST.
string
required
Text prompt for video generation.
string
Duration in seconds (4-30), or auto to let the model decide. Default:
auto Values: auto, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30string
Default:
720p Values: 480p, 720p, 1080pstring
Optional end-user identifier for abuse tracking.
string
Default:
auto Values: auto, 21:9, 16:9, 4:3, 1:1, 3:4, 9:16string
high produces a higher-quality, larger-file encode. Default:
standard Values: standard, highboolean
Generate synchronized audio; cost is the same either way. Default:
truestring
Optional HTTPS webhook when the run reaches a terminal state.
boolean
Block until completion (same Run response shape).
Input schema
Input schema
{
"params": {
"prompt": {
"type": "string",
"required": true,
"max_length": 2000,
"description": "Text prompt for video generation."
},
"duration": {
"type": "enum",
"values": [
"auto",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20",
"21",
"22",
"23",
"24",
"25",
"26",
"27",
"28",
"29",
"30"
],
"default": "auto",
"description": "Duration in seconds (4-30), or auto to let the model decide."
},
"resolution": {
"type": "enum",
"values": [
"480p",
"720p",
"1080p"
],
"default": "720p"
},
"end_user_id": {
"type": "string",
"description": "Optional end-user identifier for abuse tracking."
},
"aspect_ratio": {
"type": "enum",
"values": [
"auto",
"21:9",
"16:9",
"4:3",
"1:1",
"3:4",
"9:16"
],
"default": "auto"
},
"bitrate_mode": {
"type": "enum",
"values": [
"standard",
"high"
],
"default": "standard",
"description": "high produces a higher-quality, larger-file encode."
},
"generate_audio": {
"type": "bool",
"default": true,
"description": "Generate synchronized audio; cost is the same either way."
}
}
}
Submit response
Returns a Run withrun_id. Poll with GET /v1/runs/{run_id} or use Try it above.
string
required
Unique run ID — save for polling and webhooks.
string
required
queued (async) or terminal state for sync runs.object
Result when
status is succeeded — see Output schema below.Example (async submit)
{
"run_id": "run_550e8400-e29b-41d4-a716-446655440000",
"endpoint": "bytedance/seedance-2.5/text-to-video",
"model": "text-to-video",
"capability": "video",
"mode": "text-to-video",
"status": "queued",
"output": null,
"error": null,
"billing": null,
"created_at": "2026-06-27T12:00:00.000Z",
"started_at": null,
"completed_at": null,
"elapsed_ms": null
}
Output
Whenstatus is succeeded, output follows this schema:
Output schema
Output schema
{
"type": "object",
"example": {
"videos": [
{
"url": "https://example.com/out.mp4",
"content_type": "video/mp4"
}
]
},
"required": [
"videos"
],
"properties": {
"videos": {
"type": "array",
"items": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
},
"file_name": {
"type": "string"
},
"content_type": {
"type": "string"
}
}
}
}
},
"description": "Succeeded task output: single video URL."
}
Example
curl -X POST "https://api.apisale.ai/v1/run/bytedance/seedance-2.5/text-to-video" \
-H "Authorization: Key YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": {
"prompt": "Cinematic aerial glide over a neon-soaked megacity at blue hour, wet glass towers, volumetric god rays, slow forward push, IMAX anamorphic, no text",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "16:9",
"bitrate_mode": "standard",
"generate_audio": true
}
}'
Related
Authorizations
Key sk-... (native REST) or Bearer sk-... (vendor SDKs)
Body
application/json
Show child attributes
Show child attributes
Example:
{
"prompt": "Cinematic aerial glide over a neon-soaked megacity at blue hour, wet glass towers, volumetric god rays, slow forward push, IMAX anamorphic, no text",
"duration": "5",
"resolution": "720p",
"aspect_ratio": "16:9",
"bitrate_mode": "standard",
"generate_audio": true
}
Response
201 - application/json
Run accepted
Unique run identifier
Model slug
Available options:
queued, processing, succeeded, failed, timeout, cancelled Show child attributes
Show child attributes
Show child attributes
Show child attributes
