Runway | Gen4 | Image
Generate images from text prompts using Runway Gen4. Supports up to 3 reference images for style and content guidance, with a wide range of aspect ratios and public figure moderation controls.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "runway-gen4-image",
"version": "0.0.1",
"input": {
"prompt": "A mystical underwater temple with bioluminescent coral and ancient stone pillars",
"aspect_ratio": "1920:1080"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| aspect_ratio |
string |
1024:1024 |
Output dimensions. Options: 1920:1080, 1080:1920, 1024:1024, 1360:768, 1080:1080, 1168:880, 1440:1080, 1080:1440, 1808:768, 2112:912, 1280:720, 720:1280, 720:720, 960:720, 720:960, 1680:720 |
| prompt |
string |
- |
Text prompt for image generation |
| public_figure_moderation |
string |
auto |
Public figure handling. Options: auto, low |
| reference_image_1 |
string |
- |
First reference image URL |
| reference_image_2 |
string |
- |
Second reference image URL |
| reference_image_3 |
string |
- |
Third reference image URL |
| seed |
integer |
- |
Random seed for reproducible results |
Examples
Widescreen landscape:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "runway-gen4-image",
"version": "0.0.1",
"input": {
"prompt": "A vast alien desert with twin suns setting, purple and orange sky, crystalline rock formations",
"aspect_ratio": "1920:1080",
"seed": 42
}
}'
Image with reference style:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "runway-gen4-image",
"version": "0.0.1",
"input": {
"prompt": "A cozy coffee shop interior in the same style as the reference",
"reference_image_1": "https://example.com/style-reference.jpg",
"aspect_ratio": "1360:768"
}
}'
Related Models
Documentation
1---2name: runway-gen4-image3description: Runway | Gen4 | Image. Generate images from text prompts using Runway Gen4. AI image generation with reference image support and multiple aspect ratios. Triggers: runway gen4 image, runway image, gen4 image, runway generate image, ai image generation runway4---56# Runway | Gen4 | Image78Generate images from text prompts using Runway Gen4. Supports up to 3 reference images for style and content guidance, with a wide range of aspect ratios and public figure moderation controls.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "runway-gen4-image",20 "version": "0.0.1",21 "input": {22 "prompt": "A mystical underwater temple with bioluminescent coral and ancient stone pillars",23 "aspect_ratio": "1920:1080"24 }25 }'26```2728## Parameters2930| Parameter | Type | Default | Description |31|-----------|------|---------|-------------|32| aspect_ratio | string | 1024:1024 | Output dimensions. Options: `1920:1080`, `1080:1920`, `1024:1024`, `1360:768`, `1080:1080`, `1168:880`, `1440:1080`, `1080:1440`, `1808:768`, `2112:912`, `1280:720`, `720:1280`, `720:720`, `960:720`, `720:960`, `1680:720` |33| prompt | string | - | Text prompt for image generation |34| public_figure_moderation | string | auto | Public figure handling. Options: `auto`, `low` |35| reference_image_1 | string | - | First reference image URL |36| reference_image_2 | string | - | Second reference image URL |37| reference_image_3 | string | - | Third reference image URL |38| seed | integer | - | Random seed for reproducible results |3940## Examples4142**Widescreen landscape:**43```bash44curl -X POST https://api.eachlabs.ai/v1/prediction \45 -H "Content-Type: application/json" \46 -H "X-API-Key: $EACHLABS_API_KEY" \47 -d '{48 "model": "runway-gen4-image",49 "version": "0.0.1",50 "input": {51 "prompt": "A vast alien desert with twin suns setting, purple and orange sky, crystalline rock formations",52 "aspect_ratio": "1920:1080",53 "seed": 4254 }55 }'56```5758**Image with reference style:**59```bash60curl -X POST https://api.eachlabs.ai/v1/prediction \61 -H "Content-Type: application/json" \62 -H "X-API-Key: $EACHLABS_API_KEY" \63 -d '{64 "model": "runway-gen4-image",65 "version": "0.0.1",66 "input": {67 "prompt": "A cozy coffee shop interior in the same style as the reference",68 "reference_image_1": "https://example.com/style-reference.jpg",69 "aspect_ratio": "1360:768"70 }71 }'72```7374## Related Models7576- [Runway | Gen4 | Turbo](../gen4-turbo/) - Generate videos with Runway Gen477- [Qwen Image](../qwen-image/) - Qwen text-to-image78- [Imagen 4 | Fast](../imagen-4-fast/) - Google's fast image generation7980## Documentation8182- [each::labs Docs](https://docs.eachlabs.ai)83- [API Reference](https://docs.eachlabs.ai/api/overview)