简体中文
cURL
curl --request POST \ --url https://api.veo3api.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": "9:16", "seeds": 123456 }'
{ "code": 200, "msg": "success", "data": { "taskId": "veo_task_abcdef123456" } }
使用 Veo3 AI 模型创建新的视频生成任务。
prompt
imageUrls
所有 API 都需要通过 Bearer Token 进行认证。
获取 API Key:
使用方法: 添加到请求头: Authorization: Bearer YOUR_API_KEY
请求成功
The response is of type object.
object