Tạo video Veo3 bất đồng bộ qua POST /v1/videos trong CometAPI, trả về task id và hỗ trợ hướng dẫn first/last-frame cho các clip 8 giây.
curl --request POST \
--url https://api.cometapi.com/v1/videos \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'prompt=A paper kite floats above a field.' \
--form input_reference='@example-file'{
"created_at": 1773297229,
"id": "task_pa9CKKtYlTdxO7IIHOKKhXfjxEu4EQoR",
"model": "veo_3_1-4K",
"object": "video",
"progress": 0,
"seconds": "",
"size": "16x9",
"status": "queued"
}/v1/videos của CometAPI. Hãy chọn một alias Veo hiện tại từ trang Models khi thiết lập model.
input_referenceinput_referenceinput_reference theo đúng thứ tựPoll endpoint video dùng chung
veo-3.1-generate-preview. CometAPI giữ nguyên route dùng chung /v1/videos và phân giải một alias Veo hiện tại từ trang Models tại thời điểm request. Trong quá trình kiểm thử thực tế vào ngày 2026-03-12, một request với veo3-fast đã được chấp nhận và trả về một task id bất đồng bộ, và model trong response được phân giải thành provider model id thay vì lặp lại alias đã gửi.Bearer token authentication. Use your CometAPI key.
Text prompt for the video job.
"A paper kite floats above a field."
CometAPI Veo alias. Use a current Veo alias from the Models page. The response may resolve this alias to a provider model id.
"veo3-fast"
Orientation hint used by the wrapper. Use a landscape-like value such as 16x9 or a portrait-like value such as 9x16.
"16x9"
Optional image input. Send one file for image-to-video or two ordered files for first-frame and last-frame guidance.
curl --request POST \
--url https://api.cometapi.com/v1/videos \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'prompt=A paper kite floats above a field.' \
--form input_reference='@example-file'{
"created_at": 1773297229,
"id": "task_pa9CKKtYlTdxO7IIHOKKhXfjxEu4EQoR",
"model": "veo_3_1-4K",
"object": "video",
"progress": 0,
"seconds": "",
"size": "16x9",
"status": "queued"
}