The Seedance 1.5 Pro Text To Video API generates high-quality videos from text prompts for enhanced control and creativity.
This API supports multiple resolutions, adaptive aspect ratios, and optional audio generation, making it ideal for creating professional video content from text descriptions.
taskId.Enum: application/json
Bearer authentication token. Example: Bearer {{APIKey}}.
Model version. Fixed value: seedance-1.5-pro.
Text prompt describing the video content to generate.
Video resolution. Available options: 480p, 720p, 1080p.
Aspect ratio. Default: adaptive (automatically adjusts based on content). Available options: adaptive, 16:9, 9:16, 1:1, 3:4, 4:3.
Random seed for reproducible results. Default: -1 (random seed).
Whether to generate audio for the video. Default: false.
Returns 0 for success, or a specific error code.
Returns "success" or a descriptive error message.
The unique identifier for the task. Use this ID with the Polling API to retrieve the generated output.
Use the Polling API to retrieve the processing results.
Alternatively, you can enable Callback to receive task results automatically upon completion.
{
"code": 0,
"message": "success",
"data": {
"task": {
"taskId": "b08337dc08d7428daa64b3d5e61b8350",
"status": 3,
"executionTime": 468854,
"expire": 1778311264178,
"taskType": "seedance_1.5_pro"
},
"videos": [
{
"videoType": "mp4",
"videoUrl": "https://dreamface-resource-aigc.oss-us-east-1.aliyuncs.com/dreamapi/o/2026-01-20/a96a1b03307a4a28b7bbf5f771c6322d.mp4"
}
]
}
}curl -X POST 'https://api.newportai.com/api/async/seedance_1.5_pro' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {{key}}' \
-d '{
"model": "seedance-1.5-pro",
"prompt": "A girl dancing in a park on a sunny day with trees and benches in the background",
"resolution": "720p",
"ratio": "adaptive",
"seed": -1,
"generateAudio": false
}'{
"code": 0,
"message": "success",
"data": {
"taskId": "b08337dc08d7428daa64b3d5e61b8350"
}
}