seedance-2.0, seedance-2.0-fast, and seedance-2.0-mini, then choose the workflow with operation.
Model Choice
seedance-2.0-fast and seedance-2.0-mini reject 1080p and 4k requests. Audio can be used only in supported reference workflows; pure audio-only and text-plus-audio-only Seedance requests are not supported.
Supported Operations
Volc-Compatible Seedance Endpoint
Use this endpoint when your existing system already builds Seedance requests with Volc-stylecontent[], REST task paths, or Action names, and you want to change the base URL and authentication without rewriting the request shape. For new cross-model video integrations, prefer AI Sonar’s unified /v1/videos/generations API.
Migration Flow
- Authenticate with
Authorization: Bearer <API_KEY>. Volc AK/SK signatures are not accepted in this version. - Create with REST
POST /api/v3/contents/generations/tasks, or with ActionPOST /api/v3?Action=CreateContentsGenerationsTasks&Version=2024-01-01. - Store the returned
cgt-...task ID and poll the task endpoint untilstatusissucceeded,failed,cancelled, orexpired. callback_urlis rejected for now, so do not rely on completion callbacks for this endpoint.
Request Body Notes
content[]acceptstext,image_url,video_url,audio_url, anddraft_taskitems.- For
image_url, omitroleor usefirst_framefor image-to-video; uselast_frametogether with a first frame; usereference_imagefor reference-to-video. - Image URLs are prepared as reusable AI Sonar materials when the selected Seedance model needs material references. If preparation takes longer than 60 seconds, the create request returns a retryable material-preparing error.
- Common generation fields include
model,ratio,duration,resolution,generate_audio,watermark,return_last_frame,seed,priority,execution_expires_after, andsafety_identifier.
Reference Pages
- Create Task (Volc Compatible)
- Get Task (Volc Compatible)
- List Tasks (Volc Compatible)
- Cancel Task (Volc Compatible)
Material Concepts
Seedance materials are reusable, organization-scoped references that can be selected later during video generation.
Keep
group_id and material asset id separate. group_id is for organizing uploads; material asset id is for video generation. If a video request returns Seedance material asset not found or not accessible, confirm that you passed a material asset id, not a group_id, and that the asset belongs to the same organization, is not deleted, and has status: "ACTIVE".
Automatic Image Materials
When the selected Seedance model can use the AI Sonar material library, you may send image URLs or supported inline data URLs directly inimage, image_url, image_urls, reference_images, start_image, or end_image. AI Sonar imports those images into the organization default virtual-avatar material group and keeps their role as first frame, last frame, or reference image.
If the material assets become ACTIVE within 60 seconds, generation continues in the same request. If not, the API returns 409 seedance_material_preparing with auto_material_asset_ids; list or get those assets until they are ACTIVE, then retry with material_asset_id or material_asset_ids. If the selected model cannot use the material library, ordinary image URL or data URL inputs stay on the regular image path; explicit material IDs return a material availability error. Existing virtual-avatar and real-person material IDs are used as-is and are not imported again.
Real-Person Material Verification
Use real-person material verification when your product needs consent and face verification before a real person can be used as a reusable Seedance reference.- Call Create Visual Validation Session with
CallbackURLand save the returnedResult.BytedToken. - Open
Result.H5Linkfor the person being verified. Appendlngto the H5 link when you need a specific language. - After the H5 flow completes, the browser opens
Result.CallbackURLwith official query names such asbytedTokenandresultCode. - Poll Get Visual Validation Result with
BytedTokenuntilResult.GroupIdis returned. - Store
GroupId; pass it asgroup_idwhen creatingliveness_facematerial assets.
BytedToken is valid for 30 minutes. Use the same ProjectName in both Action requests. Authentication uses Authorization: Bearer <API_KEY>; Volc AK/SK signing is not accepted.
Optional: use the test console to verify your request and callback flow, inspect material groups, and review verification history. Your production integration should call the APIs directly.
Creating Material Groups
Use Create Material Asset Group foraigc_avatar groups. New real-person groups are created through the verification flow so the verified person and the material group stay linked.
Use List Material Asset Groups, Get Material Asset Group, Update Material Asset Group, and Delete Material Asset Group to manage groups after they exist.
Deleting a material group also deletes the AI Sonar materials inside it and cannot be undone. If the AI Sonar material library cannot complete the deletion because the current authorization state does not allow it, AI Sonar returns a neutral material-library error.
Uploading Materials
Use Create Material Asset to import one publicly reachable source URL at a time. Foraigc_avatar, group_id is optional; AI Sonar uses or creates the organization default virtual-avatar group. For liveness_face, group_id is required and must be the group returned by Get Visual Validation Result.
AI Sonar validates the source URL, declared or detected media format, and file-size limit. Dimensions, aspect ratio, duration, resolution, total pixels, and FPS are passed through on a best-effort basis; the selected video service makes the final media eligibility decision.
Material ingestion is asynchronous. Poll Get Material Asset until
status becomes ACTIVE. A successful HTTP response only means the request was accepted; always read the business status. If the status is FAILED, inspect error_message, fix the source material, and create a new asset.
In create-material requests, asset_url is only the import source. AI Sonar returns a material asset id; use that id for generation instead of reusing the original URL.
Asset and group IDs use Volcengine-compatible shapes such as asset-20260720123456-qn7wr and group-20260720123456-vrt01, while remaining AI Sonar-owned mappings.
AI Sonar keeps material assets in your organization material library until you delete the asset or its material group.
For real-person material groups, one group maps to one real person. Uploads are checked against the verified face. Assets with multiple faces or a face that does not match the verified person can fail. For best results, upload both a full-body front reference image and a front-facing close-up where the face is clear.
Using Materials In Video Generation
After an asset isACTIVE, pass the returned AI Sonar asset id as material_asset_id, or include it in material_asset_ids, when calling Create Video. Material assets count toward Seedance reference limits.
API Examples
Create a virtual-avatar group, upload an image, poll until it is active, then use the material asset ID in a video request.Pricing And Async Results
Seedance 2.0 pricing depends on output resolution, input type, and model. Use the Pricing API or Models API before hard-coding product UI. Video generation is asynchronous. Follow thepoll_url returned by create requests, or use Get Task Status with the returned task ID.