LLM Gateway

Retrieve Video

Retrieves the current state of a video generation job.

GET
/v1/videos/{video_id}
AuthorizationBearer <token>

Bearer token authentication using API keys

In: header

Path Parameters

video_idstring

Response Body

application/json

curl -X GET "https://api.llmgateway.io/v1/videos/string"
{
  "id": "string",
  "object": "video",
  "model": "string",
  "status": "queued",
  "progress": 100,
  "created_at": 0,
  "completed_at": 0,
  "expires_at": 0,
  "error": {
    "code": "string",
    "message": "string",
    "details": null
  },
  "content": [
    {
      "type": "video",
      "url": "http://example.com",
      "mime_type": "string"
    }
  ]
}

How is this guide?

Last updated on