# Query Video Task (Free

**Method**: `GET`
**Endpoint**: `/runwayml/v1/tasks/{task_id}`

## Request Parameters

### Path Parameters

```text
task_id
string
Required
```

### Header Parameters

```text
X-Runway-Version
string
Required
Example:
2024-11-06
Content-Type
string
Required
Example:
application/json
Authorization
string
Optional
Default Value:
Bearer {{YOUR_API_KEY}}
```

## Example Request

### Shell

```bash
curl --location --request GET '/runwayml/v1/tasks/' \
--header 'X-Runway-Version: 2024-11-06' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json'
```

## Response

### 🟢 200 Success

**Content Type**: `application/json`

#### Response Schema

```text
id
string
Required
status
string
Required
createdAt
string
Required
progress
number
Required
```

#### Example

```json
{
    "id": "be35be77-4dae-4f42-84b9-51002b248a9b",
    "status": "RUNNING",
    "createdAt": "2024-11-15T03:34:51.751Z",
    "progress": 0.275
}
```
