Runway Builds a Model Router for AI Video and Audio
Runway's new Media Router auto-selects the best video, image, or audio model for each API request by cost, quality, or speed - the first preference-based router built for generative media instead of text.

Pick a model, write a prompt, get a video back. That was the entire mental model of generative media APIs until this week. Runway just broke it on purpose.
On July 23, Runway announced Media Router, a routing layer inside its developer platform, Runway Dev, that picks which video, image, or audio model handles a request instead of making the developer choose. Set a preference for cost, quality, or latency, and the router scores the eligible models against it and calls the winner. Runway is calling it the first router built specifically for generative media rather than text.
TL;DR
- Runway Media Router auto-selects the best video, image, or audio model per request based on cost, quality, or latency preferences
- Live now for Runway's own Gen-4.5, Aleph 2.0, and Act-Two, plus third-party models including Seedance, GPT Image 2, and ElevenLabs
- Developers set price caps and allow/deny lists in Runway Dev, then call one endpoint instead of tracking every model's pricing and capability changes by hand
- No public pricing for the routing layer itself, and Runway alone decides which models even qualify to compete
What the Router Actually Does
Model routers are old news in the text world. OpenRouter, Martian, and half a dozen LLM gateways have offered cost- or latency-based routing across chat models for years. Generative media never got the same treatment, mostly because video, image, and audio models don't share a common output format the way text completions do, which makes automated quality scoring far harder to build.
Runway's answer is to route within a request's own modality and let its scoring system, built from the same internal team that curates model quality for Runway's Creative products, decide the winner.
The Three-Step Flow
A developer using Media Router does three things, according to Runway's API documentation:
- Create a routing config in the Runway Dev dashboard: a short, URL-friendly ID like
preview-fast, an allow or deny list of eligible models, an optional credit cap per modality, and one optimization preference (Cost, Latency, or Quality) - Send a generation request to one of three modality-specific endpoints,
POST /v1/generate/video,/v1/generate/image, or/v1/generate/audio, passing that config ID instead of a model name - Receive the result along with metadata showing which model got picked, the active preference, and the realized cost in credits
Runway's own Node.js SDK example for video generation looks like this:
const task = await client.generate.video.create({
configId: 'preview-fast',
input: {
referenceImages: [{
uri: 'https://upload.wikimedia.org/...',
role: 'first'
}],
promptText: 'A timelapse on a sunny day with clouds flying by',
aspectRatio: '16:9',
duration: 5
}
}).waitForTaskOutput();
Notice what's absent: no model field anywhere in the call. The router picks. Every request also supports a dryRun: true flag that returns the routing decision, including which model would have been selected and why, without generating any asset or spending credits. Runway's docs note dry-run calls still count against standard API rate limits, so it isn't free to audit at scale.
Runway Dev's landing page lists Adobe, Cloudflare, and ElevenLabs among the companies already building on its API platform.
Source: dev.runwayml.com
What Gets Filtered Before Scoring
Before any scoring happens, the router applies hard constraints in order: allow/deny eligibility first, then the per-modality credit cap. Runway's docs are explicit that "any model whose estimated cost for a given request would exceed that modality's ceiling is excluded before the optimization preference is applied." Only whatever survives both filters gets ranked against the single Cost, Latency, or Quality preference the developer chose. Runway hasn't published the scoring formula behind "Quality," so how it gets quantified across models from different vendors remains a black box from the outside.
The Models Behind the Curtain
Media Router launched with Runway's own frontier lineup and a set of third-party models bolted on through the same endpoint.
| Model | Vendor | Modality |
|---|---|---|
| Gen-4.5 | Runway | Video |
| Aleph 2.0 | Runway | Video |
| Act-Two | Runway | Video (performance capture) |
| Seedance | ByteDance | Video |
| GPT Image 2 | OpenAI | Image |
| ElevenLabs (unspecified model) | ElevenLabs | Audio |
That's a narrower roster than a pure aggregator like fal.ai, which lists dozens of image and video models with no preference-routing layer on top. Runway's pitch isn't breadth, it's that the router already knows which of a smaller set to call for a given job so developers stop babysitting model choice themselves.
Gen-4.5 held the top spot on the Artificial Analysis Text-to-Video Elo leaderboard at launch in December 2025 before Seedance 2.0 and Kling 3.0 passed it in early 2026, which makes Runway's decision to route some traffic toward a rival's model, Seedance, an unusually candid admission that its own model doesn't always win on merit.
Not the First Router, Just the First for Media
Runway's framing rests on the "first for generative media" distinction, and that claim holds up against direct competitors: OpenRouter, Martian, and Not Diamond all route text completions, not video or audio generations. But the underlying idea, an abstraction layer that hides model choice behind a preference knob, is a pattern the industry has been converging on since LLM routers went mainstream in 2025.
Runway's company blog post announcing Media Router, published July 23, 2026.
Source: runway.com
Runway CPO Anthony Maggio told TechCrunch the routing feature "fits into that overall promise of being the easiest one-stop shop for developers." Co-founder and co-CEO Anastasis Germanidis framed it as a byproduct of Runway's shift toward enterprise infrastructure: "the router is one way in which the benefits of that come to users." Neither executive addressed how Runway will keep the router's scoring current as third-party models change pricing or get deprecated, a maintenance burden that falls completely on Runway now instead of on each individual developer.
Where It Falls Short
The router only routes within a modality, not across one generation task that might benefit from mixing models, so a workflow needing both video and a voiceover still means two separate calls with two separate configs.
Runway hasn't published pricing for the router layer itself. Configs cap spend in credits, Runway's own billing unit, not raw dollars, and the API only reports "realized cost" after a request completes rather than a quote beforehand. Whether Runway takes an additional cut for making the routing decision is unclear from the announcement, and Runway didn't respond to that specific question in TechCrunch's reporting.
The model roster is also completely Runway's call. Nothing stops Runway from quietly weighting its own Gen-4.5 and Aleph models more favorably in the "quality" scoring dimension it alone defines and doesn't publish. A developer tuning for "quality" has no way to audit whether that score is honest or self-serving without running their own side-by-side comparisons, which defeats some of the point of routing in the first place.
And the third-party roster is thin at launch: three outside vendors (ByteDance, OpenAI, ElevenLabs) across three modalities is a start, not the wide market Runway will need if "one-stop shop" is the actual ambition. Compare that to how quickly OpenRouter scaled past a hundred text models once developers trusted the routing layer enough to stop caring which one answered.
Runway confirmed the router is live now at dev.runwayml.com for video, image, and audio requests, with no stated timeline for expanding the third-party model list beyond the three vendors named at launch.
Sources:
- Introducing Runway Media Router - Runway
- Runway launches AI model router as generative media gets crowded - TechCrunch
- Runway Media Router - GIGAZINE
- Runway launches Media Router that auto-picks AI media models - AI Weekly
- Runway introduces the world's first intelligent router for generative media - Zamin.uz
- Runway Dev API Documentation
