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

# Runway Task Details

> Use DeerAPI to call the Runway Task Details endpoint with request details, response details, examples, and an OpenAPI playground.

## Overview

Use this endpoint to call the Runway Task Details workflow through DeerAPI. The API reference on this page shows the request schema, response schema, authentication requirements, and runnable examples for the configured endpoint.

## Before you start

Use the DeerAPI base URL and pass your API Key in the `Authorization` header:

```text theme={null}
https://api.deerapi.com
```

```text theme={null}
Authorization: Bearer $DEERAPI_KEY
```

## Model selection

Choose a current model ID from the [live pricing page](https://api.deerapi.com/pricing). Model availability changes over time, so avoid copying a model ID from an old project without checking the live list first.

## Implementation notes

* Use the OpenAPI playground for the exact request fields accepted by this endpoint.
* Keep API Keys on the server side when you build production applications.
* Log the request ID from failed calls so support can investigate the request.
* Retry `429`, `500`, and `503` responses with exponential backoff.


## OpenAPI

````yaml /api/openapi/video/runway/official/get-task-details.openapi.json GET /runwayml/v1/tasks/{id}
openapi: 3.1.0
info:
  title: Runway Task Status API
  version: 1.0.0
  description: Use this field according to the endpoint schema.
servers:
  - url: https://api.deerapi.com
security:
  - bearerAuth: []
paths:
  /runwayml/v1/tasks/{id}:
    get:
      summary: Runway Task Status API
      description: Use this field according to the endpoint schema.
      operationId: runway_official_get_task
      parameters:
        - name: id
          in: path
          required: true
          description: Use this field according to the endpoint schema.
          schema:
            type: string
        - name: X-Runway-Version
          in: header
          required: false
          description: Use this field according to the endpoint schema.
          schema:
            type: string
      responses:
        '200':
          description: Use this field according to the endpoint schema.
          content:
            application/json:
              schema:
                type: object
                required:
                  - id
                  - status
                properties:
                  id:
                    type: string
                    description: Use this field according to the endpoint schema.
                  status:
                    type: string
                    description: Use this field according to the endpoint schema.
                    enum:
                      - PENDING
                      - RUNNING
                      - SUCCEEDED
                      - FAILED
                  createdAt:
                    type: string
                    description: Use this field according to the endpoint schema.
                  output:
                    type: array
                    description: Use this field according to the endpoint schema.
                    items:
                      type: string
                  failure:
                    type: string
                    description: Use this field according to the endpoint schema.
                  progress:
                    type: number
                    description: Use this field according to the endpoint schema.
                example:
                  id: 4534fbe1-effa-4a12-b401-02923dace753
                  status: PENDING
                  createdAt: '2026-04-08T11:53:00+08:00'
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Use a DeerAPI API Key as a Bearer token.

````