简体中文
cURL
curl --request POST \ --url https://api.kie.ai/api/v1/veo/generate \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "prompt": "A dog playing in a park", "imageUrls": [ "http://example.com/image1.jpg" ], "model": "veo3", "watermark": "MyBrand", "callBackUrl": "http://your-callback-url.com/complete", "aspectRatio": "16:9", "seeds": 12345 }'
{ "code": 200, "msg": "success", "data": { "taskId": "veo_task_abcdef123456" } }
prompt
imageUrls
所有 API 都需要通过 Bearer Token 进行认证。
获取 API Key:
使用方法: 添加到请求头: Authorization: Bearer YOUR_API_KEY
注意:
请求成功
The response is of type object.
object