Skip to main content

Overview

Seedance 1.5 Pro is a ByteDance video generation model for short text-to-video, image-to-video, and video extension workflows. Use this page when you are ready to call the API after trying the model in the APIXO playground.
CapabilityValue
Model IDseedance-1-5-pro
Modestext-to-video, image-to-video, video-extend
Prompt length3-2500 characters
Reference images1-2 URLs for image-to-video; the second image is used as the end frame
Source videoExactly 1 public video URL for video-extend
Aspect ratiosauto, 1:1, 3:4, 4:3, 9:16, 16:9, 21:9 for text-to-video and image-to-video
Resolutions480p, 720p, 1080p
Duration4-12 seconds; use 4, 8, or 12 for predictable tier matching
AudioRequired sound toggle
OutputGenerated or extended video URL in resultJson.resultUrls

Endpoint and authentication

Base URL:
MethodEndpointPurpose
POST/generateTask/seedance-1-5-proSubmit a generation task
GET/statusTask/seedance-1-5-pro?taskId={taskId}Poll task status and retrieve results
All requests require your APIXO API key:
Submit requests also require:

Copy-paste async quickstart

This minimal request submits a text-to-video task and returns a taskId.
Successful response:
Save the taskId; you need it to poll for the final result.

Poll for result

Processing response:
Success response:
Failed response:
Parse resultJson after state becomes success:

Request body

Text-to-video

Image-to-video

Video extend

Parameters

request_type
string
default:"async"
required
Result delivery mode. Use async for polling with statusTask, or callback for webhook delivery.
callback_url
string
Required when request_type is callback. Must be a public HTTPS URL that can receive the final task payload. See Webhooks.
input
object
required
Seedance 1.5 Pro input parameters.
Legacy fixed_lens is still accepted for compatibility, but new integrations should use camera_fixed.

Response format

Submit task response

POST /generateTask/seedance-1-5-pro returns a task ID when the task is accepted:
code
integer
API status code. 200 means the task was accepted.
message
string
Human-readable status message.
data.taskId
string
Unique task identifier used with the status endpoint.

Status response fields

taskId
string
Unique task identifier.
state
string
Current task state: pending, processing, success, or failed.
resultJson
string
JSON string containing the generated or extended video URLs. Present when state is success.
failCode
string
Machine-readable failure code. Present when state is failed.
failMsg
string
Human-readable failure message. Present when state is failed.
createTime
integer
Task creation timestamp in Unix milliseconds.
completeTime
integer
Task completion timestamp in Unix milliseconds. Present after completion.
costTime
integer
Processing duration in milliseconds. Present after completion when available.

Webhook callback mode

Use callback mode when your backend should receive the final result automatically instead of polling.
The callback payload uses the same unified response shape as the status endpoint when the task reaches a final state. See Webhooks for delivery requirements and retry behavior.

Billing

Seedance 1.5 Pro is billed per second. The selected resolution, duration, and sound value determine the total cost for all supported modes, including video-extend.
ResolutionsoundPrice
480pfalse$0.012 / second
480ptrue$0.024 / second
720pfalse$0.024 / second
720ptrue$0.048 / second
1080pfalse$0.052 / second
1080ptrue$0.104 / second
Total cost is the per-second price multiplied by the billable duration. For example, 720p with sound: false for 8 seconds costs $0.192. For current route and market comparison pricing, see Pricing.

Latency and polling

Actual latency may vary by prompt complexity, input media, mode, route selection, and current queue load. video-extend includes source clip analysis and final stitching, so it can take longer than direct text-to-video or image-to-video generation.
ModeDurationTypical generation timeRecommended first pollPoll interval
text-to-video, image-to-video4 seconds40s-60s40s after task creation5s-10s
text-to-video, image-to-video8 seconds60s-90s60s after task creation5s-10s
text-to-video, image-to-video12 seconds90s-120s90s after task creation5s-10s
video-extend4 seconds45s-75s45s after task creation5s-10s
video-extend8 seconds60s-110s60s after task creation5s-10s
video-extend12 seconds90s-150s90s after task creation5s-10s
Video generation can take time. For production workloads, use callback mode to avoid frequent polling.
Rate limits and concurrency can vary by account, API key, and route. If you receive 429, slow down requests and retry with backoff. For account-level details, see System APIs.

Errors and troubleshooting

HTTP errors

CodeMeaningWhat to do
400Invalid request body, missing required field, unsupported mode, unsupported resolution, invalid duration, malformed source URL array, or rejected prompt/mediaFix the request before retrying
401Missing or invalid API keyCheck the Authorization header
402Insufficient balance or quotaAdd balance or switch account/key
403Key or route cannot access the modelCheck permissions and route strategy
429Rate limit or concurrency limit reachedRetry with exponential backoff
500Server error or unmapped upstream errorRetry with backoff; contact support if it repeats
502Upstream errorRetry with backoff
504Upstream timeoutRetry or use callback mode for long-running jobs

Task failure codes

Fail codeMeaningWhat to do
MISSING_REQUIRED_PARAMA required field such as prompt, video_urls, resolution, duration, or sound is missingFix the request before retrying
INVALID_PARAMETEROne or more fields use an unsupported value or typeCheck mode, media URLs, resolution, duration, sound, camera_fixed, seed, and watermark
API_SERVICE_UNAVAILABLEVideo extension processing or generation is temporarily unavailableRetry later
PromptInvalidThe prompt was rejected or malformedRewrite the prompt and retry
SensitiveContentThe prompt or generated content violated upstream policyChange the prompt or reference media
ImageFormatIncorrectA reference image could not be acceptedUse a public JPG, PNG, or WebP image URL
RateLimitedThe upstream route rate limited the taskRetry later with backoff
TimeoutThe workflow did not finish in timeRetry, simplify the prompt, or use callback mode
InsufficientBalanceThe route could not continue because of balance or quotaAdd balance before retrying
Unknown errorThe failure did not match a known public mappingRetry or contact support with the taskId

Common validation fixes

SymptomFix
mode is rejectedUse text-to-video, image-to-video, or video-extend
image_urls is missing for image-to-videoProvide 1-2 public image URLs
video_urls is missing for video-extendSet input.mode to video-extend and provide exactly 1 public video URL
resolution is rejectedUse 480p, 720p, or 1080p
duration is rejectedSend an integer from 4 to 12
sound is rejectedSend a boolean: true or false
Prompt length errorKeep the trimmed prompt within 3-2500 characters
See Error Codes for the full error reference.