RunwayML Gen4 Image model lets you generate precise images using up to 3 reference images to capture every angle and detail. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Siap

$0.05per run·~20 / $1

In a dusty, cluttered garage filled with old books and woodworking tools, a kind grandfather is bending over, his hands gently guiding his young grandson's hands as he learns to sand a small piece of wood with sandpaper. Afternoon sunlight slants in through the open garage door, creating a warm beam of light that illuminates the floating sawdust. The child's expression is a mixture of concentration and curiosity, while the grandfather's eyes are full of patience and love.

close-up photo of an elderly male watchmaker, his wrinkled face wearing a monocle loupe, intense focus in his eyes, repairing the intricate interior of an antique pocket watch. He is wearing a dark vest. The background is his dimly lit workshop, only a single warm yellow desk lamp illuminates his hands and the watch, tiny dust particles visible in the air. high-texture, shallow depth of field.

A photograph of the Scottish Highlands in the early morning, thick fog rolling over the green hills and ancient stone walls. The sun is just rising, casting golden sunbeams through the mist (crepuscular rays). a lone Highland cow with dew on its fur stands in the meadow. wide-angle shot, epic and serene atmosphere.

Food photography of a delicious brunch set on a rustic wooden table next to a window with soft morning light. On the plate are two golden-brown croissants with powdered sugar, next to a few fresh strawberries and blueberries. A steaming cup of latte with perfect latte art. macro shot, extremely detailed.

Action photograph of a female boxer during an intense training session in a gritty, dimly lit gym. She has just thrown a powerful right hook, and beads of sweat are flying off her brow. Her eyes show fierce determination, muscles tense and defined. The background is blurred with punching bags and a boxing ring. Dramatic side lighting highlights the contour of her body and the flying sweat droplets.

A mountain climber has just reached the summit of a snow-covered mountain at sunrise. He is wearing professional orange cold-weather gear and climbing equipment, his face a mixture of exhaustion and exhilaration. His breath forms a visible cloud of vapor in the frigid air. The background is a breathtaking panorama of sprawling mountain ranges and a sea of clouds, all tinted gold by the rising sun. Epic wide-angle shot, sense of scale.

In a modern operating room, a female surgeon wearing surgical loupes and a mask is performing a delicate procedure with intense focus. The bright, shadowless surgical lamp illuminates her eyes, which are sharp and steady. A slight sheen of sweat is visible on her forehead. In the background, monitors display vital signs, and various medical instruments are visible. Close-up shot, filled with tension and professionalism.

On a sunny spring afternoon, three young female friends are having a picnic on the grass in a park. They are sitting on a checkered picnic blanket, surrounded by a basket of fruit and some bread. One of the girls is telling a joke, causing the other two to laugh heartily and unreservedly. The sunlight filters through the leaves of a tree overhead, creating dappled, dancing spots of light on their hair and clothes. The image is full of youthful energy and genuine friendship.

At dawn, an old farmer with dark, weathered skin stands in his vegetable field. The early morning mist has not yet dissipated, blurring the distant fields. He wears a simple, old jacket, and his hands are soiled with earth as he gently touches a dew-covered leaf with his calloused palm. The faint light of the rising sun comes from behind him, creating a golden rim light around his figure.

Inside a cozy, sunlit flower shop, a young female owner is focused on trimming a fresh bouquet of roses. She wears a linen apron, her hair casually tied up, with a gentle smile on her face. She is surrounded by buckets of various flowers, green plants, and rolls of wrapping paper, creating a scene of organized chaos. Soft morning light streams through the large street-front window, making the texture and colors of the petals incredibly vibrant. In a cozy living room corner, a young woman is curled up in a soft armchair under a knitted blanket, peacefully reading a book. Warm afternoon sunlight streams generously through a large window, creating bright patches of light on the floor and visibly illuminating tiny dust motes dancing in the air. An orange tabby cat is curled up asleep by her feet. The entire scene exudes serenity, comfort, and a sense of peaceful contentment.
RunwayML Gen4 Image is a powerful text-to-image generation model from Runway that creates high-quality images from text descriptions. With optional reference image support, flexible aspect ratios, and resolution choices, it delivers stunning visuals for creative and professional projects.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the image you want to generate. |
| aspect_ratio | No | Output aspect ratio: 1:1, 16:9, 9:16, 4:3, 3:4 (default: 9:16). |
| resolution | No | Output resolution: 720p or 1080p (default: 1080p). |
| reference_images | No | Optional reference images to guide style or subject. |
| seed | No | Set for reproducibility; leave empty for random. |
| Aspect Ratio | Best For |
|---|---|
| 1:1 | Instagram posts, social media squares |
| 16:9 | YouTube thumbnails, widescreen displays |
| 9:16 | TikTok, Instagram Stories, mobile content |
| 4:3 | Classic format, presentations |
| 3:4 | Portrait photos, Pinterest |
| Resolution | Price per image |
|---|---|
| 720p | $0.05 |
| 1080p | $0.08 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/runwayml/gen4-image with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Gen4 Image below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/runwayml/gen4-image" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "4:3",
"resolution": "1080p",
"seed": 0,
"enable_base64_output": false
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("runwayml/gen4-image", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "4:3",
"resolution": "1080p",
"seed": 0,
"enable_base64_output": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"runwayml/gen4-image",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "4:3",
"resolution": "1080p",
"seed": 0,
"enable_base64_output": false
}
)
print(output["outputs"][0]) # → URL of the generated outputGen4 Image is a Runwayml model for image generation, exposed as a REST API on WaveSpeedAI. RunwayML Gen4 Image model lets you generate precise images using up to 3 reference images to capture every angle and detail. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/runwayml/runwayml-gen4-image.
Gen4 Image starts at $0.050 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `aspect_ratio`, `resolution`, `seed`, `reference_images`, `enable_base64_output`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/runwayml/runwayml-gen4-image.
Average end-to-end generation time on WaveSpeedAI is around 22 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (Runwayml). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.