GET
/
veo
/
video
/
{taskId}
curl -X GET https://www.anyfast.ai/veo/video/task_123456 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "task_id": "task_123456",
  "status": "completed",
  "video_url": "https://example.com/video.mp4",
  "created_at": "2024-01-01T00:00:00Z",
  "completed_at": "2024-01-01T00:05:00Z"
}
Query the status of a Veo video generation task.

Path Parameters

taskId
string
required
Task ID returned from the create video endpoint.
curl -X GET https://www.anyfast.ai/veo/video/task_123456 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "task_id": "task_123456",
  "status": "completed",
  "video_url": "https://example.com/video.mp4",
  "created_at": "2024-01-01T00:00:00Z",
  "completed_at": "2024-01-01T00:05:00Z"
}