curl --request POST \
--url https://api.vidgo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "seedance-1.5-pro",
"callback_url": "https://your-domain.com/callback",
"input": {
"prompt": "slow zoom, sunset glow",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 4,
"fixed_lens": false,
"generate_audio": true
}
}
'{
"code": 200,
"data": {
"task_id": "task-unified-1757165031-uyujaw3d",
"status": "not_started",
"created_time": "2025-11-12T10:30:00"
}
}Seedance
Seedance 1.5 Pro Video Generation
High-quality text-to-video and image-to-video generation with Seedance 1.5 Pro
POST
/
api
/
generate
/
submit
curl --request POST \
--url https://api.vidgo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "seedance-1.5-pro",
"callback_url": "https://your-domain.com/callback",
"input": {
"prompt": "slow zoom, sunset glow",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 4,
"fixed_lens": false,
"generate_audio": true
}
}
'{
"code": 200,
"data": {
"task_id": "task-unified-1757165031-uyujaw3d",
"status": "not_started",
"created_time": "2025-11-12T10:30:00"
}
}- After submission, a
task_idwill be returned. If you provided acallback_url, when the task status becomesfinishedorfailed, a POST request will be sent to thecallback_url. - Regardless of whether
callback_urlis provided, you can retrieve the response result through the unified Query Task Status endpoint.
Seedance 1.5 Pro Video Generation
Generate high-quality videos from text prompts or reference images using Seedance 1.5 Pro by ByteDance. Control aspect ratio, resolution, duration, and optional audio generation.Available Model
- seedance-1.5-pro - Text-to-video and image-to-video generation with enhanced fidelity
Key Features
- Flexible Modes: Supports text-to-video and image-to-video generation
- Aspect Ratio Control: Flexible output aspect ratios
- Resolution Control: Choose the target output resolution
- Duration Control: Set duration in seconds
- Fixed Lens: Lock the camera lens for steady framing
- Audio Generation: Optionally generate an audio track
Authorizations
All API endpoints require Bearer Token authentication
Get your API Key:
Visit the API Key Management Page to get your API Key
Add it to the request header:
Authorization: Bearer YOUR_API_KEY
Body
application/json