Skip to main content
POST
/
runway
/
feed
Poll a Runway reverse-format task
curl --request POST \
  --url https://api.cometapi.com/runway/feed \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "task_id": "3d957031-9a2a-45e2-9dc7-bc8513059c50"
}
'
{
  "code": "success",
  "message": "",
  "data": {
    "task_id": "3d957031-9a2a-45e2-9dc7-bc8513059c50",
    "action": "IMAGE_TO_VIDEO",
    "status": "QUEUED",
    "fail_reason": "",
    "submit_time": 1773366766,
    "start_time": 0,
    "finish_time": 0,
    "progress": "0%",
    "data": {
      "id": "3d957031-9a2a-45e2-9dc7-bc8513059c50",
      "status": "PENDING",
      "createdAt": "2026-03-13T09:52:46+08:00"
    }
  }
}
Use this endpoint after you create a Runway reverse-format task. It is the main polling step for /runway/pro/* workflows.

Check these fields first

  • Outer code and message for wrapper-level status
  • data.status and data.progress for task progress
  • Nested data.data for provider-side task metadata
  • Final asset fields such as video_url, poster, or related provider output when the task completes

Polling pattern

1

Create the reverse-format task first

Start with a reverse-format Runway page such as Generate, Image-to-Video, Video to Video Style Redraw, or Act-one Expression Migration.
2

Retry once if the task is not visible yet

Fresh task ids can briefly return task_not_exist. If that happens, wait a few seconds and poll again.
3

Continue polling until the task is terminal

Keep checking this endpoint until the wrapper status leaves queued or in-progress states and the provider metadata includes a usable output URL.
Live validation on 2026-03-13 confirmed that a fresh Runway task id first appeared through this endpoint after a short delay and then returned a wrapped payload with code: success and data.status: QUEUED.

Authorizations

Authorization
string
header
required

Bearer token authentication. Use your CometAPI key.

Headers

X-Runway-Version
string

Optional Runway version header, for example 2024-11-06.

Body

application/json
task_id
string
required

Runway task id returned by the create endpoint.

Response

200 - application/json

Current wrapper task state or not-yet-visible error.

code
string | null
required
message
string
required
data
object