MODEL IDgoogle:4@3
live

Nano Banana 2

Google
by Google

Nano Banana 2 (officially known as Gemini 3.1 Flash Image) is Google’s upgraded AI image generation and editing model that brings advanced visual creation capabilities to a broad audience. It generates detailed, expressive images from text and image prompts with sharp details, richer lighting, and improved adherence to complex instructions. Nano Banana 2 also supports multi-object and multi-character consistency, accurate text rendering within images, and flexible resolution control up to 4K. It is now integrated across Google’s AI platforms including the Gemini app, Search AI Mode, and other Gemini-powered services.

Nano Banana 2
text-to-image

Underground Salt Cathedral Campaign Hero

Underground Salt Cathedral Campaign Hero

Create a premium tourism campaign hero image of the Chapel of St. Kinga deep inside Poland’s Wieliczka Salt Mine. Show the immense subterranean sanctuary from a slightly elevated position near the entrance, looking down the long central nave toward the illuminated altar. Monumental walls, columns, relief sculptures, balustrades and floor tiles are all intricately carved from gray rock salt. Elaborate salt-crystal chandeliers glow overhead like warm constellations. A small guided group of adult travelers in understated contemporary clothing descends the broad staircase at lower left, providing human scale without dominating the architecture. One visitor pauses at the railing in quiet awe. Use a wide landscape composition with strong leading lines, layered depth and generous open space through the center. Sophisticated cinematic architectural photography, crisp mineral texture, atmospheric underground haze, warm amber chandelier light against cool slate-gray and subtle emerald shadows, restrained highlights, realistic proportions, inviting yet mysterious mood. The image should feel culturally significant, transportive and suitable for the lead visual of an international heritage-tourism campaign. Photorealistic, polished editorial finish, deep focus, natural human anatomy, no staged poses. No typography, logos, signs, borders, collage, interface elements or watermark.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'google:4@3',
  positivePrompt: 'Create a premium tourism campaign hero image of the Chapel of St. Kinga deep inside Poland’s Wieliczka Salt Mine. Show the immense subterranean sanctuary from a slightly elevated position near the entrance, looking down the long central nave toward the illuminated altar. Monumental walls, columns, relief sculptures, balustrades and floor tiles are all intricately carved from gray rock salt. Elaborate salt-crystal chandeliers glow overhead like warm constellations. A small guided group of adult travelers in understated contemporary clothing descends the broad staircase at lower left, providing human scale without dominating the architecture. One visitor pauses at the railing in quiet awe. Use a wide landscape composition with strong leading lines, layered depth and generous open space through the center. Sophisticated cinematic architectural photography, crisp mineral texture, atmospheric underground haze, warm amber chandelier light against cool slate-gray and subtle emerald shadows, restrained highlights, realistic proportions, inviting yet mysterious mood. The image should feel culturally significant, transportive and suitable for the lead visual of an international heritage-tourism campaign. Photorealistic, polished editorial finish, deep focus, natural human anatomy, no staged poses. No typography, logos, signs, borders, collage, interface elements or watermark.',
  width: 1376,
  height: 768,
  settings: {
    thinking: 'HIGH'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "google:4@3",
            "positivePrompt": "Create a premium tourism campaign hero image of the Chapel of St. Kinga deep inside Poland’s Wieliczka Salt Mine. Show the immense subterranean sanctuary from a slightly elevated position near the entrance, looking down the long central nave toward the illuminated altar. Monumental walls, columns, relief sculptures, balustrades and floor tiles are all intricately carved from gray rock salt. Elaborate salt-crystal chandeliers glow overhead like warm constellations. A small guided group of adult travelers in understated contemporary clothing descends the broad staircase at lower left, providing human scale without dominating the architecture. One visitor pauses at the railing in quiet awe. Use a wide landscape composition with strong leading lines, layered depth and generous open space through the center. Sophisticated cinematic architectural photography, crisp mineral texture, atmospheric underground haze, warm amber chandelier light against cool slate-gray and subtle emerald shadows, restrained highlights, realistic proportions, inviting yet mysterious mood. The image should feel culturally significant, transportive and suitable for the lead visual of an international heritage-tourism campaign. Photorealistic, polished editorial finish, deep focus, natural human anatomy, no staged poses. No typography, logos, signs, borders, collage, interface elements or watermark.",
            "width": 1376,
            "height": 768,
            "settings": {
                "thinking": "HIGH"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "07c08b32-dab6-4bbf-a3ba-95304979102e",
      "model": "google:4@3",
      "positivePrompt": "Create a premium tourism campaign hero image of the Chapel of St. Kinga deep inside Poland’s Wieliczka Salt Mine. Show the immense subterranean sanctuary from a slightly elevated position near the entrance, looking down the long central nave toward the illuminated altar. Monumental walls, columns, relief sculptures, balustrades and floor tiles are all intricately carved from gray rock salt. Elaborate salt-crystal chandeliers glow overhead like warm constellations. A small guided group of adult travelers in understated contemporary clothing descends the broad staircase at lower left, providing human scale without dominating the architecture. One visitor pauses at the railing in quiet awe. Use a wide landscape composition with strong leading lines, layered depth and generous open space through the center. Sophisticated cinematic architectural photography, crisp mineral texture, atmospheric underground haze, warm amber chandelier light against cool slate-gray and subtle emerald shadows, restrained highlights, realistic proportions, inviting yet mysterious mood. The image should feel culturally significant, transportive and suitable for the lead visual of an international heritage-tourism campaign. Photorealistic, polished editorial finish, deep focus, natural human anatomy, no staged poses. No typography, logos, signs, borders, collage, interface elements or watermark.",
      "width": 1376,
      "height": 768,
      "settings": {
        "thinking": "HIGH"
      }
    }
  ]'
runware run google:4@3 \
  positivePrompt="Create a premium tourism campaign hero image of the Chapel of St. Kinga deep inside Poland’s Wieliczka Salt Mine. Show the immense subterranean sanctuary from a slightly elevated position near the entrance, looking down the long central nave toward the illuminated altar. Monumental walls, columns, relief sculptures, balustrades and floor tiles are all intricately carved from gray rock salt. Elaborate salt-crystal chandeliers glow overhead like warm constellations. A small guided group of adult travelers in understated contemporary clothing descends the broad staircase at lower left, providing human scale without dominating the architecture. One visitor pauses at the railing in quiet awe. Use a wide landscape composition with strong leading lines, layered depth and generous open space through the center. Sophisticated cinematic architectural photography, crisp mineral texture, atmospheric underground haze, warm amber chandelier light against cool slate-gray and subtle emerald shadows, restrained highlights, realistic proportions, inviting yet mysterious mood. The image should feel culturally significant, transportive and suitable for the lead visual of an international heritage-tourism campaign. Photorealistic, polished editorial finish, deep focus, natural human anatomy, no staged poses. No typography, logos, signs, borders, collage, interface elements or watermark." \
  width=1376 \
  height=768 \
  settings.thinking=HIGH
{
  "taskType": "imageInference",
  "taskUUID": "07c08b32-dab6-4bbf-a3ba-95304979102e",
  "model": "google:4@3",
  "positivePrompt": "Create a premium tourism campaign hero image of the Chapel of St. Kinga deep inside Poland’s Wieliczka Salt Mine. Show the immense subterranean sanctuary from a slightly elevated position near the entrance, looking down the long central nave toward the illuminated altar. Monumental walls, columns, relief sculptures, balustrades and floor tiles are all intricately carved from gray rock salt. Elaborate salt-crystal chandeliers glow overhead like warm constellations. A small guided group of adult travelers in understated contemporary clothing descends the broad staircase at lower left, providing human scale without dominating the architecture. One visitor pauses at the railing in quiet awe. Use a wide landscape composition with strong leading lines, layered depth and generous open space through the center. Sophisticated cinematic architectural photography, crisp mineral texture, atmospheric underground haze, warm amber chandelier light against cool slate-gray and subtle emerald shadows, restrained highlights, realistic proportions, inviting yet mysterious mood. The image should feel culturally significant, transportive and suitable for the lead visual of an international heritage-tourism campaign. Photorealistic, polished editorial finish, deep focus, natural human anatomy, no staged poses. No typography, logos, signs, borders, collage, interface elements or watermark.",
  "width": 1376,
  "height": 768,
  "settings": {
    "thinking": "HIGH"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "07c08b32-dab6-4bbf-a3ba-95304979102e",
  "imageUUID": "a2b75996-6f62-483f-b595-a39fdb6efe74",
  "imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/a2b75996-6f62-483f-b595-a39fdb6efe74.jpg",
  "seed": 524717699,
  "cost": 0.06895
}
text-to-image

Winter Silo Lighting Visualization

Winter Silo Lighting Visualization

Create a finished photorealistic architectural lighting visualization for a design consultancy’s presentation: a row of monumental 1930s concrete grain silos converted into a public climbing and arts center on a northern harbor, shown during deep winter at blue hour. Fresh snow blankets the quay, rooflines and dormant grasses; thin ice gathers along the dark water. Preserve a grounded industrial character with weathered concrete, steel catwalks, loading gantries and tall cylindrical forms. Present the proposed relighting scheme clearly: warm amber uplights graze the curved silo walls, narrow concealed fixtures emphasize vertical ribs, softly illuminated windows reveal climbing walls and timber gathering spaces inside, and low shielded path lights guide pedestrians without glare. A few bundled visitors provide scale, leaving subtle footprints in the snow. Reflections of amber light stretch across wet patches and black-blue harbor water while the sky transitions from cobalt to pale icy cyan near the horizon. Compose as a wide landscape hero image from across the quay, with the silos forming a strong rhythmic diagonal, ample atmospheric sky, and a distant tugboat and cranes kept secondary. Crisp realistic materials, controlled highlights, accurate architectural perspective, calm Scandinavian editorial photography, quiet civic mood, sophisticated blue-and-amber palette, no logos, no captions, no signage, no border, no split-screen or before-and-after layout.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'google:4@3',
  positivePrompt: 'Create a finished photorealistic architectural lighting visualization for a design consultancy’s presentation: a row of monumental 1930s concrete grain silos converted into a public climbing and arts center on a northern harbor, shown during deep winter at blue hour. Fresh snow blankets the quay, rooflines and dormant grasses; thin ice gathers along the dark water. Preserve a grounded industrial character with weathered concrete, steel catwalks, loading gantries and tall cylindrical forms. Present the proposed relighting scheme clearly: warm amber uplights graze the curved silo walls, narrow concealed fixtures emphasize vertical ribs, softly illuminated windows reveal climbing walls and timber gathering spaces inside, and low shielded path lights guide pedestrians without glare. A few bundled visitors provide scale, leaving subtle footprints in the snow. Reflections of amber light stretch across wet patches and black-blue harbor water while the sky transitions from cobalt to pale icy cyan near the horizon. Compose as a wide landscape hero image from across the quay, with the silos forming a strong rhythmic diagonal, ample atmospheric sky, and a distant tugboat and cranes kept secondary. Crisp realistic materials, controlled highlights, accurate architectural perspective, calm Scandinavian editorial photography, quiet civic mood, sophisticated blue-and-amber palette, no logos, no captions, no signage, no border, no split-screen or before-and-after layout.',
  width: 1376,
  height: 768,
  settings: {
    thinking: 'HIGH'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "google:4@3",
            "positivePrompt": "Create a finished photorealistic architectural lighting visualization for a design consultancy’s presentation: a row of monumental 1930s concrete grain silos converted into a public climbing and arts center on a northern harbor, shown during deep winter at blue hour. Fresh snow blankets the quay, rooflines and dormant grasses; thin ice gathers along the dark water. Preserve a grounded industrial character with weathered concrete, steel catwalks, loading gantries and tall cylindrical forms. Present the proposed relighting scheme clearly: warm amber uplights graze the curved silo walls, narrow concealed fixtures emphasize vertical ribs, softly illuminated windows reveal climbing walls and timber gathering spaces inside, and low shielded path lights guide pedestrians without glare. A few bundled visitors provide scale, leaving subtle footprints in the snow. Reflections of amber light stretch across wet patches and black-blue harbor water while the sky transitions from cobalt to pale icy cyan near the horizon. Compose as a wide landscape hero image from across the quay, with the silos forming a strong rhythmic diagonal, ample atmospheric sky, and a distant tugboat and cranes kept secondary. Crisp realistic materials, controlled highlights, accurate architectural perspective, calm Scandinavian editorial photography, quiet civic mood, sophisticated blue-and-amber palette, no logos, no captions, no signage, no border, no split-screen or before-and-after layout.",
            "width": 1376,
            "height": 768,
            "settings": {
                "thinking": "HIGH"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "6682abfb-9e7b-400a-936e-f61cb461fc7e",
      "model": "google:4@3",
      "positivePrompt": "Create a finished photorealistic architectural lighting visualization for a design consultancy’s presentation: a row of monumental 1930s concrete grain silos converted into a public climbing and arts center on a northern harbor, shown during deep winter at blue hour. Fresh snow blankets the quay, rooflines and dormant grasses; thin ice gathers along the dark water. Preserve a grounded industrial character with weathered concrete, steel catwalks, loading gantries and tall cylindrical forms. Present the proposed relighting scheme clearly: warm amber uplights graze the curved silo walls, narrow concealed fixtures emphasize vertical ribs, softly illuminated windows reveal climbing walls and timber gathering spaces inside, and low shielded path lights guide pedestrians without glare. A few bundled visitors provide scale, leaving subtle footprints in the snow. Reflections of amber light stretch across wet patches and black-blue harbor water while the sky transitions from cobalt to pale icy cyan near the horizon. Compose as a wide landscape hero image from across the quay, with the silos forming a strong rhythmic diagonal, ample atmospheric sky, and a distant tugboat and cranes kept secondary. Crisp realistic materials, controlled highlights, accurate architectural perspective, calm Scandinavian editorial photography, quiet civic mood, sophisticated blue-and-amber palette, no logos, no captions, no signage, no border, no split-screen or before-and-after layout.",
      "width": 1376,
      "height": 768,
      "settings": {
        "thinking": "HIGH"
      }
    }
  ]'
runware run google:4@3 \
  positivePrompt="Create a finished photorealistic architectural lighting visualization for a design consultancy’s presentation: a row of monumental 1930s concrete grain silos converted into a public climbing and arts center on a northern harbor, shown during deep winter at blue hour. Fresh snow blankets the quay, rooflines and dormant grasses; thin ice gathers along the dark water. Preserve a grounded industrial character with weathered concrete, steel catwalks, loading gantries and tall cylindrical forms. Present the proposed relighting scheme clearly: warm amber uplights graze the curved silo walls, narrow concealed fixtures emphasize vertical ribs, softly illuminated windows reveal climbing walls and timber gathering spaces inside, and low shielded path lights guide pedestrians without glare. A few bundled visitors provide scale, leaving subtle footprints in the snow. Reflections of amber light stretch across wet patches and black-blue harbor water while the sky transitions from cobalt to pale icy cyan near the horizon. Compose as a wide landscape hero image from across the quay, with the silos forming a strong rhythmic diagonal, ample atmospheric sky, and a distant tugboat and cranes kept secondary. Crisp realistic materials, controlled highlights, accurate architectural perspective, calm Scandinavian editorial photography, quiet civic mood, sophisticated blue-and-amber palette, no logos, no captions, no signage, no border, no split-screen or before-and-after layout." \
  width=1376 \
  height=768 \
  settings.thinking=HIGH
{
  "taskType": "imageInference",
  "taskUUID": "6682abfb-9e7b-400a-936e-f61cb461fc7e",
  "model": "google:4@3",
  "positivePrompt": "Create a finished photorealistic architectural lighting visualization for a design consultancy’s presentation: a row of monumental 1930s concrete grain silos converted into a public climbing and arts center on a northern harbor, shown during deep winter at blue hour. Fresh snow blankets the quay, rooflines and dormant grasses; thin ice gathers along the dark water. Preserve a grounded industrial character with weathered concrete, steel catwalks, loading gantries and tall cylindrical forms. Present the proposed relighting scheme clearly: warm amber uplights graze the curved silo walls, narrow concealed fixtures emphasize vertical ribs, softly illuminated windows reveal climbing walls and timber gathering spaces inside, and low shielded path lights guide pedestrians without glare. A few bundled visitors provide scale, leaving subtle footprints in the snow. Reflections of amber light stretch across wet patches and black-blue harbor water while the sky transitions from cobalt to pale icy cyan near the horizon. Compose as a wide landscape hero image from across the quay, with the silos forming a strong rhythmic diagonal, ample atmospheric sky, and a distant tugboat and cranes kept secondary. Crisp realistic materials, controlled highlights, accurate architectural perspective, calm Scandinavian editorial photography, quiet civic mood, sophisticated blue-and-amber palette, no logos, no captions, no signage, no border, no split-screen or before-and-after layout.",
  "width": 1376,
  "height": 768,
  "settings": {
    "thinking": "HIGH"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "6682abfb-9e7b-400a-936e-f61cb461fc7e",
  "imageUUID": "951109d5-1d98-4494-8aa1-dc8e834cb910",
  "imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/3/ii/951109d5-1d98-4494-8aa1-dc8e834cb910.jpg",
  "seed": 296363904,
  "cost": 0.06895
}
reference-to-image

Subsea Cable Repair Explainer Thumbnail

Subsea Cable Repair Explainer Thumbnail

Create a finished cinematic 16:9 video thumbnail for a serious technology documentary about repairing the undersea cables that carry global internet traffic. Use the reference image as the primary authority for the hero subject: reproduce that same severed fiber-optic cable construction, materials, frayed optical fibers, salt wear and distinctive three-quarter profile with convincing engineering accuracy. Enlarge the broken cable into a dramatic foreground element running diagonally from the lower left toward the center, its exposed colorful fiber strands catching the light and remaining legible at thumbnail size. Use the reference video only as supplementary visual guidance for the operational setting, underwater atmosphere and action: place a realistic orange work-class ROV in the middle distance on the right, echoing the video's manipulator-arm posture, hard white work lights, drifting sediment, deep-sea particles and slow documentary camera perspective. Show one manipulator reaching toward the cable without obscuring its exposed cross-section. Dark cobalt and near-black water, muted seabed brown, safety-orange machinery and small jewel-like fiber colors. Strong separation between foreground cable and background vehicle, directional beams through particulate water, restrained contrast, crisp tactile detail, credible scale, sophisticated investigative-journalism art direction, tense but factual mood. Compose with an uncluttered pocket of dark water in the upper left for optional editorial headline placement, but render no words, letters, logos, interface elements, borders or watermarks. The result must be a single immersive underwater still, not a collage, screenshot or mockup.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'google:4@3',
  positivePrompt: 'Create a finished cinematic 16:9 video thumbnail for a serious technology documentary about repairing the undersea cables that carry global internet traffic. Use the reference image as the primary authority for the hero subject: reproduce that same severed fiber-optic cable construction, materials, frayed optical fibers, salt wear and distinctive three-quarter profile with convincing engineering accuracy. Enlarge the broken cable into a dramatic foreground element running diagonally from the lower left toward the center, its exposed colorful fiber strands catching the light and remaining legible at thumbnail size. Use the reference video only as supplementary visual guidance for the operational setting, underwater atmosphere and action: place a realistic orange work-class ROV in the middle distance on the right, echoing the video\'s manipulator-arm posture, hard white work lights, drifting sediment, deep-sea particles and slow documentary camera perspective. Show one manipulator reaching toward the cable without obscuring its exposed cross-section. Dark cobalt and near-black water, muted seabed brown, safety-orange machinery and small jewel-like fiber colors. Strong separation between foreground cable and background vehicle, directional beams through particulate water, restrained contrast, crisp tactile detail, credible scale, sophisticated investigative-journalism art direction, tense but factual mood. Compose with an uncluttered pocket of dark water in the upper left for optional editorial headline placement, but render no words, letters, logos, interface elements, borders or watermarks. The result must be a single immersive underwater still, not a collage, screenshot or mockup.',
  resolution: '2K',
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/fa56a831-822e-4e65-93cb-12f8e1b5de1d.jpg'
    ],
    referenceVideos: [
      'https://assets.runware.ai/assets/inputs/dc5cfd30-e940-44ee-b08c-9b9d113c2545.mp4'
    ]
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "google:4@3",
            "positivePrompt": "Create a finished cinematic 16:9 video thumbnail for a serious technology documentary about repairing the undersea cables that carry global internet traffic. Use the reference image as the primary authority for the hero subject: reproduce that same severed fiber-optic cable construction, materials, frayed optical fibers, salt wear and distinctive three-quarter profile with convincing engineering accuracy. Enlarge the broken cable into a dramatic foreground element running diagonally from the lower left toward the center, its exposed colorful fiber strands catching the light and remaining legible at thumbnail size. Use the reference video only as supplementary visual guidance for the operational setting, underwater atmosphere and action: place a realistic orange work-class ROV in the middle distance on the right, echoing the video's manipulator-arm posture, hard white work lights, drifting sediment, deep-sea particles and slow documentary camera perspective. Show one manipulator reaching toward the cable without obscuring its exposed cross-section. Dark cobalt and near-black water, muted seabed brown, safety-orange machinery and small jewel-like fiber colors. Strong separation between foreground cable and background vehicle, directional beams through particulate water, restrained contrast, crisp tactile detail, credible scale, sophisticated investigative-journalism art direction, tense but factual mood. Compose with an uncluttered pocket of dark water in the upper left for optional editorial headline placement, but render no words, letters, logos, interface elements, borders or watermarks. The result must be a single immersive underwater still, not a collage, screenshot or mockup.",
            "resolution": "2K",
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/fa56a831-822e-4e65-93cb-12f8e1b5de1d.jpg"
                ],
                "referenceVideos": [
                    "https://assets.runware.ai/assets/inputs/dc5cfd30-e940-44ee-b08c-9b9d113c2545.mp4"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "8dd9fd9d-9971-4200-a97c-fdf09ddb453a",
      "model": "google:4@3",
      "positivePrompt": "Create a finished cinematic 16:9 video thumbnail for a serious technology documentary about repairing the undersea cables that carry global internet traffic. Use the reference image as the primary authority for the hero subject: reproduce that same severed fiber-optic cable construction, materials, frayed optical fibers, salt wear and distinctive three-quarter profile with convincing engineering accuracy. Enlarge the broken cable into a dramatic foreground element running diagonally from the lower left toward the center, its exposed colorful fiber strands catching the light and remaining legible at thumbnail size. Use the reference video only as supplementary visual guidance for the operational setting, underwater atmosphere and action: place a realistic orange work-class ROV in the middle distance on the right, echoing the video's manipulator-arm posture, hard white work lights, drifting sediment, deep-sea particles and slow documentary camera perspective. Show one manipulator reaching toward the cable without obscuring its exposed cross-section. Dark cobalt and near-black water, muted seabed brown, safety-orange machinery and small jewel-like fiber colors. Strong separation between foreground cable and background vehicle, directional beams through particulate water, restrained contrast, crisp tactile detail, credible scale, sophisticated investigative-journalism art direction, tense but factual mood. Compose with an uncluttered pocket of dark water in the upper left for optional editorial headline placement, but render no words, letters, logos, interface elements, borders or watermarks. The result must be a single immersive underwater still, not a collage, screenshot or mockup.",
      "resolution": "2K",
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/fa56a831-822e-4e65-93cb-12f8e1b5de1d.jpg"
        ],
        "referenceVideos": [
          "https://assets.runware.ai/assets/inputs/dc5cfd30-e940-44ee-b08c-9b9d113c2545.mp4"
        ]
      }
    }
  ]'
runware run google:4@3 \
  positivePrompt="Create a finished cinematic 16:9 video thumbnail for a serious technology documentary about repairing the undersea cables that carry global internet traffic. Use the reference image as the primary authority for the hero subject: reproduce that same severed fiber-optic cable construction, materials, frayed optical fibers, salt wear and distinctive three-quarter profile with convincing engineering accuracy. Enlarge the broken cable into a dramatic foreground element running diagonally from the lower left toward the center, its exposed colorful fiber strands catching the light and remaining legible at thumbnail size. Use the reference video only as supplementary visual guidance for the operational setting, underwater atmosphere and action: place a realistic orange work-class ROV in the middle distance on the right, echoing the video's manipulator-arm posture, hard white work lights, drifting sediment, deep-sea particles and slow documentary camera perspective. Show one manipulator reaching toward the cable without obscuring its exposed cross-section. Dark cobalt and near-black water, muted seabed brown, safety-orange machinery and small jewel-like fiber colors. Strong separation between foreground cable and background vehicle, directional beams through particulate water, restrained contrast, crisp tactile detail, credible scale, sophisticated investigative-journalism art direction, tense but factual mood. Compose with an uncluttered pocket of dark water in the upper left for optional editorial headline placement, but render no words, letters, logos, interface elements, borders or watermarks. The result must be a single immersive underwater still, not a collage, screenshot or mockup." \
  resolution=2K \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/fa56a831-822e-4e65-93cb-12f8e1b5de1d.jpg \
  inputs.referenceVideos.0=https://assets.runware.ai/assets/inputs/dc5cfd30-e940-44ee-b08c-9b9d113c2545.mp4
{
  "taskType": "imageInference",
  "taskUUID": "8dd9fd9d-9971-4200-a97c-fdf09ddb453a",
  "model": "google:4@3",
  "positivePrompt": "Create a finished cinematic 16:9 video thumbnail for a serious technology documentary about repairing the undersea cables that carry global internet traffic. Use the reference image as the primary authority for the hero subject: reproduce that same severed fiber-optic cable construction, materials, frayed optical fibers, salt wear and distinctive three-quarter profile with convincing engineering accuracy. Enlarge the broken cable into a dramatic foreground element running diagonally from the lower left toward the center, its exposed colorful fiber strands catching the light and remaining legible at thumbnail size. Use the reference video only as supplementary visual guidance for the operational setting, underwater atmosphere and action: place a realistic orange work-class ROV in the middle distance on the right, echoing the video's manipulator-arm posture, hard white work lights, drifting sediment, deep-sea particles and slow documentary camera perspective. Show one manipulator reaching toward the cable without obscuring its exposed cross-section. Dark cobalt and near-black water, muted seabed brown, safety-orange machinery and small jewel-like fiber colors. Strong separation between foreground cable and background vehicle, directional beams through particulate water, restrained contrast, crisp tactile detail, credible scale, sophisticated investigative-journalism art direction, tense but factual mood. Compose with an uncluttered pocket of dark water in the upper left for optional editorial headline placement, but render no words, letters, logos, interface elements, borders or watermarks. The result must be a single immersive underwater still, not a collage, screenshot or mockup.",
  "resolution": "2K",
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/fa56a831-822e-4e65-93cb-12f8e1b5de1d.jpg"
    ],
    "referenceVideos": [
      "https://assets.runware.ai/assets/inputs/dc5cfd30-e940-44ee-b08c-9b9d113c2545.mp4"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "8dd9fd9d-9971-4200-a97c-fdf09ddb453a",
  "imageUUID": "c6ef2207-f938-484c-a928-4c1f0bc4a436",
  "imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/4/ii/c6ef2207-f938-484c-a928-4c1f0bc4a436.jpg",
  "seed": 2053935796,
  "cost": 0.10283
}
reference-to-image

Orchard Robot Case Study Hero

Orchard Robot Case Study Hero

Create a finished wide editorial photograph for an agricultural robotics case study. Use the reference image as the authoritative primary reference for the subject: preserve the exact orchard rover’s design, proportions, matte cream body panels, four narrow rugged tires, lidar mast, cameras, articulated sensor arms, safety lights, surface wear, and three-quarter viewing angle. Remove its plain studio background and place the same rover convincingly into a real working apple orchard. Use the reference video only as supplementary visual guidance for the replacement environment and cinematography: match its mature tunnel-like orchard rows, dense sage-green leaves, small red apples, damp reddish soil, irrigation tubing, fallen leaves, faint low mist, subdued dawn palette, soft overcast directional light, and grounded documentary mood. Derive the row perspective and environmental texture from the video while keeping the robot from the image as the unmistakable principal subject. Position the rover traveling between the trees, slightly left of center, with clear breathing room ahead of it and layered orchard depth extending across the wide frame. Integrate it physically: tires should compress into moist soil, lower foliage may naturally overlap a small part of the chassis, and soft reflections on the body should inherit the green canopy and warm earth tones. Add restrained tire tracks and a trace of disturbed dew, but no dramatic dust or staged action. Match light direction, contact shadows, lens perspective, focus falloff, color temperature, and atmospheric haze so this looks like one authentic on-location exposure rather than a composite. Art direction: premium agricultural trade editorial, observational and credible, muted sage, cream, rust-red, and cool gray palette; crisp mechanical detail with gentle background falloff; realistic 35mm environmental product photography at rover height. No people, no extra robots, no altered components, no floating wheels, no studio backdrop remnants, no logos, no captions, no borders, and no on-image text.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'google:4@3',
  positivePrompt: 'Create a finished wide editorial photograph for an agricultural robotics case study. Use the reference image as the authoritative primary reference for the subject: preserve the exact orchard rover’s design, proportions, matte cream body panels, four narrow rugged tires, lidar mast, cameras, articulated sensor arms, safety lights, surface wear, and three-quarter viewing angle. Remove its plain studio background and place the same rover convincingly into a real working apple orchard.\n\nUse the reference video only as supplementary visual guidance for the replacement environment and cinematography: match its mature tunnel-like orchard rows, dense sage-green leaves, small red apples, damp reddish soil, irrigation tubing, fallen leaves, faint low mist, subdued dawn palette, soft overcast directional light, and grounded documentary mood. Derive the row perspective and environmental texture from the video while keeping the robot from the image as the unmistakable principal subject.\n\nPosition the rover traveling between the trees, slightly left of center, with clear breathing room ahead of it and layered orchard depth extending across the wide frame. Integrate it physically: tires should compress into moist soil, lower foliage may naturally overlap a small part of the chassis, and soft reflections on the body should inherit the green canopy and warm earth tones. Add restrained tire tracks and a trace of disturbed dew, but no dramatic dust or staged action. Match light direction, contact shadows, lens perspective, focus falloff, color temperature, and atmospheric haze so this looks like one authentic on-location exposure rather than a composite.\n\nArt direction: premium agricultural trade editorial, observational and credible, muted sage, cream, rust-red, and cool gray palette; crisp mechanical detail with gentle background falloff; realistic 35mm environmental product photography at rover height. No people, no extra robots, no altered components, no floating wheels, no studio backdrop remnants, no logos, no captions, no borders, and no on-image text.',
  resolution: '2K',
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/7ddd8c61-6472-47e8-9a64-e1cda76ec67f.jpg'
    ],
    referenceVideos: [
      'https://assets.runware.ai/assets/inputs/b0e8181a-d73b-42fe-93d6-e90f935d05e1.mp4'
    ]
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "google:4@3",
            "positivePrompt": "Create a finished wide editorial photograph for an agricultural robotics case study. Use the reference image as the authoritative primary reference for the subject: preserve the exact orchard rover’s design, proportions, matte cream body panels, four narrow rugged tires, lidar mast, cameras, articulated sensor arms, safety lights, surface wear, and three-quarter viewing angle. Remove its plain studio background and place the same rover convincingly into a real working apple orchard.\n\nUse the reference video only as supplementary visual guidance for the replacement environment and cinematography: match its mature tunnel-like orchard rows, dense sage-green leaves, small red apples, damp reddish soil, irrigation tubing, fallen leaves, faint low mist, subdued dawn palette, soft overcast directional light, and grounded documentary mood. Derive the row perspective and environmental texture from the video while keeping the robot from the image as the unmistakable principal subject.\n\nPosition the rover traveling between the trees, slightly left of center, with clear breathing room ahead of it and layered orchard depth extending across the wide frame. Integrate it physically: tires should compress into moist soil, lower foliage may naturally overlap a small part of the chassis, and soft reflections on the body should inherit the green canopy and warm earth tones. Add restrained tire tracks and a trace of disturbed dew, but no dramatic dust or staged action. Match light direction, contact shadows, lens perspective, focus falloff, color temperature, and atmospheric haze so this looks like one authentic on-location exposure rather than a composite.\n\nArt direction: premium agricultural trade editorial, observational and credible, muted sage, cream, rust-red, and cool gray palette; crisp mechanical detail with gentle background falloff; realistic 35mm environmental product photography at rover height. No people, no extra robots, no altered components, no floating wheels, no studio backdrop remnants, no logos, no captions, no borders, and no on-image text.",
            "resolution": "2K",
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/7ddd8c61-6472-47e8-9a64-e1cda76ec67f.jpg"
                ],
                "referenceVideos": [
                    "https://assets.runware.ai/assets/inputs/b0e8181a-d73b-42fe-93d6-e90f935d05e1.mp4"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "42201cc9-85d7-4456-b9d0-1477b15b5fe6",
      "model": "google:4@3",
      "positivePrompt": "Create a finished wide editorial photograph for an agricultural robotics case study. Use the reference image as the authoritative primary reference for the subject: preserve the exact orchard rover’s design, proportions, matte cream body panels, four narrow rugged tires, lidar mast, cameras, articulated sensor arms, safety lights, surface wear, and three-quarter viewing angle. Remove its plain studio background and place the same rover convincingly into a real working apple orchard.\n\nUse the reference video only as supplementary visual guidance for the replacement environment and cinematography: match its mature tunnel-like orchard rows, dense sage-green leaves, small red apples, damp reddish soil, irrigation tubing, fallen leaves, faint low mist, subdued dawn palette, soft overcast directional light, and grounded documentary mood. Derive the row perspective and environmental texture from the video while keeping the robot from the image as the unmistakable principal subject.\n\nPosition the rover traveling between the trees, slightly left of center, with clear breathing room ahead of it and layered orchard depth extending across the wide frame. Integrate it physically: tires should compress into moist soil, lower foliage may naturally overlap a small part of the chassis, and soft reflections on the body should inherit the green canopy and warm earth tones. Add restrained tire tracks and a trace of disturbed dew, but no dramatic dust or staged action. Match light direction, contact shadows, lens perspective, focus falloff, color temperature, and atmospheric haze so this looks like one authentic on-location exposure rather than a composite.\n\nArt direction: premium agricultural trade editorial, observational and credible, muted sage, cream, rust-red, and cool gray palette; crisp mechanical detail with gentle background falloff; realistic 35mm environmental product photography at rover height. No people, no extra robots, no altered components, no floating wheels, no studio backdrop remnants, no logos, no captions, no borders, and no on-image text.",
      "resolution": "2K",
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/7ddd8c61-6472-47e8-9a64-e1cda76ec67f.jpg"
        ],
        "referenceVideos": [
          "https://assets.runware.ai/assets/inputs/b0e8181a-d73b-42fe-93d6-e90f935d05e1.mp4"
        ]
      }
    }
  ]'
runware run google:4@3 \
  positivePrompt="Create a finished wide editorial photograph for an agricultural robotics case study. Use the reference image as the authoritative primary reference for the subject: preserve the exact orchard rover’s design, proportions, matte cream body panels, four narrow rugged tires, lidar mast, cameras, articulated sensor arms, safety lights, surface wear, and three-quarter viewing angle. Remove its plain studio background and place the same rover convincingly into a real working apple orchard.

Use the reference video only as supplementary visual guidance for the replacement environment and cinematography: match its mature tunnel-like orchard rows, dense sage-green leaves, small red apples, damp reddish soil, irrigation tubing, fallen leaves, faint low mist, subdued dawn palette, soft overcast directional light, and grounded documentary mood. Derive the row perspective and environmental texture from the video while keeping the robot from the image as the unmistakable principal subject.

Position the rover traveling between the trees, slightly left of center, with clear breathing room ahead of it and layered orchard depth extending across the wide frame. Integrate it physically: tires should compress into moist soil, lower foliage may naturally overlap a small part of the chassis, and soft reflections on the body should inherit the green canopy and warm earth tones. Add restrained tire tracks and a trace of disturbed dew, but no dramatic dust or staged action. Match light direction, contact shadows, lens perspective, focus falloff, color temperature, and atmospheric haze so this looks like one authentic on-location exposure rather than a composite.

Art direction: premium agricultural trade editorial, observational and credible, muted sage, cream, rust-red, and cool gray palette; crisp mechanical detail with gentle background falloff; realistic 35mm environmental product photography at rover height. No people, no extra robots, no altered components, no floating wheels, no studio backdrop remnants, no logos, no captions, no borders, and no on-image text." \
  resolution=2K \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/7ddd8c61-6472-47e8-9a64-e1cda76ec67f.jpg \
  inputs.referenceVideos.0=https://assets.runware.ai/assets/inputs/b0e8181a-d73b-42fe-93d6-e90f935d05e1.mp4
{
  "taskType": "imageInference",
  "taskUUID": "42201cc9-85d7-4456-b9d0-1477b15b5fe6",
  "model": "google:4@3",
  "positivePrompt": "Create a finished wide editorial photograph for an agricultural robotics case study. Use the reference image as the authoritative primary reference for the subject: preserve the exact orchard rover’s design, proportions, matte cream body panels, four narrow rugged tires, lidar mast, cameras, articulated sensor arms, safety lights, surface wear, and three-quarter viewing angle. Remove its plain studio background and place the same rover convincingly into a real working apple orchard.\n\nUse the reference video only as supplementary visual guidance for the replacement environment and cinematography: match its mature tunnel-like orchard rows, dense sage-green leaves, small red apples, damp reddish soil, irrigation tubing, fallen leaves, faint low mist, subdued dawn palette, soft overcast directional light, and grounded documentary mood. Derive the row perspective and environmental texture from the video while keeping the robot from the image as the unmistakable principal subject.\n\nPosition the rover traveling between the trees, slightly left of center, with clear breathing room ahead of it and layered orchard depth extending across the wide frame. Integrate it physically: tires should compress into moist soil, lower foliage may naturally overlap a small part of the chassis, and soft reflections on the body should inherit the green canopy and warm earth tones. Add restrained tire tracks and a trace of disturbed dew, but no dramatic dust or staged action. Match light direction, contact shadows, lens perspective, focus falloff, color temperature, and atmospheric haze so this looks like one authentic on-location exposure rather than a composite.\n\nArt direction: premium agricultural trade editorial, observational and credible, muted sage, cream, rust-red, and cool gray palette; crisp mechanical detail with gentle background falloff; realistic 35mm environmental product photography at rover height. No people, no extra robots, no altered components, no floating wheels, no studio backdrop remnants, no logos, no captions, no borders, and no on-image text.",
  "resolution": "2K",
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/7ddd8c61-6472-47e8-9a64-e1cda76ec67f.jpg"
    ],
    "referenceVideos": [
      "https://assets.runware.ai/assets/inputs/b0e8181a-d73b-42fe-93d6-e90f935d05e1.mp4"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "42201cc9-85d7-4456-b9d0-1477b15b5fe6",
  "imageUUID": "aeae1285-f587-4487-9982-8b5cdd23b4f7",
  "imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/aeae1285-f587-4487-9982-8b5cdd23b4f7.jpg",
  "seed": 418823590,
  "cost": 0.10283
}
Image to Image

Tri-Reference Fashion Collage

Tri-Reference Fashion Collage

Create a luxury fashion editorial composition that merges the subject from reference image 1, the jewelry styling motifs from reference image 2, and the architectural environment from reference image 3. Show the model standing confidently in the modern interior, wearing an elegant ivory tailored outfit accented with bold layered gold jewelry. Preserve a premium magazine aesthetic, refined pose, cinematic sunlight, crisp textile detail, realistic skin texture, balanced shadows, and sophisticated color harmony. Add a subtle high-end cover-shoot feeling with strong composition and excellent material realism.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'google:4@3',
  positivePrompt: 'Create a luxury fashion editorial composition that merges the subject from reference image 1, the jewelry styling motifs from reference image 2, and the architectural environment from reference image 3. Show the model standing confidently in the modern interior, wearing an elegant ivory tailored outfit accented with bold layered gold jewelry. Preserve a premium magazine aesthetic, refined pose, cinematic sunlight, crisp textile detail, realistic skin texture, balanced shadows, and sophisticated color harmony. Add a subtle high-end cover-shoot feeling with strong composition and excellent material realism.',
  width: 1264,
  height: 848,
  settings: {
    temperature: 0.72,
    topP: 0.95,
    thinking: 'HIGH'
  },
  providerSettings: {
    google: {
      safetyTolerance: 'off'
    }
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/75aefcce-72ed-4724-938d-5ee8e4aa7135.jpg',
      'https://assets.runware.ai/assets/inputs/126c9bf9-6190-448a-a23b-d454ca664c45.jpg',
      'https://assets.runware.ai/assets/inputs/63051915-2949-4583-abd2-03d7d59312ce.jpg'
    ]
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "google:4@3",
            "positivePrompt": "Create a luxury fashion editorial composition that merges the subject from reference image 1, the jewelry styling motifs from reference image 2, and the architectural environment from reference image 3. Show the model standing confidently in the modern interior, wearing an elegant ivory tailored outfit accented with bold layered gold jewelry. Preserve a premium magazine aesthetic, refined pose, cinematic sunlight, crisp textile detail, realistic skin texture, balanced shadows, and sophisticated color harmony. Add a subtle high-end cover-shoot feeling with strong composition and excellent material realism.",
            "width": 1264,
            "height": 848,
            "settings": {
                "temperature": 0.72,
                "topP": 0.95,
                "thinking": "HIGH"
            },
            "providerSettings": {
                "google": {
                    "safetyTolerance": "off"
                }
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/75aefcce-72ed-4724-938d-5ee8e4aa7135.jpg",
                    "https://assets.runware.ai/assets/inputs/126c9bf9-6190-448a-a23b-d454ca664c45.jpg",
                    "https://assets.runware.ai/assets/inputs/63051915-2949-4583-abd2-03d7d59312ce.jpg"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "ad37991f-9336-4899-96d1-a1ce6584843b",
      "model": "google:4@3",
      "positivePrompt": "Create a luxury fashion editorial composition that merges the subject from reference image 1, the jewelry styling motifs from reference image 2, and the architectural environment from reference image 3. Show the model standing confidently in the modern interior, wearing an elegant ivory tailored outfit accented with bold layered gold jewelry. Preserve a premium magazine aesthetic, refined pose, cinematic sunlight, crisp textile detail, realistic skin texture, balanced shadows, and sophisticated color harmony. Add a subtle high-end cover-shoot feeling with strong composition and excellent material realism.",
      "width": 1264,
      "height": 848,
      "settings": {
        "temperature": 0.72,
        "topP": 0.95,
        "thinking": "HIGH"
      },
      "providerSettings": {
        "google": {
          "safetyTolerance": "off"
        }
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/75aefcce-72ed-4724-938d-5ee8e4aa7135.jpg",
          "https://assets.runware.ai/assets/inputs/126c9bf9-6190-448a-a23b-d454ca664c45.jpg",
          "https://assets.runware.ai/assets/inputs/63051915-2949-4583-abd2-03d7d59312ce.jpg"
        ]
      }
    }
  ]'
runware run google:4@3 \
  positivePrompt="Create a luxury fashion editorial composition that merges the subject from reference image 1, the jewelry styling motifs from reference image 2, and the architectural environment from reference image 3. Show the model standing confidently in the modern interior, wearing an elegant ivory tailored outfit accented with bold layered gold jewelry. Preserve a premium magazine aesthetic, refined pose, cinematic sunlight, crisp textile detail, realistic skin texture, balanced shadows, and sophisticated color harmony. Add a subtle high-end cover-shoot feeling with strong composition and excellent material realism." \
  width=1264 \
  height=848 \
  settings.temperature=0.72 \
  settings.topP=0.95 \
  settings.thinking=HIGH \
  providerSettings.google.safetyTolerance=off \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/75aefcce-72ed-4724-938d-5ee8e4aa7135.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/126c9bf9-6190-448a-a23b-d454ca664c45.jpg \
  inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/63051915-2949-4583-abd2-03d7d59312ce.jpg
{
  "taskType": "imageInference",
  "taskUUID": "ad37991f-9336-4899-96d1-a1ce6584843b",
  "model": "google:4@3",
  "positivePrompt": "Create a luxury fashion editorial composition that merges the subject from reference image 1, the jewelry styling motifs from reference image 2, and the architectural environment from reference image 3. Show the model standing confidently in the modern interior, wearing an elegant ivory tailored outfit accented with bold layered gold jewelry. Preserve a premium magazine aesthetic, refined pose, cinematic sunlight, crisp textile detail, realistic skin texture, balanced shadows, and sophisticated color harmony. Add a subtle high-end cover-shoot feeling with strong composition and excellent material realism.",
  "width": 1264,
  "height": 848,
  "settings": {
    "temperature": 0.72,
    "topP": 0.95,
    "thinking": "HIGH"
  },
  "providerSettings": {
    "google": {
      "safetyTolerance": "off"
    }
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/75aefcce-72ed-4724-938d-5ee8e4aa7135.jpg",
      "https://assets.runware.ai/assets/inputs/126c9bf9-6190-448a-a23b-d454ca664c45.jpg",
      "https://assets.runware.ai/assets/inputs/63051915-2949-4583-abd2-03d7d59312ce.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "ad37991f-9336-4899-96d1-a1ce6584843b",
  "imageUUID": "0cd975bc-cc0f-4b35-acaf-4af962f6451e",
  "imageURL": "https://im.runware.ai/image/os/a23d05/ws/2/ii/0cd975bc-cc0f-4b35-acaf-4af962f6451e.jpg",
  "seed": 705629215,
  "cost": 0.06979
}
Text to Image

Neon Food-Truck Poster

Neon Food-Truck Poster

A premium commercial poster for a futuristic night market food truck parked under glowing neon signs in a rainy street, cinematic composition, ultra-detailed stainless steel truck, colorful steam rising from gourmet ramen bowls, diverse crowd in stylish streetwear, reflections on wet pavement, vibrant magenta and cyan lighting, crisp depth, dramatic perspective. Include a large illuminated menu board on the truck with clearly readable text: 'MIDNIGHT RAMEN', 'OPEN LATE', 'TONKOTSU', 'SPICY MISO', 'VEGAN SHOYU'. Add a small hanging sign that reads 'TOKYO LANE'. High-end food photography styling mixed with cyberpunk atmosphere, sharp details, expressive lighting, clean typography, no gibberish text.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'google:4@3',
  positivePrompt: 'A premium commercial poster for a futuristic night market food truck parked under glowing neon signs in a rainy street, cinematic composition, ultra-detailed stainless steel truck, colorful steam rising from gourmet ramen bowls, diverse crowd in stylish streetwear, reflections on wet pavement, vibrant magenta and cyan lighting, crisp depth, dramatic perspective. Include a large illuminated menu board on the truck with clearly readable text: \'MIDNIGHT RAMEN\', \'OPEN LATE\', \'TONKOTSU\', \'SPICY MISO\', \'VEGAN SHOYU\'. Add a small hanging sign that reads \'TOKYO LANE\'. High-end food photography styling mixed with cyberpunk atmosphere, sharp details, expressive lighting, clean typography, no gibberish text.',
  width: 1264,
  height: 848,
  settings: {
    temperature: 0.72,
    topP: 0.9,
    thinking: 'HIGH'
  },
  providerSettings: {
    google: {
      safetyTolerance: 'off'
    }
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "google:4@3",
            "positivePrompt": "A premium commercial poster for a futuristic night market food truck parked under glowing neon signs in a rainy street, cinematic composition, ultra-detailed stainless steel truck, colorful steam rising from gourmet ramen bowls, diverse crowd in stylish streetwear, reflections on wet pavement, vibrant magenta and cyan lighting, crisp depth, dramatic perspective. Include a large illuminated menu board on the truck with clearly readable text: 'MIDNIGHT RAMEN', 'OPEN LATE', 'TONKOTSU', 'SPICY MISO', 'VEGAN SHOYU'. Add a small hanging sign that reads 'TOKYO LANE'. High-end food photography styling mixed with cyberpunk atmosphere, sharp details, expressive lighting, clean typography, no gibberish text.",
            "width": 1264,
            "height": 848,
            "settings": {
                "temperature": 0.72,
                "topP": 0.9,
                "thinking": "HIGH"
            },
            "providerSettings": {
                "google": {
                    "safetyTolerance": "off"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "16830039-18a1-48fc-b10a-3f40efdf519a",
      "model": "google:4@3",
      "positivePrompt": "A premium commercial poster for a futuristic night market food truck parked under glowing neon signs in a rainy street, cinematic composition, ultra-detailed stainless steel truck, colorful steam rising from gourmet ramen bowls, diverse crowd in stylish streetwear, reflections on wet pavement, vibrant magenta and cyan lighting, crisp depth, dramatic perspective. Include a large illuminated menu board on the truck with clearly readable text: 'MIDNIGHT RAMEN', 'OPEN LATE', 'TONKOTSU', 'SPICY MISO', 'VEGAN SHOYU'. Add a small hanging sign that reads 'TOKYO LANE'. High-end food photography styling mixed with cyberpunk atmosphere, sharp details, expressive lighting, clean typography, no gibberish text.",
      "width": 1264,
      "height": 848,
      "settings": {
        "temperature": 0.72,
        "topP": 0.9,
        "thinking": "HIGH"
      },
      "providerSettings": {
        "google": {
          "safetyTolerance": "off"
        }
      }
    }
  ]'
runware run google:4@3 \
  positivePrompt="A premium commercial poster for a futuristic night market food truck parked under glowing neon signs in a rainy street, cinematic composition, ultra-detailed stainless steel truck, colorful steam rising from gourmet ramen bowls, diverse crowd in stylish streetwear, reflections on wet pavement, vibrant magenta and cyan lighting, crisp depth, dramatic perspective. Include a large illuminated menu board on the truck with clearly readable text: 'MIDNIGHT RAMEN', 'OPEN LATE', 'TONKOTSU', 'SPICY MISO', 'VEGAN SHOYU'. Add a small hanging sign that reads 'TOKYO LANE'. High-end food photography styling mixed with cyberpunk atmosphere, sharp details, expressive lighting, clean typography, no gibberish text." \
  width=1264 \
  height=848 \
  settings.temperature=0.72 \
  settings.topP=0.9 \
  settings.thinking=HIGH \
  providerSettings.google.safetyTolerance=off
{
  "taskType": "imageInference",
  "taskUUID": "16830039-18a1-48fc-b10a-3f40efdf519a",
  "model": "google:4@3",
  "positivePrompt": "A premium commercial poster for a futuristic night market food truck parked under glowing neon signs in a rainy street, cinematic composition, ultra-detailed stainless steel truck, colorful steam rising from gourmet ramen bowls, diverse crowd in stylish streetwear, reflections on wet pavement, vibrant magenta and cyan lighting, crisp depth, dramatic perspective. Include a large illuminated menu board on the truck with clearly readable text: 'MIDNIGHT RAMEN', 'OPEN LATE', 'TONKOTSU', 'SPICY MISO', 'VEGAN SHOYU'. Add a small hanging sign that reads 'TOKYO LANE'. High-end food photography styling mixed with cyberpunk atmosphere, sharp details, expressive lighting, clean typography, no gibberish text.",
  "width": 1264,
  "height": 848,
  "settings": {
    "temperature": 0.72,
    "topP": 0.9,
    "thinking": "HIGH"
  },
  "providerSettings": {
    "google": {
      "safetyTolerance": "off"
    }
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "16830039-18a1-48fc-b10a-3f40efdf519a",
  "imageUUID": "a92e81cb-5e64-4bda-b378-0028ca847637",
  "imageURL": "https://im.runware.ai/image/os/a13d12/ws/2/ii/a92e81cb-5e64-4bda-b378-0028ca847637.jpg",
  "seed": 1465087545,
  "cost": 0.06895
}
Text to Image

Retro Arcade Poster

Retro Arcade Poster

A bold retro-futurist arcade poster for a fictional game called 'NEON DRIFT'. A chrome magenta sports hovercar races through a glowing synthwave city at night, giant holographic billboards, electric rain, teal and pink reflections on the street, dramatic cinematic perspective, dense atmosphere, razor-sharp details, expressive lighting, polished poster composition. Include crisp readable title text at the top: 'NEON DRIFT'. Include smaller subtitle text at the bottom: 'MIDNIGHT CIRCUIT CHAMPIONSHIP'. High contrast, premium graphic design, vibrant colors, clean typography, ultra-detailed, visually striking.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'google:4@3',
  positivePrompt: 'A bold retro-futurist arcade poster for a fictional game called \'NEON DRIFT\'. A chrome magenta sports hovercar races through a glowing synthwave city at night, giant holographic billboards, electric rain, teal and pink reflections on the street, dramatic cinematic perspective, dense atmosphere, razor-sharp details, expressive lighting, polished poster composition. Include crisp readable title text at the top: \'NEON DRIFT\'. Include smaller subtitle text at the bottom: \'MIDNIGHT CIRCUIT CHAMPIONSHIP\'. High contrast, premium graphic design, vibrant colors, clean typography, ultra-detailed, visually striking.',
  width: 1264,
  height: 848,
  settings: {
    thinking: 'HIGH',
    temperature: 0.82,
    topP: 0.95,
    systemPrompt: 'Generate a highly polished image that prioritizes instruction following, coherent composition, accurate embedded text rendering, and rich cinematic lighting.'
  },
  providerSettings: {
    google: {
      imageSearch: false,
      webSearch: false,
      safetyTolerance: 'off'
    }
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "google:4@3",
            "positivePrompt": "A bold retro-futurist arcade poster for a fictional game called 'NEON DRIFT'. A chrome magenta sports hovercar races through a glowing synthwave city at night, giant holographic billboards, electric rain, teal and pink reflections on the street, dramatic cinematic perspective, dense atmosphere, razor-sharp details, expressive lighting, polished poster composition. Include crisp readable title text at the top: 'NEON DRIFT'. Include smaller subtitle text at the bottom: 'MIDNIGHT CIRCUIT CHAMPIONSHIP'. High contrast, premium graphic design, vibrant colors, clean typography, ultra-detailed, visually striking.",
            "width": 1264,
            "height": 848,
            "settings": {
                "thinking": "HIGH",
                "temperature": 0.82,
                "topP": 0.95,
                "systemPrompt": "Generate a highly polished image that prioritizes instruction following, coherent composition, accurate embedded text rendering, and rich cinematic lighting."
            },
            "providerSettings": {
                "google": {
                    "imageSearch": False,
                    "webSearch": False,
                    "safetyTolerance": "off"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "f61cb15d-3d7f-40d8-a5ab-bdc8ad3361a5",
      "model": "google:4@3",
      "positivePrompt": "A bold retro-futurist arcade poster for a fictional game called 'NEON DRIFT'. A chrome magenta sports hovercar races through a glowing synthwave city at night, giant holographic billboards, electric rain, teal and pink reflections on the street, dramatic cinematic perspective, dense atmosphere, razor-sharp details, expressive lighting, polished poster composition. Include crisp readable title text at the top: 'NEON DRIFT'. Include smaller subtitle text at the bottom: 'MIDNIGHT CIRCUIT CHAMPIONSHIP'. High contrast, premium graphic design, vibrant colors, clean typography, ultra-detailed, visually striking.",
      "width": 1264,
      "height": 848,
      "settings": {
        "thinking": "HIGH",
        "temperature": 0.82,
        "topP": 0.95,
        "systemPrompt": "Generate a highly polished image that prioritizes instruction following, coherent composition, accurate embedded text rendering, and rich cinematic lighting."
      },
      "providerSettings": {
        "google": {
          "imageSearch": false,
          "webSearch": false,
          "safetyTolerance": "off"
        }
      }
    }
  ]'
runware run google:4@3 \
  positivePrompt="A bold retro-futurist arcade poster for a fictional game called 'NEON DRIFT'. A chrome magenta sports hovercar races through a glowing synthwave city at night, giant holographic billboards, electric rain, teal and pink reflections on the street, dramatic cinematic perspective, dense atmosphere, razor-sharp details, expressive lighting, polished poster composition. Include crisp readable title text at the top: 'NEON DRIFT'. Include smaller subtitle text at the bottom: 'MIDNIGHT CIRCUIT CHAMPIONSHIP'. High contrast, premium graphic design, vibrant colors, clean typography, ultra-detailed, visually striking." \
  width=1264 \
  height=848 \
  settings.thinking=HIGH \
  settings.temperature=0.82 \
  settings.topP=0.95 \
  settings.systemPrompt="Generate a highly polished image that prioritizes instruction following, coherent composition, accurate embedded text rendering, and rich cinematic lighting." \
  providerSettings.google.imageSearch=false \
  providerSettings.google.webSearch=false \
  providerSettings.google.safetyTolerance=off
{
  "taskType": "imageInference",
  "taskUUID": "f61cb15d-3d7f-40d8-a5ab-bdc8ad3361a5",
  "model": "google:4@3",
  "positivePrompt": "A bold retro-futurist arcade poster for a fictional game called 'NEON DRIFT'. A chrome magenta sports hovercar races through a glowing synthwave city at night, giant holographic billboards, electric rain, teal and pink reflections on the street, dramatic cinematic perspective, dense atmosphere, razor-sharp details, expressive lighting, polished poster composition. Include crisp readable title text at the top: 'NEON DRIFT'. Include smaller subtitle text at the bottom: 'MIDNIGHT CIRCUIT CHAMPIONSHIP'. High contrast, premium graphic design, vibrant colors, clean typography, ultra-detailed, visually striking.",
  "width": 1264,
  "height": 848,
  "settings": {
    "thinking": "HIGH",
    "temperature": 0.82,
    "topP": 0.95,
    "systemPrompt": "Generate a highly polished image that prioritizes instruction following, coherent composition, accurate embedded text rendering, and rich cinematic lighting."
  },
  "providerSettings": {
    "google": {
      "imageSearch": false,
      "webSearch": false,
      "safetyTolerance": "off"
    }
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "f61cb15d-3d7f-40d8-a5ab-bdc8ad3361a5",
  "imageUUID": "360d09c1-6934-42dc-a7bd-b5b0ccbd0858",
  "imageURL": "https://im.runware.ai/image/os/a24d12/ws/2/ii/360d09c1-6934-42dc-a7bd-b5b0ccbd0858.jpg",
  "seed": 1466209441,
  "cost": 0.06895
}
Text to Image

Grounded Travel Poster

Grounded Travel Poster

A premium editorial travel poster for Kyoto, Japan in peak spring season, featuring a serene canal lined with cherry blossoms, traditional wooden machiya houses, warm lantern light, distant temple rooftops, and stylish contemporary typography reading 'KYOTO' with smaller subtitle text 'Spring City Guide'. Elegant magazine-cover composition, ultra-detailed petals, cinematic golden-hour lighting, realistic water reflections, balanced negative space for layout, refined color grading, crisp legible text, sophisticated tourism campaign aesthetic.

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'google:4@3',
  positivePrompt: 'A premium editorial travel poster for Kyoto, Japan in peak spring season, featuring a serene canal lined with cherry blossoms, traditional wooden machiya houses, warm lantern light, distant temple rooftops, and stylish contemporary typography reading \'KYOTO\' with smaller subtitle text \'Spring City Guide\'. Elegant magazine-cover composition, ultra-detailed petals, cinematic golden-hour lighting, realistic water reflections, balanced negative space for layout, refined color grading, crisp legible text, sophisticated tourism campaign aesthetic.',
  width: 1264,
  height: 848,
  settings: {
    temperature: 0.72,
    topP: 0.95,
    thinking: 'HIGH'
  },
  providerSettings: {
    google: {
      webSearch: true,
      safetyTolerance: 'off'
    }
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "google:4@3",
            "positivePrompt": "A premium editorial travel poster for Kyoto, Japan in peak spring season, featuring a serene canal lined with cherry blossoms, traditional wooden machiya houses, warm lantern light, distant temple rooftops, and stylish contemporary typography reading 'KYOTO' with smaller subtitle text 'Spring City Guide'. Elegant magazine-cover composition, ultra-detailed petals, cinematic golden-hour lighting, realistic water reflections, balanced negative space for layout, refined color grading, crisp legible text, sophisticated tourism campaign aesthetic.",
            "width": 1264,
            "height": 848,
            "settings": {
                "temperature": 0.72,
                "topP": 0.95,
                "thinking": "HIGH"
            },
            "providerSettings": {
                "google": {
                    "webSearch": True,
                    "safetyTolerance": "off"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "9b064579-dc1a-4667-8c05-3da9bbf98d89",
      "model": "google:4@3",
      "positivePrompt": "A premium editorial travel poster for Kyoto, Japan in peak spring season, featuring a serene canal lined with cherry blossoms, traditional wooden machiya houses, warm lantern light, distant temple rooftops, and stylish contemporary typography reading 'KYOTO' with smaller subtitle text 'Spring City Guide'. Elegant magazine-cover composition, ultra-detailed petals, cinematic golden-hour lighting, realistic water reflections, balanced negative space for layout, refined color grading, crisp legible text, sophisticated tourism campaign aesthetic.",
      "width": 1264,
      "height": 848,
      "settings": {
        "temperature": 0.72,
        "topP": 0.95,
        "thinking": "HIGH"
      },
      "providerSettings": {
        "google": {
          "webSearch": true,
          "safetyTolerance": "off"
        }
      }
    }
  ]'
runware run google:4@3 \
  positivePrompt="A premium editorial travel poster for Kyoto, Japan in peak spring season, featuring a serene canal lined with cherry blossoms, traditional wooden machiya houses, warm lantern light, distant temple rooftops, and stylish contemporary typography reading 'KYOTO' with smaller subtitle text 'Spring City Guide'. Elegant magazine-cover composition, ultra-detailed petals, cinematic golden-hour lighting, realistic water reflections, balanced negative space for layout, refined color grading, crisp legible text, sophisticated tourism campaign aesthetic." \
  width=1264 \
  height=848 \
  settings.temperature=0.72 \
  settings.topP=0.95 \
  settings.thinking=HIGH \
  providerSettings.google.webSearch=true \
  providerSettings.google.safetyTolerance=off
{
  "taskType": "imageInference",
  "taskUUID": "9b064579-dc1a-4667-8c05-3da9bbf98d89",
  "model": "google:4@3",
  "positivePrompt": "A premium editorial travel poster for Kyoto, Japan in peak spring season, featuring a serene canal lined with cherry blossoms, traditional wooden machiya houses, warm lantern light, distant temple rooftops, and stylish contemporary typography reading 'KYOTO' with smaller subtitle text 'Spring City Guide'. Elegant magazine-cover composition, ultra-detailed petals, cinematic golden-hour lighting, realistic water reflections, balanced negative space for layout, refined color grading, crisp legible text, sophisticated tourism campaign aesthetic.",
  "width": 1264,
  "height": 848,
  "settings": {
    "temperature": 0.72,
    "topP": 0.95,
    "thinking": "HIGH"
  },
  "providerSettings": {
    "google": {
      "webSearch": true,
      "safetyTolerance": "off"
    }
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "9b064579-dc1a-4667-8c05-3da9bbf98d89",
  "imageUUID": "2d578240-50ca-4bc2-9f48-d6027c04b30f",
  "imageURL": "https://im.runware.ai/image/os/a22d05/ws/2/ii/2d578240-50ca-4bc2-9f48-d6027c04b30f.jpg",
  "seed": 538258016,
  "cost": 0.06895
}