> ## Documentation Index
> Fetch the complete documentation index at: https://docs.heyaskr.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get video

> GET /v1/videos/{id}

Poll a video job until it completes.

```
GET https://api.heyaskr.ai/v1/videos/{id}
```

## Response

<ResponseField name="status" type="string">
  `pending`, `processing`, `completed`, or `failed`.
</ResponseField>

<ResponseField name="data" type="object">
  When completed, contains the video `url`.
</ResponseField>

```json theme={null}
{ "status": "completed", "data": { "url": "https://cdn.heyaskr.ai/videos/...mp4" } }
```

<Note>Poll every 5–10 seconds. You're only charged on success.</Note>
