# Get video task status

`GET /v1/videos/{task_id}`

OpenAI-compatible endpoint for querying video task status.

Returns detailed status information for the video task.

## Authorizations

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

## Parameters

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

## Responses

### 200 — Video task status returned

```json
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "object": {
      "type": "string"
    },
    "model": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "progress": {
      "type": "integer"
    },
    "created_at": {
      "type": "integer"
    },
    "seconds": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "object",
    "model",
    "status",
    "progress",
    "created_at",
    "seconds"
  ]
}
```

### 404 — Task not found

```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
        }
      }
    }
  }
}
```
