# Runway Gen-4 Image Turbo > Gen-4 Image Turbo is cheaper and 2.5x faster than Gen-4 Image. An image model with references, use up to 3 reference images to create the exact image you need. Capture every angle. - **Provider**: replicate - **Model ID**: runwayml/gen4-image-turbo - **Category**: face_image_generation - **Credits**: 70 per request - **Pricing Type**: fixed ## API Endpoint Base URL: https://api.core.today/v1 ### Create Prediction POST /predictions ### Get Status GET /predictions/{job_id} ### Cancel DELETE /predictions/{job_id} ## Authentication Header: `X-API-Key: YOUR_API_KEY` ## Input Parameters - `resolution` (string, optional): Image resolution (Default: `1080p`; Options: `720p`, `1080p`) - `aspect_ratio` (string, optional): Image aspect ratio (Default: `16:9`; Options: `16:9`, `9:16`, `4:3`, `3:4`, `1:1`, `21:9`) - `reference_images` (array, optional): You must give at least one reference image. Up to 3 reference images are supported. Images must be between 0.5 and 2 aspect ratio. (Default: `[]`) - `prompt` (string, **required**): Text prompt for image generation - `reference_tags` (array, optional): An optional tag for each of your reference images. Tags must be alphanumeric and start with a letter. You can reference them in your prompt using @tag_name. Tags must be between 3 and 15 characters. (Default: `[]`) - `seed` (integer, optional): Random seed. Set for reproducible generation ## Example Request ```json { "model": "runwayml/gen4-image-turbo", "input": { "aspect_ratio": "4:3", "prompt": "a close up portrait of @woman and @man driving fast in a red 1980s sports car", "resolution": "1080p", "reference_tags": [ "woman", "man" ], "reference_images": [ "https://replicate.delivery/pbxt/NW3jTsbeAGmmIdOvQ5Ks2Dh6wAWAwBj9FLup7GmkmKZIzVp7/w99em95b01rmc0cqrny8chf49w-1.jpg", "https://replicate.delivery/pbxt/NW3jTS88toyUUsCurdKfDgWVfXLXWmBsGbbG6jipbMFgpyT2/psjdbkzgm1rmc0cqrnysbg93cm.jpg" ] } } ``` ## Response Format ```json { "job_id": "abc123", "status": "pending", "provider": "replicate", "model": "black-forest-labs/flux-schnell", "created_at": "2026-01-01T00:00:00Z", "result": null, "error": null } ``` Status values: `pending`, `processing`, `completed`, `failed`, `cancelled` ## Usage Flow 1. POST /predictions with model and input → receive job_id 2. Poll GET /predictions/{job_id} until status is `completed` or `failed` 3. Result contains output URL(s) or data ## Output Type url ## Tags runway, gen-4, turbo, image-generation, reference-images, consistent-character ## Documentation https://replicate.com/runwayml/gen4-image-turbo