Skip to Content
Video ModelsSeedance 1.0

Seedance 1.0

Overview

Seedance 1.0 is a high-quality video generation model that supports text-to-video generation. This model offers two versions: Lite and Pro, with different performance characteristics and pricing.

Test API KEY: key_00000000000000000000000000000000

Endpoints

1. Create Task

Request

POST https://api.pixwith.ai/api/task/create

Headers

HeaderValueRequired
Content-Typeapplication/jsonYes
Api-Key{API_KEY}Yes

Request Parameters

ParameterTypeRequiredDescription
promptstringYesThe input prompt (e.g., “A cat walking in the garden”)
model_idstringYes2-20 (Seedance 1.0 Lite) or 2-21 (Seedance 1.0 Pro)
optionsobjectYesConfiguration options for the task
options.prompt_optimizationbooleanYesIf true, all prompt words will be automatically translated into English.
options.num_outputsintYesNumber of videos to generate. Valid values: 1, 2, 3, 4. Default: 1.
options.aspect_ratiostringYesAspect ratio of the output. For Lite (2-20): '16:9', '4:3', '1:1', '3:4', '9:16', '9:21'. For Pro (2-21): '21:9', '16:9', '4:3', '1:1', '3:4', '9:16'. Default: '16:9'.
options.resolutionstringYesResolution of the output. Valid values: '480p', '720p', '1080p'. Default: '480p'.
options.durationintYesDuration in seconds. Valid values: 5, 10. Default: 5.
options.fix_camerabooleanYesIf true, the camera will be fixed during video generation. Default: false.

Example Request - Lite

{ "prompt": "A cat walking in the garden", "model_id": "2-20", "options": { "prompt_optimization": true, "num_outputs": 1, "aspect_ratio": "16:9", "resolution": "720p", "duration": 5, "fix_camera": false } }

Example Request - Pro

{ "prompt": "A cat walking in the garden", "model_id": "2-21", "options": { "prompt_optimization": true, "num_outputs": 1, "aspect_ratio": "16:9", "resolution": "1080p", "duration": 10, "fix_camera": true } }

Response Parameters

ParameterTypeDescription
codeint1=success, 0=error
messagestringSuccess and failure messages
dataobject
data.task_idstring
data.estimated_timeintEstimated time in seconds

Response

{ "code": 1, "message": "success", "data": { "task_id": "d425ab4dc256f0ebaa84862b9cea8a3d", "estimated_time": 180 } }

Pricing

Seedance 1.0 Lite (model_id: 2-20)

Resolution5 seconds10 seconds
480p10 credits20 credits
720p20 credits40 credits
1080p80 credits100 credits

Seedance 1.0 Pro (model_id: 2-21)

Resolution5 seconds10 seconds
480p15 credits25 credits
720p25 credits50 credits
1080p60 credits120 credits
Last updated on