Use CometAPI Veo3 Retrieve API (GET /v1/videos/) to fetch status, query metadata, or download Veo3 video generation results by video_id.
curl --request GET \
--url https://api.cometapi.com/v1/videos/{video_id} \
--header 'Authorization: Bearer <token>'{
"id": "task_pa9CKKtYlTdxO7IIHOKKhXfjxEu4EQoR",
"size": "16x9",
"model": "veo_3_1-4K",
"object": "video",
"status": "queued",
"task_id": "task_pa9CKKtYlTdxO7IIHOKKhXfjxEu4EQoR",
"progress": 0,
"created_at": 1773297229
}/v1/videos wrapper. It returns the current task state and the resolved backend model information CometAPI is using for the job.
Create the job first
id.Poll until the task is terminal
queued or in_progress and reaches a finished state./v1/videos wrapper and may show the resolved backend model id rather than the alias you submitted.Bearer token authentication. Use your CometAPI key.
Task id returned by the create endpoint.
curl --request GET \
--url https://api.cometapi.com/v1/videos/{video_id} \
--header 'Authorization: Bearer <token>'{
"id": "task_pa9CKKtYlTdxO7IIHOKKhXfjxEu4EQoR",
"size": "16x9",
"model": "veo_3_1-4K",
"object": "video",
"status": "queued",
"task_id": "task_pa9CKKtYlTdxO7IIHOKKhXfjxEu4EQoR",
"progress": 0,
"created_at": 1773297229
}