CQTAI
Seedance 2 · Video

Image to VideoNEW

📌 What is thisTurn reference images into a moving video.
💡 When to useUse when you have an image and want it animated; prompt is optional when reference images drive it.

Endpoints

UsageMethodPath
Submit taskPOST/api/cqt/generator/seedance2
Query ResultGET/api/cqt/info/seedance2?id={taskId}
Recommended polling intervalVideo generation is slow (~1-4 min); poll every 15s until status = succeeded / failed.

Request Parameters

ParamTypeRequiredDescription
modelstringFixed seedance2
promptstringVideo description (optional for image-to-video)
imageUrlsarrayReference image URL array (<=2, must be publicly reachable)
firstFrameUrlstringFirst-frame image URL (optional)
lastFrameUrlstringLast-frame image URL (optional)
secondsintegerDuration (sec) 4-15, default 5
resolutionstringResolution 480p / 720p, default 720p
generateAudiobooleanWhether to generate audio, default false

Request Example

curl -X POST https://api.cqtai.com/api/cqt/generator/seedance2 \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "seedance2",
    "prompt": "make this photo come alive",
    "imageUrls": ["https://example.com/input.jpg"],
    "seconds": 5,
    "resolution": "720p",
    "generateAudio": false
  }'
# -> { "code":200, "data":"<taskId>" }

Response Example

{
  "code": 200,
  "data": {
    "id": "<taskId>",
    "status": "succeeded",
    "resultUrl": "https://.../result.mp4",
    "createTime": "2026-06-15 10:00:00",
    "completeTime": "2026-06-15 10:02:00"
  }
}

Response Fields

FieldTypeDescription
codenumberStatus code; 200 means success
msgstringStatus message; "success" on success
data.idstringTask ID (taskId); use it to poll GET /api/cqt/info
data.statusstringTask status: succeeded / failed / otherwise still processing
data.resultUrlstringURL of the generated video; returned when status = succeeded, null otherwise
data.errorMsgstring | nullFailure reason; null on success
data.createTimestringTask creation time
data.completeTimestring | nullTask completion time; null until finished

Billing & Credits

5 credits x duration (sec) (x your user rate). Auto-refunded on failure.