跳转到主要内容
POST
/
generate
/
k
/
veo3-image-to-video
Veo3 图像转视频
curl --request POST \
  --url https://api.sinancode.com/v1/generate/k/veo3-image-to-video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "aspectRatio": "16:9",
  "enableTranslation": true,
  "imageUrls": [
    "https://example.com/image1.jpg"
  ],
  "model": "veo3_fast",
  "prompt": "animate the scene with smooth camera movement",
  "seeds": 12345,
  "watermark": "my-watermark"
}'
{
  "task_id": "01234567-89ab-cdef-0123-456789abcdef"
}
从 1-2 张图片生成视频,支持单图动画和首尾帧过渡两种模式。

Authorizations

Authorization
string
header
required

请使用您的 API Token 进行认证

Body

application/json

Task parameters

imageUrls
string[]
required

图片 URL 列表(必填)- 用于视频生成的图片 URL 1张图片:从单张图片生成视频;2张图片:首尾帧生成视频

Required array length: 1 - 2 elements
Example:
["https://example.com/image1.jpg"]
prompt
string
required

提示词(必填)- 视频生成的文本描述

Example:

"animate the scene with smooth camera movement"

aspectRatio
enum<string>
default:16:9

宽高比(可选)- 视频宽高比,默认 16:9

可用选项:
16:9,
9:16,
Auto
Example:

"16:9"

enableTranslation
boolean
default:true

启用翻译(可选)- 启用翻译,默认 true

Example:

true

model
enum<string>
default:veo3_fast

模型(可选)- veo3(质量优先)或 veo3_fast(速度优先),默认 veo3_fast

可用选项:
veo3,
veo3_fast
Example:

"veo3_fast"

seeds
integer

随机种子(可选)- 范围 10000-99999

Required range: 10000 <= x <= 99999
Example:

12345

watermark
string

水印(可选)- 水印标识

Example:

"my-watermark"

Response

OK

task_id
string
required

Task ID

Example:

"01234567-89ab-cdef-0123-456789abcdef"