POST /v1/video/generations 功能完全相同,为兼容 OpenAI Video API 格式而提供的别名路由。/v1/video/generations 完全一致。Authorization: ********************{
"model": "doubao-seedance-2-0-260128",
"prompt": "宇航员在月球表面漫步,地球悬挂在黑色星空中,宏大震撼的画面",
"image": "https://example.com/reference-image.jpg",
"seconds": "-1",
"metadata": {
"ratio": "16:9",
"resolution": "480p",
"seed": 42,
"watermark": false,
"camera_fixed": false,
"content": [
{
"type": "text",
"text": "宇航员站起身,回望地球",
"image_url": {
"url": "https://example.com/reference-photo.jpg"
},
"video_url": {
"url": "https://example.com/input-video-clip.mp4"
}
}
],
"return_last_frame": false,
"generate_audio": false,
"draft": false,
"service_tier": "default",
"callback_url": "https://your-server.com/webhook/video-callback"
}
}curl --location 'https://www.moxin.studio/v1/videos' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "doubao-seedance-2-0-260128",
"prompt": "宇航员在月球表面漫步,地球悬挂在黑色星空中,宏大震撼的画面",
"image": "https://example.com/reference-image.jpg",
"seconds": "-1",
"metadata": {
"ratio": "16:9",
"resolution": "480p",
"seed": 42,
"watermark": false,
"camera_fixed": false,
"content": [
{
"type": "text",
"text": "宇航员站起身,回望地球",
"image_url": {
"url": "https://example.com/reference-photo.jpg"
},
"video_url": {
"url": "https://example.com/input-video-clip.mp4"
}
}
],
"return_last_frame": false,
"generate_audio": false,
"draft": false,
"service_tier": "default",
"callback_url": "https://your-server.com/webhook/video-callback"
}
}'{
"id": "task_abc123def456",
"task_id": "task_abc123def456",
"object": "video",
"model": "doubao-seedance-2-0-260128",
"status": "queued",
"progress": 100,
"created_at": 1712345678,
"completed_at": 1712345900,
"expires_at": 1712432300,
"metadata": {
"url": "https://cdn.volcengineapi.com/videos/output-abc123.mp4"
},
"error": {
"code": "content_policy_violation",
"message": "请求内容违反了内容安全策略,请修改 prompt 后重试"
},
"remixed_from_video_id": "task_origin789ghi012"
}