GET
/
v1
/
videos
/
{id}
curl -X GET "https://www.anyfast.ai/v1/videos/video_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "video_abc123",
  "status": "completed",
  "created_at": 1677652288,
  "output": {
    "video_url": "https://example.com/video.mp4"
  }
}

Query Task (Veo - OpenAI Format)

Query the status of a video generation task using the OpenAI-compatible format.

Endpoint

GET /v1/videos/{id}

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe video task ID
curl -X GET "https://www.anyfast.ai/v1/videos/video_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "video_abc123",
  "status": "completed",
  "created_at": 1677652288,
  "output": {
    "video_url": "https://example.com/video.mp4"
  }
}