Overview
Seedance 2.0 Fast is a ByteDance video generation model for fast text-to-video, first-and-last-frame animation, and multimodal reference workflows. Use this page when you are ready to call the API after trying the model in the APIXO playground.Endpoint and authentication
Base URL:
All requests require your APIXO API key:
Copy-paste async quickstart
This minimal request submits a text-to-video task and returns ataskId.
taskId; you need it to poll for the final result.
Poll for result
resultJson after state becomes success:
Request body
Text-to-video
First-and-last-frames
Omni-reference
Parameters
string
default:"async"
required
Result delivery mode. Use
async for polling with statusTask, or callback for webhook delivery.string
Required when
request_type is callback. Must be a public HTTPS URL that can receive the final task payload. See Webhooks.object
required
Seedance 2.0 Fast input parameters.
Mode-specific constraints
text-to-videouses the prompt and generation settings only.first_and_last_framesrequiresimage_urlswith 1-2 images. The first image is the starting frame; the second image, when present, is the ending frame.omni_referencecan combineimage_urls,video_urls, andaudio_urls.omni_referencerequests with onlyaudio_urls, and no images or videos, are rejected.- Reference media must be publicly reachable URLs so the API can fetch or probe them.
Response format
Submit task response
POST /generateTask/seedance-2-0-fast returns a task ID when the task is accepted:
integer
API status code.
200 means the task was accepted.string
Human-readable status message.
string
Unique task identifier used with the status endpoint.
Status response fields
string
Unique task identifier.
string
Current task state:
pending, processing, success, or failed.string
JSON string containing the generated video URLs in
resultUrls. Present when state is success.string
Machine-readable failure code. Present when
state is failed.string
Human-readable failure message. Present when
state is failed.integer
Task creation timestamp in Unix milliseconds.
integer
Task completion timestamp in Unix milliseconds. Present after completion.
integer
Processing duration in milliseconds. Present after successful completion or when available from the task log.
Webhook callback mode
Use callback mode when your backend should receive the final result automatically instead of polling.Billing
Seedance 2.0 Fast is billed per second. The selectedresolution and whether omni_reference includes video_urls determine the unit price.
Billing formulas:
- Without video reference:
output duration seconds x per-second rate - With video reference:
(output duration seconds + total reference video seconds) x per-second rate
text-to-video and first_and_last_frames always use the “without video reference” rate. In omni_reference mode, “with video reference” applies only when video_urls is provided. Image and audio references do not add extra billable seconds.
For current route and market comparison pricing, see Pricing.
Latency and polling
Actual latency may vary by prompt complexity, reference media, provider route, and current queue load.
Result URLs can be temporary. Download generated videos promptly after task completion.
Errors and troubleshooting
HTTP errors
Common request validation errors
Task failure codes
See Error Codes for the full error reference.