Official format
Get a Runway task
Use CometAPI to call GET /runwayml/v1/tasks/ and fetch Runway video generation task status, progress, outputs, and metadata by task ID.
GET
Use this endpoint to inspect a Runway task by id.
Check these fields first
idfor the task identifierstatusfor the current task stateoutputfor finished asset URLs when the task succeedsfailureandfailureCodewhen the task fails
When to use it
- After calling an official-format Runway task creation page such as text-to-image, image-to-video, or video-to-video
Retry behavior
- A freshly created task may briefly return
task_not_exist - Wait a few seconds and retry before treating the task id as invalid
- Once the task is visible, continue polling this endpoint until it returns a terminal state or finished output.
Authorizations
Bearer token authentication. Use your CometAPI key.
Headers
Optional Runway version header, for example 2024-11-06.
Path Parameters
Runway task id returned by the create endpoint.
Response
200 - application/json
Current task state.
Task ID.
Task status.
Available options:
PENDING, RUNNING, SUCCEEDED, FAILED Task creation timestamp.
Output URLs returned after the task succeeds.
Failure reason returned after the task fails.
Failure code returned after the task fails.
Task progress.
Last modified on July 2, 2026