Documentation Index
Fetch the complete documentation index at: https://apixo.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
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.| Capability | Value |
|---|---|
| Model ID | seedance-2-0-fast |
| Modes | text-to-video, first_and_last_frames, omni_reference |
| Prompt | Required, non-empty text |
| Resolution | 480p, 720p |
| Duration | 4-15 seconds, default 5 |
| Aspect ratios | auto, 16:9, 4:3, 1:1, 3:4, 9:16, 21:9 |
| Reference images | first_and_last_frames: 1-2 images; omni_reference: 1-9 images |
| Reference videos | omni_reference only, 1-3 videos, each 2-15 seconds, total up to 15 seconds |
| Reference audio | omni_reference only, 1-3 audio files, each 2-15 seconds, total up to 15 seconds |
| Audio and search | Optional generated audio and web search controls |
Endpoint and authentication
Base URL:| Method | Endpoint | Purpose |
|---|---|---|
POST | /generateTask/seedance-2-0-fast | Submit a generation task |
GET | /statusTask/seedance-2-0-fast?taskId={taskId} | Poll task status and retrieve results |
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
Result delivery mode. Use
async for polling with statusTask, or callback for webhook delivery.Required when
request_type is callback. Must be a public HTTPS URL that can receive the final task payload. See Webhooks.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:
API status code.
200 means the task was accepted.Human-readable status message.
Unique task identifier used with the status endpoint.
Status response fields
Unique task identifier.
Current task state:
pending, processing, success, or failed.JSON string containing the generated video URLs in
resultUrls. Present when state is success.Machine-readable failure code. Present when
state is failed.Human-readable failure message. Present when
state is failed.Task creation timestamp in Unix milliseconds.
Task completion timestamp in Unix milliseconds. Present after completion.
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.
| Configuration | APIXO price |
|---|---|
480p, without video reference | $0.076 / second |
480p, with video reference | $0.047 / second |
720p, without video reference | $0.156 / second |
720p, with video reference | $0.095 / second |
- 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.| Workflow | Typical generation time | Recommended first poll | Poll interval |
|---|---|---|---|
| Text-to-video | 3-6 minutes | 200-300s after task creation | 10-20s |
| First-and-last-frames | 3-6 minutes | 200-300s after task creation | 10-20s |
| Omni-reference | 3-6 minutes | 200-300s after task creation | 10-20s |
Errors and troubleshooting
HTTP errors
| Code | Meaning | What to do |
|---|---|---|
400 | Invalid request body, missing parameter, unsupported value, or invalid reference media | Fix the request before retrying |
401 | Missing or invalid API key | Check the Authorization header |
402 | Insufficient balance or quota | Add balance or switch account/key |
403 | Key or route cannot access the model | Check permissions and route strategy |
404 | Task not found | Check the taskId and model endpoint |
429 | Rate limit or concurrency limit reached | Retry with exponential backoff |
500 | Server error or unmapped provider failure | Retry with backoff |
502 | Upstream provider error | Retry with backoff |
504 | Upstream timeout | Retry or use callback mode for long-running jobs |
Common request validation errors
| Error | Meaning | What to do |
|---|---|---|
Missing required parameter | input, mode, prompt, or a mode-specific required field is missing | Add the required field |
Invalid parameter type | A field has the wrong JSON type | Use strings for text fields and URLs, booleans for sound and web_search, and integers for duration |
Invalid parameter value | A value is outside the supported set or range | Check mode, resolution, duration, aspect_ratio, and reference media durations |
Param length exceeded | Too many reference URLs were provided | Keep image_urls, video_urls, and audio_urls within the documented limits |
ImageNotAccess | A referenced URL could not be accessed | Use public, direct media URLs |
Task failure codes
| Fail code | Meaning | What to do |
|---|---|---|
PromptInvalid | Prompt or input was rejected by the provider | Adjust the prompt or references |
SensitiveContent | Input or output was flagged by safety checks | Change the prompt or input media |
RateLimited | Provider or account rate limit was reached | Retry with exponential backoff |
Timeout | Provider timed out | Retry later or use callback mode |
Unknown error | Provider returned an unmapped failure | Retry with backoff or contact support with the taskId |