# Get video content

`GET /v1/videos/{task_id}/content`

Returns the video file of a completed video task.

This endpoint proxies the video file stream.

## Authorizations

Bearer authentication — send `Authorization: Bearer <token>`.

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `task_id` | path | string | yes | Video task ID |

## Responses

### 200 — Video content returned

`video/mp4`

```json
{
  "type": "string",
  "format": "binary"
}
```

### 404 — Video not found or not finished

```json
{
  "type": "object",
  "properties": {
    "error": {
      "type": "object",
      "properties": {
        "message": {
          "type": "string",
          "description": "Error message"
        },
        "type": {
          "type": "string",
          "description": "Error type"
        },
        "param": {
          "type": "string",
          "description": "Related parameter",
          "nullable": true
        },
        "code": {
          "type": "string",
          "description": "Error code",
          "nullable": true
        }
      }
    }
  }
}
```
