Skip to main content
POST
/
runwayml
/
v1
/
video_upscale
cURL
curl https://api.cometapi.com/runwayml/v1/video_upscale \
  -H "Authorization: Bearer $COMETAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "videoUri": "https://your-video-host/source.mp4",
      "model": "upscale_v1"
    }'
{
  "id": "<string>"
}
Use this endpoint to start a Runway upscaling task for an existing video asset.

Before you call it

  • Send the required X-Runway-Version header, for example 2024-11-06
  • Use model: upscale_v1
  • Provide a stable HTTPS videoUri
  • Expect a 4x upscale with a maximum edge size of 4096 pixels

Task flow

1

Submit the source video

Create the upscale task with your source clip URL.
2

Store the task id

Save the returned id for later status checks.
3

Poll for completion

Use Get a Runway task until the task finishes and the provider metadata exposes the final output.

When to use it

  • After your final edit render is approved
  • When you need a higher-resolution delivery asset instead of a faster preview

Authorizations

Authorization
string
header
required

Bearer token authentication. Use your CometAPI key.

Headers

X-Runway-Version
string
required

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

Body

application/json
videoUri
string
default:https://your-video-host/source.mp4
required

A HTTPS URL pointing to a video or a data URI containing a video.

model
string
default:upscale_v1
required

The model variant to use. Must be upscale_v1.

Response

200 - application/json

Task accepted.

id
string
required