YepAPI
AI Models

Runway Gen-4.5

Runway Gen-4.5. 720p AI video generation, 2-10 seconds, with first-frame image support.

POST/v1/media/queue
from $0.25/second

Overview

Runway Gen-4.5 — 720p video generation with first-frame image support. Async operation — submit a job, poll for completion.

PropertyValue
Model IDrunway/gen-4.5
ProviderRunway
Resolutions720p
Aspect Ratios16:9, 9:16
Duration2–10 seconds
Audio GenerationNot supported
BillingDynamic (actual cost per job)
Pricingfrom $0.25/second

Usage

All media models use the async job queue. Submit a job, then poll for the result.

Step 1: Submit Job

Text-to-Video

const res = await fetch('https://api.yepapi.com/v1/media/queue', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    model: 'runway/gen-4.5',
    prompt: 'A cinematic drone shot over a rugged coastline at golden hour',
    options: {
      aspectRatio: '16:9',
      duration: '5',
    },
  }),
});
const { data } = await res.json();
// data.jobId — use this to poll for results
curl -X POST https://api.yepapi.com/v1/media/queue \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "runway/gen-4.5", "prompt": "A cinematic drone shot over a rugged coastline", "options": {"aspectRatio": "16:9", "duration": "5"}}'

Image-to-Video

Pass a reference image via imageData to generate a video from a still image.

const res = await fetch('https://api.yepapi.com/v1/media/queue', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    model: 'runway/gen-4.5',
    prompt: 'Animate this scene — clouds drifting, light changing',
    options: {
      aspectRatio: '16:9',
      duration: '5',
    },
    imageData: {
      mimeType: 'image/jpeg',
      base64: '...', // Base64-encoded image
    },
  }),
});

Step 2: Poll for Result

const status = await fetch(`https://api.yepapi.com/v1/media/status/${data.jobId}`, {
  headers: { 'x-api-key': 'YOUR_API_KEY' },
});
const { data: job } = await status.json();
// job.status — "pending" | "processing" | "completed" | "failed"
// job.result.video — { mimeType, base64 } when completed
curl https://api.yepapi.com/v1/media/status/JOB_ID \
  -H "x-api-key: YOUR_API_KEY"

Request Body

ParameterTypeRequiredDescriptionDefault
modelstringYesrunway/gen-4.5 or aliases runway, runway-gen
promptstringYesText description of the video to generate
options.aspectRatiostringNoOne of: 16:9, 9:1616:9
options.resolutionstringNo720p720p
options.durationstringNo2 to 10 (seconds)5
options.imageRolestringNoHow to use the input image: first_framefirst_frame
imageData.mimeTypestringNoMIME type of input image (image/png, image/jpeg, image/webp)
imageData.base64stringNoBase64-encoded input image for image-to-video generation

Pricing

TierCost/sec
All resolutions$0.25

Example: 5-second video ≈ 5 x $0.25 = $1.25. Billing is dynamic — each job is billed from the actual cost of the finished video, so shorter or lower-resolution jobs cost less.

Info

Video jobs can take several minutes to complete. Results retained for 1 hour.

Under the Hood

Powered by Runway's Runway Gen-4.5 via our AI provider. 100% margin on upstream costs.

On this page