Veo V2

Get Task Status

Poll the status of a video/image generation task. Use the task ID returned from any creation endpoint.

Status values

StatusDescription
processingTask is being processed
completedDone — file_urls contains the generated files
failedError — see error field for details. Credits are automatically refunded

Rate limit: 30 requests/minute

get/v2/veo/tasks/{id}

Path parameters

idstring required

Task ID received from a creation endpoint

Response

Task status

idstring

Task ID

promptstring

The prompt used for generation

file_urlsstring[]

URLs of the generated files (empty while processing)

status'processing' | 'completed' | 'failed'

Task status

errorstring

Error message (only present when status is failed)

created_atstring date-time

Timestamp when the task was created

Example response

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "prompt": "A cat walking on the beach at sunset",
  "file_urls": []
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.