MODEL IDluma:uni@1-max
live

UNI-1 Max

Luma
by Luma

UNI-1 Max is the quality-first variant in Luma's UNI-1 image family for both image creation and precision image editing. It uses the same API shape and capability set as UNI-1, but is tuned for higher-quality output when detail, polish, and final-image quality matter more than using the default variant.

UNI-1 Max
text-to-image

Big Boy Locomotive Cutaway Plate

Big Boy Locomotive Cutaway Plate

Create a finished panoramic technical cutaway illustration for a railway museum exhibition about Union Pacific Big Boy No. 4014. Show the complete locomotive and its tender in a precise left-facing side elevation, centered and spanning nearly the full width with comfortable margins. Preserve the recognizable real-world proportions and construction of this specific restored locomotive: 4-8-8-4 wheel arrangement, articulated front engine, two sets of eight driving wheels, accurate side rods and valve gear, long boiler, smokebox, firebox, cab, and large tender. Retain historically accurate UNION PACIFIC and 4014 markings where they appear on the actual locomotive. Use selective cutaway sections to reveal the boiler tubes, steam dome, regulator path, cylinders, firebox, combustion chamber, cab controls, coal and water compartments, while keeping the exterior silhouette immediately legible. Apply restrained functional color coding inside the machinery: oxide orange for fire and hot gases, muted teal for water, pale blue-gray for steam, and brass accents for valves; exterior surfaces remain graphite black and warm steel. Render components with crisp mechanical detail, convincing material texture, subtle sectional hatching, and clean diagrammatic separation. No floating parts, speculative machinery, decorative scenery, people, labels, captions, numbered callouts, title block, border, or poster mockup. Background is flat warm ivory with a faint grounded shadow beneath the wheels. Contemporary museum-science art direction combining archival engineering plates, precise digital gouache, and elegant editorial infographics; authoritative, educational, uncluttered, and suitable as the image centerpiece of a large interpretive wall panel.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1-max',
  positivePrompt: 'Create a finished panoramic technical cutaway illustration for a railway museum exhibition about Union Pacific Big Boy No. 4014. Show the complete locomotive and its tender in a precise left-facing side elevation, centered and spanning nearly the full width with comfortable margins. Preserve the recognizable real-world proportions and construction of this specific restored locomotive: 4-8-8-4 wheel arrangement, articulated front engine, two sets of eight driving wheels, accurate side rods and valve gear, long boiler, smokebox, firebox, cab, and large tender. Retain historically accurate UNION PACIFIC and 4014 markings where they appear on the actual locomotive.\n\nUse selective cutaway sections to reveal the boiler tubes, steam dome, regulator path, cylinders, firebox, combustion chamber, cab controls, coal and water compartments, while keeping the exterior silhouette immediately legible. Apply restrained functional color coding inside the machinery: oxide orange for fire and hot gases, muted teal for water, pale blue-gray for steam, and brass accents for valves; exterior surfaces remain graphite black and warm steel. Render components with crisp mechanical detail, convincing material texture, subtle sectional hatching, and clean diagrammatic separation. No floating parts, speculative machinery, decorative scenery, people, labels, captions, numbered callouts, title block, border, or poster mockup. Background is flat warm ivory with a faint grounded shadow beneath the wheels. Contemporary museum-science art direction combining archival engineering plates, precise digital gouache, and elegant editorial infographics; authoritative, educational, uncluttered, and suitable as the image centerpiece of a large interpretive wall panel.',
  width: 2784,
  height: 1504,
  settings: {
    search: true,
    style: 'auto'
  }
})
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": "luma:uni@1-max",
            "positivePrompt": "Create a finished panoramic technical cutaway illustration for a railway museum exhibition about Union Pacific Big Boy No. 4014. Show the complete locomotive and its tender in a precise left-facing side elevation, centered and spanning nearly the full width with comfortable margins. Preserve the recognizable real-world proportions and construction of this specific restored locomotive: 4-8-8-4 wheel arrangement, articulated front engine, two sets of eight driving wheels, accurate side rods and valve gear, long boiler, smokebox, firebox, cab, and large tender. Retain historically accurate UNION PACIFIC and 4014 markings where they appear on the actual locomotive.\n\nUse selective cutaway sections to reveal the boiler tubes, steam dome, regulator path, cylinders, firebox, combustion chamber, cab controls, coal and water compartments, while keeping the exterior silhouette immediately legible. Apply restrained functional color coding inside the machinery: oxide orange for fire and hot gases, muted teal for water, pale blue-gray for steam, and brass accents for valves; exterior surfaces remain graphite black and warm steel. Render components with crisp mechanical detail, convincing material texture, subtle sectional hatching, and clean diagrammatic separation. No floating parts, speculative machinery, decorative scenery, people, labels, captions, numbered callouts, title block, border, or poster mockup. Background is flat warm ivory with a faint grounded shadow beneath the wheels. Contemporary museum-science art direction combining archival engineering plates, precise digital gouache, and elegant editorial infographics; authoritative, educational, uncluttered, and suitable as the image centerpiece of a large interpretive wall panel.",
            "width": 2784,
            "height": 1504,
            "settings": {
                "search": True,
                "style": "auto"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "caed9178-e540-4545-8ad1-68a1f810fc42",
      "model": "luma:uni@1-max",
      "positivePrompt": "Create a finished panoramic technical cutaway illustration for a railway museum exhibition about Union Pacific Big Boy No. 4014. Show the complete locomotive and its tender in a precise left-facing side elevation, centered and spanning nearly the full width with comfortable margins. Preserve the recognizable real-world proportions and construction of this specific restored locomotive: 4-8-8-4 wheel arrangement, articulated front engine, two sets of eight driving wheels, accurate side rods and valve gear, long boiler, smokebox, firebox, cab, and large tender. Retain historically accurate UNION PACIFIC and 4014 markings where they appear on the actual locomotive.\n\nUse selective cutaway sections to reveal the boiler tubes, steam dome, regulator path, cylinders, firebox, combustion chamber, cab controls, coal and water compartments, while keeping the exterior silhouette immediately legible. Apply restrained functional color coding inside the machinery: oxide orange for fire and hot gases, muted teal for water, pale blue-gray for steam, and brass accents for valves; exterior surfaces remain graphite black and warm steel. Render components with crisp mechanical detail, convincing material texture, subtle sectional hatching, and clean diagrammatic separation. No floating parts, speculative machinery, decorative scenery, people, labels, captions, numbered callouts, title block, border, or poster mockup. Background is flat warm ivory with a faint grounded shadow beneath the wheels. Contemporary museum-science art direction combining archival engineering plates, precise digital gouache, and elegant editorial infographics; authoritative, educational, uncluttered, and suitable as the image centerpiece of a large interpretive wall panel.",
      "width": 2784,
      "height": 1504,
      "settings": {
        "search": true,
        "style": "auto"
      }
    }
  ]'
runware run luma:uni@1-max \
  positivePrompt="Create a finished panoramic technical cutaway illustration for a railway museum exhibition about Union Pacific Big Boy No. 4014. Show the complete locomotive and its tender in a precise left-facing side elevation, centered and spanning nearly the full width with comfortable margins. Preserve the recognizable real-world proportions and construction of this specific restored locomotive: 4-8-8-4 wheel arrangement, articulated front engine, two sets of eight driving wheels, accurate side rods and valve gear, long boiler, smokebox, firebox, cab, and large tender. Retain historically accurate UNION PACIFIC and 4014 markings where they appear on the actual locomotive.

Use selective cutaway sections to reveal the boiler tubes, steam dome, regulator path, cylinders, firebox, combustion chamber, cab controls, coal and water compartments, while keeping the exterior silhouette immediately legible. Apply restrained functional color coding inside the machinery: oxide orange for fire and hot gases, muted teal for water, pale blue-gray for steam, and brass accents for valves; exterior surfaces remain graphite black and warm steel. Render components with crisp mechanical detail, convincing material texture, subtle sectional hatching, and clean diagrammatic separation. No floating parts, speculative machinery, decorative scenery, people, labels, captions, numbered callouts, title block, border, or poster mockup. Background is flat warm ivory with a faint grounded shadow beneath the wheels. Contemporary museum-science art direction combining archival engineering plates, precise digital gouache, and elegant editorial infographics; authoritative, educational, uncluttered, and suitable as the image centerpiece of a large interpretive wall panel." \
  width=2784 \
  height=1504 \
  settings.search=true \
  settings.style=auto
{
  "taskType": "imageInference",
  "taskUUID": "caed9178-e540-4545-8ad1-68a1f810fc42",
  "model": "luma:uni@1-max",
  "positivePrompt": "Create a finished panoramic technical cutaway illustration for a railway museum exhibition about Union Pacific Big Boy No. 4014. Show the complete locomotive and its tender in a precise left-facing side elevation, centered and spanning nearly the full width with comfortable margins. Preserve the recognizable real-world proportions and construction of this specific restored locomotive: 4-8-8-4 wheel arrangement, articulated front engine, two sets of eight driving wheels, accurate side rods and valve gear, long boiler, smokebox, firebox, cab, and large tender. Retain historically accurate UNION PACIFIC and 4014 markings where they appear on the actual locomotive.\n\nUse selective cutaway sections to reveal the boiler tubes, steam dome, regulator path, cylinders, firebox, combustion chamber, cab controls, coal and water compartments, while keeping the exterior silhouette immediately legible. Apply restrained functional color coding inside the machinery: oxide orange for fire and hot gases, muted teal for water, pale blue-gray for steam, and brass accents for valves; exterior surfaces remain graphite black and warm steel. Render components with crisp mechanical detail, convincing material texture, subtle sectional hatching, and clean diagrammatic separation. No floating parts, speculative machinery, decorative scenery, people, labels, captions, numbered callouts, title block, border, or poster mockup. Background is flat warm ivory with a faint grounded shadow beneath the wheels. Contemporary museum-science art direction combining archival engineering plates, precise digital gouache, and elegant editorial infographics; authoritative, educational, uncluttered, and suitable as the image centerpiece of a large interpretive wall panel.",
  "width": 2784,
  "height": 1504,
  "settings": {
    "search": true,
    "style": "auto"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "caed9178-e540-4545-8ad1-68a1f810fc42",
  "imageUUID": "c6de739a-6451-4352-ab48-f71f54f4049c",
  "imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/c6de739a-6451-4352-ab48-f71f54f4049c.jpg",
  "seed": 266572957,
  "cost": 0.1
}
text-to-image

Adaptive Commuter Rainwear Lookbook

Adaptive Commuter Rainwear Lookbook

High-end fashion lookbook photograph for an adaptive commuter rainwear collection, photographed outside the architecturally accurate Rotterdam Centraal station in the Netherlands. Three adult models form a clean staggered lineup beneath the station’s dramatic angular stainless-steel roof: a wheelchair user in a cropped cobalt waterproof shell with a longer seated back, magnetic storm flap, articulated sleeves and matching charcoal trousers; a standing model with a forearm crutch wearing a matte aubergine trench with asymmetric easy-access closures; and a standing model in a compact acid-yellow packable rain cape over tailored slate commuter wear. Diverse casting, natural confidence, calm neutral expressions. Show every outfit clearly from head to toe, with realistic garment construction, seams, fasteners, fabric texture and functional adaptive details. Wide landscape composition with generous negative space, straight architectural lines and the station facade clearly recognizable but subordinate to the clothing. Cool overcast daylight after rain, soft directional highlights on wet pavement and brushed metal, restrained cobalt, aubergine, acid yellow, graphite and silver palette. Precise contemporary European catalog art direction, crisp editorial photography, eye-level camera, 50mm lens character, moderate depth of field, polished but believable skin and fabric, no dramatic action. One finished standalone image, no collage, no inset detail frames, no captions, no logos, no added typography, no borders.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1-max',
  positivePrompt: 'High-end fashion lookbook photograph for an adaptive commuter rainwear collection, photographed outside the architecturally accurate Rotterdam Centraal station in the Netherlands. Three adult models form a clean staggered lineup beneath the station’s dramatic angular stainless-steel roof: a wheelchair user in a cropped cobalt waterproof shell with a longer seated back, magnetic storm flap, articulated sleeves and matching charcoal trousers; a standing model with a forearm crutch wearing a matte aubergine trench with asymmetric easy-access closures; and a standing model in a compact acid-yellow packable rain cape over tailored slate commuter wear. Diverse casting, natural confidence, calm neutral expressions. Show every outfit clearly from head to toe, with realistic garment construction, seams, fasteners, fabric texture and functional adaptive details. Wide landscape composition with generous negative space, straight architectural lines and the station facade clearly recognizable but subordinate to the clothing. Cool overcast daylight after rain, soft directional highlights on wet pavement and brushed metal, restrained cobalt, aubergine, acid yellow, graphite and silver palette. Precise contemporary European catalog art direction, crisp editorial photography, eye-level camera, 50mm lens character, moderate depth of field, polished but believable skin and fabric, no dramatic action. One finished standalone image, no collage, no inset detail frames, no captions, no logos, no added typography, no borders.',
  width: 2784,
  height: 1504,
  settings: {
    search: true,
    style: 'auto'
  }
})
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": "luma:uni@1-max",
            "positivePrompt": "High-end fashion lookbook photograph for an adaptive commuter rainwear collection, photographed outside the architecturally accurate Rotterdam Centraal station in the Netherlands. Three adult models form a clean staggered lineup beneath the station’s dramatic angular stainless-steel roof: a wheelchair user in a cropped cobalt waterproof shell with a longer seated back, magnetic storm flap, articulated sleeves and matching charcoal trousers; a standing model with a forearm crutch wearing a matte aubergine trench with asymmetric easy-access closures; and a standing model in a compact acid-yellow packable rain cape over tailored slate commuter wear. Diverse casting, natural confidence, calm neutral expressions. Show every outfit clearly from head to toe, with realistic garment construction, seams, fasteners, fabric texture and functional adaptive details. Wide landscape composition with generous negative space, straight architectural lines and the station facade clearly recognizable but subordinate to the clothing. Cool overcast daylight after rain, soft directional highlights on wet pavement and brushed metal, restrained cobalt, aubergine, acid yellow, graphite and silver palette. Precise contemporary European catalog art direction, crisp editorial photography, eye-level camera, 50mm lens character, moderate depth of field, polished but believable skin and fabric, no dramatic action. One finished standalone image, no collage, no inset detail frames, no captions, no logos, no added typography, no borders.",
            "width": 2784,
            "height": 1504,
            "settings": {
                "search": True,
                "style": "auto"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "9b0f3db3-4a7e-41ca-bd6c-4103f0f16670",
      "model": "luma:uni@1-max",
      "positivePrompt": "High-end fashion lookbook photograph for an adaptive commuter rainwear collection, photographed outside the architecturally accurate Rotterdam Centraal station in the Netherlands. Three adult models form a clean staggered lineup beneath the station’s dramatic angular stainless-steel roof: a wheelchair user in a cropped cobalt waterproof shell with a longer seated back, magnetic storm flap, articulated sleeves and matching charcoal trousers; a standing model with a forearm crutch wearing a matte aubergine trench with asymmetric easy-access closures; and a standing model in a compact acid-yellow packable rain cape over tailored slate commuter wear. Diverse casting, natural confidence, calm neutral expressions. Show every outfit clearly from head to toe, with realistic garment construction, seams, fasteners, fabric texture and functional adaptive details. Wide landscape composition with generous negative space, straight architectural lines and the station facade clearly recognizable but subordinate to the clothing. Cool overcast daylight after rain, soft directional highlights on wet pavement and brushed metal, restrained cobalt, aubergine, acid yellow, graphite and silver palette. Precise contemporary European catalog art direction, crisp editorial photography, eye-level camera, 50mm lens character, moderate depth of field, polished but believable skin and fabric, no dramatic action. One finished standalone image, no collage, no inset detail frames, no captions, no logos, no added typography, no borders.",
      "width": 2784,
      "height": 1504,
      "settings": {
        "search": true,
        "style": "auto"
      }
    }
  ]'
runware run luma:uni@1-max \
  positivePrompt="High-end fashion lookbook photograph for an adaptive commuter rainwear collection, photographed outside the architecturally accurate Rotterdam Centraal station in the Netherlands. Three adult models form a clean staggered lineup beneath the station’s dramatic angular stainless-steel roof: a wheelchair user in a cropped cobalt waterproof shell with a longer seated back, magnetic storm flap, articulated sleeves and matching charcoal trousers; a standing model with a forearm crutch wearing a matte aubergine trench with asymmetric easy-access closures; and a standing model in a compact acid-yellow packable rain cape over tailored slate commuter wear. Diverse casting, natural confidence, calm neutral expressions. Show every outfit clearly from head to toe, with realistic garment construction, seams, fasteners, fabric texture and functional adaptive details. Wide landscape composition with generous negative space, straight architectural lines and the station facade clearly recognizable but subordinate to the clothing. Cool overcast daylight after rain, soft directional highlights on wet pavement and brushed metal, restrained cobalt, aubergine, acid yellow, graphite and silver palette. Precise contemporary European catalog art direction, crisp editorial photography, eye-level camera, 50mm lens character, moderate depth of field, polished but believable skin and fabric, no dramatic action. One finished standalone image, no collage, no inset detail frames, no captions, no logos, no added typography, no borders." \
  width=2784 \
  height=1504 \
  settings.search=true \
  settings.style=auto
{
  "taskType": "imageInference",
  "taskUUID": "9b0f3db3-4a7e-41ca-bd6c-4103f0f16670",
  "model": "luma:uni@1-max",
  "positivePrompt": "High-end fashion lookbook photograph for an adaptive commuter rainwear collection, photographed outside the architecturally accurate Rotterdam Centraal station in the Netherlands. Three adult models form a clean staggered lineup beneath the station’s dramatic angular stainless-steel roof: a wheelchair user in a cropped cobalt waterproof shell with a longer seated back, magnetic storm flap, articulated sleeves and matching charcoal trousers; a standing model with a forearm crutch wearing a matte aubergine trench with asymmetric easy-access closures; and a standing model in a compact acid-yellow packable rain cape over tailored slate commuter wear. Diverse casting, natural confidence, calm neutral expressions. Show every outfit clearly from head to toe, with realistic garment construction, seams, fasteners, fabric texture and functional adaptive details. Wide landscape composition with generous negative space, straight architectural lines and the station facade clearly recognizable but subordinate to the clothing. Cool overcast daylight after rain, soft directional highlights on wet pavement and brushed metal, restrained cobalt, aubergine, acid yellow, graphite and silver palette. Precise contemporary European catalog art direction, crisp editorial photography, eye-level camera, 50mm lens character, moderate depth of field, polished but believable skin and fabric, no dramatic action. One finished standalone image, no collage, no inset detail frames, no captions, no logos, no added typography, no borders.",
  "width": 2784,
  "height": 1504,
  "settings": {
    "search": true,
    "style": "auto"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "9b0f3db3-4a7e-41ca-bd6c-4103f0f16670",
  "imageUUID": "18e7b87f-18d0-4130-ae4f-61162907947f",
  "imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/4/ii/18e7b87f-18d0-4130-ae4f-61162907947f.jpg",
  "seed": 526571735,
  "cost": 0.1
}
reference-to-image

Tidal Energy Manga Cover Expansion

Tidal Energy Manga Cover Expansion

Create a finished 1696x2464 portrait manga cover illustration by expanding the widescreen scene in Reference 1 into a much taller composition. Treat Reference 1 as the source image to preserve rather than a loose thematic suggestion: retain the technician’s exact facial identity, short blunt black bob with the single white forelock, amber eyes, freckles, proportions, safety-orange cropped jacket, navy waterproof overalls, gloves, clipped white hard hat, torque wrench, crouched working pose, and the central relationship between her body and the turbine housing. Keep this recognizable action near the visual center of the portrait frame. Outpaint substantial new scene content above and below the original widescreen composition. Above her, reveal the immense vertical interior of the tidal barrage: receding steel gantries, ladders, suspended cables, dripping beams, narrow skylights, and a high strip of cold daylight reflecting from the sea outside. Below her platform, extend into a deep turbine chamber with descending service stairs, foaming seawater, submerged structural ribs, schools of tiny silver fish, and the lower arc of the machinery disappearing into dark teal water. Use the added vertical architecture to emphasize scale and make the technician feel capable but small within a monumental renewable-energy facility. Use Reference 2 as the strict design reference for the tidal turbine and engineering details. Preserve its open-ring silhouette, six broad curved blades, segmented cobalt housing, orange maintenance locks, circular inspection hatches, grated rails, hydraulic lines, bolt patterns, barnacles, and salt-stained wet surfaces. Integrate those components naturally into the expanded environment without changing their functional construction. Premium serialized seinen manga artwork for a marine engineering outreach graphic novel: assured black ink contours, intricate mechanical draftsmanship, selective screentone, controlled speed-line accents around dripping water and turbine motion, cinematic perspective, and expressive but anatomically credible character drawing. Restrained palette of cobalt blue, deep navy, oxidized seafoam green, safety orange, cool gray, and white highlights. Moody, industrious, optimistic atmosphere after a storm. Strong portrait cover hierarchy with quieter open space in the upper section for later editorial titling, but render no words, logos, symbols, border, or typography. One clean standalone cover image, not a book 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: 'luma:uni@1-max',
  positivePrompt: 'Create a finished 1696x2464 portrait manga cover illustration by expanding the widescreen scene in Reference 1 into a much taller composition. Treat Reference 1 as the source image to preserve rather than a loose thematic suggestion: retain the technician’s exact facial identity, short blunt black bob with the single white forelock, amber eyes, freckles, proportions, safety-orange cropped jacket, navy waterproof overalls, gloves, clipped white hard hat, torque wrench, crouched working pose, and the central relationship between her body and the turbine housing. Keep this recognizable action near the visual center of the portrait frame.\n\nOutpaint substantial new scene content above and below the original widescreen composition. Above her, reveal the immense vertical interior of the tidal barrage: receding steel gantries, ladders, suspended cables, dripping beams, narrow skylights, and a high strip of cold daylight reflecting from the sea outside. Below her platform, extend into a deep turbine chamber with descending service stairs, foaming seawater, submerged structural ribs, schools of tiny silver fish, and the lower arc of the machinery disappearing into dark teal water. Use the added vertical architecture to emphasize scale and make the technician feel capable but small within a monumental renewable-energy facility.\n\nUse Reference 2 as the strict design reference for the tidal turbine and engineering details. Preserve its open-ring silhouette, six broad curved blades, segmented cobalt housing, orange maintenance locks, circular inspection hatches, grated rails, hydraulic lines, bolt patterns, barnacles, and salt-stained wet surfaces. Integrate those components naturally into the expanded environment without changing their functional construction.\n\nPremium serialized seinen manga artwork for a marine engineering outreach graphic novel: assured black ink contours, intricate mechanical draftsmanship, selective screentone, controlled speed-line accents around dripping water and turbine motion, cinematic perspective, and expressive but anatomically credible character drawing. Restrained palette of cobalt blue, deep navy, oxidized seafoam green, safety orange, cool gray, and white highlights. Moody, industrious, optimistic atmosphere after a storm. Strong portrait cover hierarchy with quieter open space in the upper section for later editorial titling, but render no words, logos, symbols, border, or typography. One clean standalone cover image, not a book mockup.',
  width: 1696,
  height: 2464,
  settings: {
    style: 'manga'
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/e4dc6fe3-6c4d-4d76-bbc7-1f7143e793e0.jpg',
      'https://assets.runware.ai/assets/inputs/df224051-142a-498d-b6ed-77278b2e8041.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": "luma:uni@1-max",
            "positivePrompt": "Create a finished 1696x2464 portrait manga cover illustration by expanding the widescreen scene in Reference 1 into a much taller composition. Treat Reference 1 as the source image to preserve rather than a loose thematic suggestion: retain the technician’s exact facial identity, short blunt black bob with the single white forelock, amber eyes, freckles, proportions, safety-orange cropped jacket, navy waterproof overalls, gloves, clipped white hard hat, torque wrench, crouched working pose, and the central relationship between her body and the turbine housing. Keep this recognizable action near the visual center of the portrait frame.\n\nOutpaint substantial new scene content above and below the original widescreen composition. Above her, reveal the immense vertical interior of the tidal barrage: receding steel gantries, ladders, suspended cables, dripping beams, narrow skylights, and a high strip of cold daylight reflecting from the sea outside. Below her platform, extend into a deep turbine chamber with descending service stairs, foaming seawater, submerged structural ribs, schools of tiny silver fish, and the lower arc of the machinery disappearing into dark teal water. Use the added vertical architecture to emphasize scale and make the technician feel capable but small within a monumental renewable-energy facility.\n\nUse Reference 2 as the strict design reference for the tidal turbine and engineering details. Preserve its open-ring silhouette, six broad curved blades, segmented cobalt housing, orange maintenance locks, circular inspection hatches, grated rails, hydraulic lines, bolt patterns, barnacles, and salt-stained wet surfaces. Integrate those components naturally into the expanded environment without changing their functional construction.\n\nPremium serialized seinen manga artwork for a marine engineering outreach graphic novel: assured black ink contours, intricate mechanical draftsmanship, selective screentone, controlled speed-line accents around dripping water and turbine motion, cinematic perspective, and expressive but anatomically credible character drawing. Restrained palette of cobalt blue, deep navy, oxidized seafoam green, safety orange, cool gray, and white highlights. Moody, industrious, optimistic atmosphere after a storm. Strong portrait cover hierarchy with quieter open space in the upper section for later editorial titling, but render no words, logos, symbols, border, or typography. One clean standalone cover image, not a book mockup.",
            "width": 1696,
            "height": 2464,
            "settings": {
                "style": "manga"
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/e4dc6fe3-6c4d-4d76-bbc7-1f7143e793e0.jpg",
                    "https://assets.runware.ai/assets/inputs/df224051-142a-498d-b6ed-77278b2e8041.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": "3e6be435-12b3-48c2-b0eb-61047a11f1be",
      "model": "luma:uni@1-max",
      "positivePrompt": "Create a finished 1696x2464 portrait manga cover illustration by expanding the widescreen scene in Reference 1 into a much taller composition. Treat Reference 1 as the source image to preserve rather than a loose thematic suggestion: retain the technician’s exact facial identity, short blunt black bob with the single white forelock, amber eyes, freckles, proportions, safety-orange cropped jacket, navy waterproof overalls, gloves, clipped white hard hat, torque wrench, crouched working pose, and the central relationship between her body and the turbine housing. Keep this recognizable action near the visual center of the portrait frame.\n\nOutpaint substantial new scene content above and below the original widescreen composition. Above her, reveal the immense vertical interior of the tidal barrage: receding steel gantries, ladders, suspended cables, dripping beams, narrow skylights, and a high strip of cold daylight reflecting from the sea outside. Below her platform, extend into a deep turbine chamber with descending service stairs, foaming seawater, submerged structural ribs, schools of tiny silver fish, and the lower arc of the machinery disappearing into dark teal water. Use the added vertical architecture to emphasize scale and make the technician feel capable but small within a monumental renewable-energy facility.\n\nUse Reference 2 as the strict design reference for the tidal turbine and engineering details. Preserve its open-ring silhouette, six broad curved blades, segmented cobalt housing, orange maintenance locks, circular inspection hatches, grated rails, hydraulic lines, bolt patterns, barnacles, and salt-stained wet surfaces. Integrate those components naturally into the expanded environment without changing their functional construction.\n\nPremium serialized seinen manga artwork for a marine engineering outreach graphic novel: assured black ink contours, intricate mechanical draftsmanship, selective screentone, controlled speed-line accents around dripping water and turbine motion, cinematic perspective, and expressive but anatomically credible character drawing. Restrained palette of cobalt blue, deep navy, oxidized seafoam green, safety orange, cool gray, and white highlights. Moody, industrious, optimistic atmosphere after a storm. Strong portrait cover hierarchy with quieter open space in the upper section for later editorial titling, but render no words, logos, symbols, border, or typography. One clean standalone cover image, not a book mockup.",
      "width": 1696,
      "height": 2464,
      "settings": {
        "style": "manga"
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/e4dc6fe3-6c4d-4d76-bbc7-1f7143e793e0.jpg",
          "https://assets.runware.ai/assets/inputs/df224051-142a-498d-b6ed-77278b2e8041.jpg"
        ]
      }
    }
  ]'
runware run luma:uni@1-max \
  positivePrompt="Create a finished 1696x2464 portrait manga cover illustration by expanding the widescreen scene in Reference 1 into a much taller composition. Treat Reference 1 as the source image to preserve rather than a loose thematic suggestion: retain the technician’s exact facial identity, short blunt black bob with the single white forelock, amber eyes, freckles, proportions, safety-orange cropped jacket, navy waterproof overalls, gloves, clipped white hard hat, torque wrench, crouched working pose, and the central relationship between her body and the turbine housing. Keep this recognizable action near the visual center of the portrait frame.

Outpaint substantial new scene content above and below the original widescreen composition. Above her, reveal the immense vertical interior of the tidal barrage: receding steel gantries, ladders, suspended cables, dripping beams, narrow skylights, and a high strip of cold daylight reflecting from the sea outside. Below her platform, extend into a deep turbine chamber with descending service stairs, foaming seawater, submerged structural ribs, schools of tiny silver fish, and the lower arc of the machinery disappearing into dark teal water. Use the added vertical architecture to emphasize scale and make the technician feel capable but small within a monumental renewable-energy facility.

Use Reference 2 as the strict design reference for the tidal turbine and engineering details. Preserve its open-ring silhouette, six broad curved blades, segmented cobalt housing, orange maintenance locks, circular inspection hatches, grated rails, hydraulic lines, bolt patterns, barnacles, and salt-stained wet surfaces. Integrate those components naturally into the expanded environment without changing their functional construction.

Premium serialized seinen manga artwork for a marine engineering outreach graphic novel: assured black ink contours, intricate mechanical draftsmanship, selective screentone, controlled speed-line accents around dripping water and turbine motion, cinematic perspective, and expressive but anatomically credible character drawing. Restrained palette of cobalt blue, deep navy, oxidized seafoam green, safety orange, cool gray, and white highlights. Moody, industrious, optimistic atmosphere after a storm. Strong portrait cover hierarchy with quieter open space in the upper section for later editorial titling, but render no words, logos, symbols, border, or typography. One clean standalone cover image, not a book mockup." \
  width=1696 \
  height=2464 \
  settings.style=manga \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/e4dc6fe3-6c4d-4d76-bbc7-1f7143e793e0.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/df224051-142a-498d-b6ed-77278b2e8041.jpg
{
  "taskType": "imageInference",
  "taskUUID": "3e6be435-12b3-48c2-b0eb-61047a11f1be",
  "model": "luma:uni@1-max",
  "positivePrompt": "Create a finished 1696x2464 portrait manga cover illustration by expanding the widescreen scene in Reference 1 into a much taller composition. Treat Reference 1 as the source image to preserve rather than a loose thematic suggestion: retain the technician’s exact facial identity, short blunt black bob with the single white forelock, amber eyes, freckles, proportions, safety-orange cropped jacket, navy waterproof overalls, gloves, clipped white hard hat, torque wrench, crouched working pose, and the central relationship between her body and the turbine housing. Keep this recognizable action near the visual center of the portrait frame.\n\nOutpaint substantial new scene content above and below the original widescreen composition. Above her, reveal the immense vertical interior of the tidal barrage: receding steel gantries, ladders, suspended cables, dripping beams, narrow skylights, and a high strip of cold daylight reflecting from the sea outside. Below her platform, extend into a deep turbine chamber with descending service stairs, foaming seawater, submerged structural ribs, schools of tiny silver fish, and the lower arc of the machinery disappearing into dark teal water. Use the added vertical architecture to emphasize scale and make the technician feel capable but small within a monumental renewable-energy facility.\n\nUse Reference 2 as the strict design reference for the tidal turbine and engineering details. Preserve its open-ring silhouette, six broad curved blades, segmented cobalt housing, orange maintenance locks, circular inspection hatches, grated rails, hydraulic lines, bolt patterns, barnacles, and salt-stained wet surfaces. Integrate those components naturally into the expanded environment without changing their functional construction.\n\nPremium serialized seinen manga artwork for a marine engineering outreach graphic novel: assured black ink contours, intricate mechanical draftsmanship, selective screentone, controlled speed-line accents around dripping water and turbine motion, cinematic perspective, and expressive but anatomically credible character drawing. Restrained palette of cobalt blue, deep navy, oxidized seafoam green, safety orange, cool gray, and white highlights. Moody, industrious, optimistic atmosphere after a storm. Strong portrait cover hierarchy with quieter open space in the upper section for later editorial titling, but render no words, logos, symbols, border, or typography. One clean standalone cover image, not a book mockup.",
  "width": 1696,
  "height": 2464,
  "settings": {
    "style": "manga"
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/e4dc6fe3-6c4d-4d76-bbc7-1f7143e793e0.jpg",
      "https://assets.runware.ai/assets/inputs/df224051-142a-498d-b6ed-77278b2e8041.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "3e6be435-12b3-48c2-b0eb-61047a11f1be",
  "imageUUID": "eb36eb7b-dfc5-43a5-bacf-b0dbf43461bd",
  "imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/4/ii/eb36eb7b-dfc5-43a5-bacf-b0dbf43461bd.jpg",
  "seed": 1336911954,
  "cost": 0.106
}
image-to-image

Vieques Bioluminescent Bay Campaign

Vieques Bioluminescent Bay Campaign

Create premium destination-campaign photography for a Vieques, Puerto Rico tourism board, using the seed image as the compositional foundation. Preserve the recognizable curved mangrove shoreline, distant hill contours, centered transparent kayak, diagonal paddle, paddler's seated pose, camera viewpoint, and overall depth arrangement from the seed. Substantially transform the daytime scene into a moonless nighttime bioluminescent kayaking experience in Mosquito Bay. The traveler's paddle stroke should ignite a broad, physically believable trail of blue-green dinoflagellate light: countless fine luminous particles, brighter turbulence around the blade and kayak hull, delicate glowing droplets suspended near the paddle, and a tapering wake behind the boat. Use the first reference image to guide the granular character and realistic intensity of the bioluminescence, never making it look like neon paint or fantasy magic. Use the second reference for the authentic mangrove silhouettes, humid nocturnal atmosphere, restrained stars, and deep indigo sky. Keep the traveler natural and anonymous, seen from behind in practical dark excursion clothing and a life vest, with anatomically correct hands and a plausible kayaking posture. Reveal subtle edges of the transparent kayak through the glow beneath it. Art direction: sophisticated eco-adventure tourism photography, immersive and serene rather than extreme, inky navy and black surroundings contrasted with concentrated turquoise and blue-green light. Cinematic low-light exposure with crisp focal detail on the traveler, paddle, and luminous wake, softer mangroves in the distance, realistic reflections, controlled highlights, gentle atmospheric haze, and polished editorial color grading. Square composition with strong visual flow from the lower foreground wake toward the distant center; leave calm dark negative space in the upper sky for optional campaign layout, but include no lettering, logos, borders, signage, interface elements, or watermark. The final result must read as a credible, high-end photograph of a bookable bioluminescent-bay excursion, not an illustration or composite.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1-max',
  positivePrompt: 'Create premium destination-campaign photography for a Vieques, Puerto Rico tourism board, using the seed image as the compositional foundation. Preserve the recognizable curved mangrove shoreline, distant hill contours, centered transparent kayak, diagonal paddle, paddler\'s seated pose, camera viewpoint, and overall depth arrangement from the seed. Substantially transform the daytime scene into a moonless nighttime bioluminescent kayaking experience in Mosquito Bay. The traveler\'s paddle stroke should ignite a broad, physically believable trail of blue-green dinoflagellate light: countless fine luminous particles, brighter turbulence around the blade and kayak hull, delicate glowing droplets suspended near the paddle, and a tapering wake behind the boat. Use the first reference image to guide the granular character and realistic intensity of the bioluminescence, never making it look like neon paint or fantasy magic. Use the second reference for the authentic mangrove silhouettes, humid nocturnal atmosphere, restrained stars, and deep indigo sky. Keep the traveler natural and anonymous, seen from behind in practical dark excursion clothing and a life vest, with anatomically correct hands and a plausible kayaking posture. Reveal subtle edges of the transparent kayak through the glow beneath it. Art direction: sophisticated eco-adventure tourism photography, immersive and serene rather than extreme, inky navy and black surroundings contrasted with concentrated turquoise and blue-green light. Cinematic low-light exposure with crisp focal detail on the traveler, paddle, and luminous wake, softer mangroves in the distance, realistic reflections, controlled highlights, gentle atmospheric haze, and polished editorial color grading. Square composition with strong visual flow from the lower foreground wake toward the distant center; leave calm dark negative space in the upper sky for optional campaign layout, but include no lettering, logos, borders, signage, interface elements, or watermark. The final result must read as a credible, high-end photograph of a bookable bioluminescent-bay excursion, not an illustration or composite.',
  width: 2048,
  height: 2048,
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/e51e8f2e-22ed-412d-b895-51678bcb0faf.jpg',
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/8b0f7cae-20e9-481f-8dd8-b27b684a1ed3.jpg',
      'https://assets.runware.ai/assets/inputs/2f398769-b34c-4eb5-bb39-3c4a4db44c9b.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": "luma:uni@1-max",
            "positivePrompt": "Create premium destination-campaign photography for a Vieques, Puerto Rico tourism board, using the seed image as the compositional foundation. Preserve the recognizable curved mangrove shoreline, distant hill contours, centered transparent kayak, diagonal paddle, paddler's seated pose, camera viewpoint, and overall depth arrangement from the seed. Substantially transform the daytime scene into a moonless nighttime bioluminescent kayaking experience in Mosquito Bay. The traveler's paddle stroke should ignite a broad, physically believable trail of blue-green dinoflagellate light: countless fine luminous particles, brighter turbulence around the blade and kayak hull, delicate glowing droplets suspended near the paddle, and a tapering wake behind the boat. Use the first reference image to guide the granular character and realistic intensity of the bioluminescence, never making it look like neon paint or fantasy magic. Use the second reference for the authentic mangrove silhouettes, humid nocturnal atmosphere, restrained stars, and deep indigo sky. Keep the traveler natural and anonymous, seen from behind in practical dark excursion clothing and a life vest, with anatomically correct hands and a plausible kayaking posture. Reveal subtle edges of the transparent kayak through the glow beneath it. Art direction: sophisticated eco-adventure tourism photography, immersive and serene rather than extreme, inky navy and black surroundings contrasted with concentrated turquoise and blue-green light. Cinematic low-light exposure with crisp focal detail on the traveler, paddle, and luminous wake, softer mangroves in the distance, realistic reflections, controlled highlights, gentle atmospheric haze, and polished editorial color grading. Square composition with strong visual flow from the lower foreground wake toward the distant center; leave calm dark negative space in the upper sky for optional campaign layout, but include no lettering, logos, borders, signage, interface elements, or watermark. The final result must read as a credible, high-end photograph of a bookable bioluminescent-bay excursion, not an illustration or composite.",
            "width": 2048,
            "height": 2048,
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/e51e8f2e-22ed-412d-b895-51678bcb0faf.jpg",
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/8b0f7cae-20e9-481f-8dd8-b27b684a1ed3.jpg",
                    "https://assets.runware.ai/assets/inputs/2f398769-b34c-4eb5-bb39-3c4a4db44c9b.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": "acd8208e-922c-4acb-8608-1f0a1d203000",
      "model": "luma:uni@1-max",
      "positivePrompt": "Create premium destination-campaign photography for a Vieques, Puerto Rico tourism board, using the seed image as the compositional foundation. Preserve the recognizable curved mangrove shoreline, distant hill contours, centered transparent kayak, diagonal paddle, paddler's seated pose, camera viewpoint, and overall depth arrangement from the seed. Substantially transform the daytime scene into a moonless nighttime bioluminescent kayaking experience in Mosquito Bay. The traveler's paddle stroke should ignite a broad, physically believable trail of blue-green dinoflagellate light: countless fine luminous particles, brighter turbulence around the blade and kayak hull, delicate glowing droplets suspended near the paddle, and a tapering wake behind the boat. Use the first reference image to guide the granular character and realistic intensity of the bioluminescence, never making it look like neon paint or fantasy magic. Use the second reference for the authentic mangrove silhouettes, humid nocturnal atmosphere, restrained stars, and deep indigo sky. Keep the traveler natural and anonymous, seen from behind in practical dark excursion clothing and a life vest, with anatomically correct hands and a plausible kayaking posture. Reveal subtle edges of the transparent kayak through the glow beneath it. Art direction: sophisticated eco-adventure tourism photography, immersive and serene rather than extreme, inky navy and black surroundings contrasted with concentrated turquoise and blue-green light. Cinematic low-light exposure with crisp focal detail on the traveler, paddle, and luminous wake, softer mangroves in the distance, realistic reflections, controlled highlights, gentle atmospheric haze, and polished editorial color grading. Square composition with strong visual flow from the lower foreground wake toward the distant center; leave calm dark negative space in the upper sky for optional campaign layout, but include no lettering, logos, borders, signage, interface elements, or watermark. The final result must read as a credible, high-end photograph of a bookable bioluminescent-bay excursion, not an illustration or composite.",
      "width": 2048,
      "height": 2048,
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/e51e8f2e-22ed-412d-b895-51678bcb0faf.jpg",
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/8b0f7cae-20e9-481f-8dd8-b27b684a1ed3.jpg",
          "https://assets.runware.ai/assets/inputs/2f398769-b34c-4eb5-bb39-3c4a4db44c9b.jpg"
        ]
      }
    }
  ]'
runware run luma:uni@1-max \
  positivePrompt="Create premium destination-campaign photography for a Vieques, Puerto Rico tourism board, using the seed image as the compositional foundation. Preserve the recognizable curved mangrove shoreline, distant hill contours, centered transparent kayak, diagonal paddle, paddler's seated pose, camera viewpoint, and overall depth arrangement from the seed. Substantially transform the daytime scene into a moonless nighttime bioluminescent kayaking experience in Mosquito Bay. The traveler's paddle stroke should ignite a broad, physically believable trail of blue-green dinoflagellate light: countless fine luminous particles, brighter turbulence around the blade and kayak hull, delicate glowing droplets suspended near the paddle, and a tapering wake behind the boat. Use the first reference image to guide the granular character and realistic intensity of the bioluminescence, never making it look like neon paint or fantasy magic. Use the second reference for the authentic mangrove silhouettes, humid nocturnal atmosphere, restrained stars, and deep indigo sky. Keep the traveler natural and anonymous, seen from behind in practical dark excursion clothing and a life vest, with anatomically correct hands and a plausible kayaking posture. Reveal subtle edges of the transparent kayak through the glow beneath it. Art direction: sophisticated eco-adventure tourism photography, immersive and serene rather than extreme, inky navy and black surroundings contrasted with concentrated turquoise and blue-green light. Cinematic low-light exposure with crisp focal detail on the traveler, paddle, and luminous wake, softer mangroves in the distance, realistic reflections, controlled highlights, gentle atmospheric haze, and polished editorial color grading. Square composition with strong visual flow from the lower foreground wake toward the distant center; leave calm dark negative space in the upper sky for optional campaign layout, but include no lettering, logos, borders, signage, interface elements, or watermark. The final result must read as a credible, high-end photograph of a bookable bioluminescent-bay excursion, not an illustration or composite." \
  width=2048 \
  height=2048 \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/e51e8f2e-22ed-412d-b895-51678bcb0faf.jpg \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/8b0f7cae-20e9-481f-8dd8-b27b684a1ed3.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/2f398769-b34c-4eb5-bb39-3c4a4db44c9b.jpg
{
  "taskType": "imageInference",
  "taskUUID": "acd8208e-922c-4acb-8608-1f0a1d203000",
  "model": "luma:uni@1-max",
  "positivePrompt": "Create premium destination-campaign photography for a Vieques, Puerto Rico tourism board, using the seed image as the compositional foundation. Preserve the recognizable curved mangrove shoreline, distant hill contours, centered transparent kayak, diagonal paddle, paddler's seated pose, camera viewpoint, and overall depth arrangement from the seed. Substantially transform the daytime scene into a moonless nighttime bioluminescent kayaking experience in Mosquito Bay. The traveler's paddle stroke should ignite a broad, physically believable trail of blue-green dinoflagellate light: countless fine luminous particles, brighter turbulence around the blade and kayak hull, delicate glowing droplets suspended near the paddle, and a tapering wake behind the boat. Use the first reference image to guide the granular character and realistic intensity of the bioluminescence, never making it look like neon paint or fantasy magic. Use the second reference for the authentic mangrove silhouettes, humid nocturnal atmosphere, restrained stars, and deep indigo sky. Keep the traveler natural and anonymous, seen from behind in practical dark excursion clothing and a life vest, with anatomically correct hands and a plausible kayaking posture. Reveal subtle edges of the transparent kayak through the glow beneath it. Art direction: sophisticated eco-adventure tourism photography, immersive and serene rather than extreme, inky navy and black surroundings contrasted with concentrated turquoise and blue-green light. Cinematic low-light exposure with crisp focal detail on the traveler, paddle, and luminous wake, softer mangroves in the distance, realistic reflections, controlled highlights, gentle atmospheric haze, and polished editorial color grading. Square composition with strong visual flow from the lower foreground wake toward the distant center; leave calm dark negative space in the upper sky for optional campaign layout, but include no lettering, logos, borders, signage, interface elements, or watermark. The final result must read as a credible, high-end photograph of a bookable bioluminescent-bay excursion, not an illustration or composite.",
  "width": 2048,
  "height": 2048,
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/e51e8f2e-22ed-412d-b895-51678bcb0faf.jpg",
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/8b0f7cae-20e9-481f-8dd8-b27b684a1ed3.jpg",
      "https://assets.runware.ai/assets/inputs/2f398769-b34c-4eb5-bb39-3c4a4db44c9b.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "acd8208e-922c-4acb-8608-1f0a1d203000",
  "imageUUID": "8d1578dc-dd50-43b0-a342-bdc41f87d991",
  "imageURL": "https://im.runware.ai/image/os/a03d21/ws/4/ii/8d1578dc-dd50-43b0-a342-bdc41f87d991.jpg",
  "seed": 1917466273,
  "cost": 0.109
}
Image to Image

Deserted Funfair Fog Tableau

Deserted Funfair Fog Tableau

Create a richly detailed cinematic scene that blends the supplied character and environment references: a solitary itinerant illusionist walking through an abandoned countryside funfair at first light, crooked ferris wheel looming in the background, faded striped tents, torn pennants fluttering, muddy pathways with puddles reflecting pale amber sky, scattered carousel horses and toppled signboards, dense low fog wrapping around boots and wagon tracks, the figure styled from the reference with patchwork textiles, worn leather satchel, subtle metallic instruments and hand-painted props, mood of eerie wonder rather than horror, layered depth, finely rendered fabrics, peeling paint, damp wood grain, delicate atmospheric perspective, naturalistic color grading, premium editorial fantasy photography aesthetic, ultra-clean composition, exquisite detail, polished final-image quality

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1-max',
  positivePrompt: 'Create a richly detailed cinematic scene that blends the supplied character and environment references: a solitary itinerant illusionist walking through an abandoned countryside funfair at first light, crooked ferris wheel looming in the background, faded striped tents, torn pennants fluttering, muddy pathways with puddles reflecting pale amber sky, scattered carousel horses and toppled signboards, dense low fog wrapping around boots and wagon tracks, the figure styled from the reference with patchwork textiles, worn leather satchel, subtle metallic instruments and hand-painted props, mood of eerie wonder rather than horror, layered depth, finely rendered fabrics, peeling paint, damp wood grain, delicate atmospheric perspective, naturalistic color grading, premium editorial fantasy photography aesthetic, ultra-clean composition, exquisite detail, polished final-image quality',
  width: 2464,
  height: 1696,
  settings: {
    style: 'auto',
    search: false
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/e2328f5b-8402-40a8-94c2-c6d8ba838fa2.jpg',
      'https://assets.runware.ai/assets/inputs/201fc341-055c-42fa-a441-f9a1559b5f2d.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": "luma:uni@1-max",
            "positivePrompt": "Create a richly detailed cinematic scene that blends the supplied character and environment references: a solitary itinerant illusionist walking through an abandoned countryside funfair at first light, crooked ferris wheel looming in the background, faded striped tents, torn pennants fluttering, muddy pathways with puddles reflecting pale amber sky, scattered carousel horses and toppled signboards, dense low fog wrapping around boots and wagon tracks, the figure styled from the reference with patchwork textiles, worn leather satchel, subtle metallic instruments and hand-painted props, mood of eerie wonder rather than horror, layered depth, finely rendered fabrics, peeling paint, damp wood grain, delicate atmospheric perspective, naturalistic color grading, premium editorial fantasy photography aesthetic, ultra-clean composition, exquisite detail, polished final-image quality",
            "width": 2464,
            "height": 1696,
            "settings": {
                "style": "auto",
                "search": False
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/e2328f5b-8402-40a8-94c2-c6d8ba838fa2.jpg",
                    "https://assets.runware.ai/assets/inputs/201fc341-055c-42fa-a441-f9a1559b5f2d.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": "be8149d5-3582-48c3-b6f5-0c81848c28a3",
      "model": "luma:uni@1-max",
      "positivePrompt": "Create a richly detailed cinematic scene that blends the supplied character and environment references: a solitary itinerant illusionist walking through an abandoned countryside funfair at first light, crooked ferris wheel looming in the background, faded striped tents, torn pennants fluttering, muddy pathways with puddles reflecting pale amber sky, scattered carousel horses and toppled signboards, dense low fog wrapping around boots and wagon tracks, the figure styled from the reference with patchwork textiles, worn leather satchel, subtle metallic instruments and hand-painted props, mood of eerie wonder rather than horror, layered depth, finely rendered fabrics, peeling paint, damp wood grain, delicate atmospheric perspective, naturalistic color grading, premium editorial fantasy photography aesthetic, ultra-clean composition, exquisite detail, polished final-image quality",
      "width": 2464,
      "height": 1696,
      "settings": {
        "style": "auto",
        "search": false
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/e2328f5b-8402-40a8-94c2-c6d8ba838fa2.jpg",
          "https://assets.runware.ai/assets/inputs/201fc341-055c-42fa-a441-f9a1559b5f2d.jpg"
        ]
      }
    }
  ]'
runware run luma:uni@1-max \
  positivePrompt="Create a richly detailed cinematic scene that blends the supplied character and environment references: a solitary itinerant illusionist walking through an abandoned countryside funfair at first light, crooked ferris wheel looming in the background, faded striped tents, torn pennants fluttering, muddy pathways with puddles reflecting pale amber sky, scattered carousel horses and toppled signboards, dense low fog wrapping around boots and wagon tracks, the figure styled from the reference with patchwork textiles, worn leather satchel, subtle metallic instruments and hand-painted props, mood of eerie wonder rather than horror, layered depth, finely rendered fabrics, peeling paint, damp wood grain, delicate atmospheric perspective, naturalistic color grading, premium editorial fantasy photography aesthetic, ultra-clean composition, exquisite detail, polished final-image quality" \
  width=2464 \
  height=1696 \
  settings.style=auto \
  settings.search=false \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/e2328f5b-8402-40a8-94c2-c6d8ba838fa2.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/201fc341-055c-42fa-a441-f9a1559b5f2d.jpg
{
  "taskType": "imageInference",
  "taskUUID": "be8149d5-3582-48c3-b6f5-0c81848c28a3",
  "model": "luma:uni@1-max",
  "positivePrompt": "Create a richly detailed cinematic scene that blends the supplied character and environment references: a solitary itinerant illusionist walking through an abandoned countryside funfair at first light, crooked ferris wheel looming in the background, faded striped tents, torn pennants fluttering, muddy pathways with puddles reflecting pale amber sky, scattered carousel horses and toppled signboards, dense low fog wrapping around boots and wagon tracks, the figure styled from the reference with patchwork textiles, worn leather satchel, subtle metallic instruments and hand-painted props, mood of eerie wonder rather than horror, layered depth, finely rendered fabrics, peeling paint, damp wood grain, delicate atmospheric perspective, naturalistic color grading, premium editorial fantasy photography aesthetic, ultra-clean composition, exquisite detail, polished final-image quality",
  "width": 2464,
  "height": 1696,
  "settings": {
    "style": "auto",
    "search": false
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/e2328f5b-8402-40a8-94c2-c6d8ba838fa2.jpg",
      "https://assets.runware.ai/assets/inputs/201fc341-055c-42fa-a441-f9a1559b5f2d.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "be8149d5-3582-48c3-b6f5-0c81848c28a3",
  "imageUUID": "859153fe-dd98-4660-b63e-3bdccd90bd6a",
  "imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/4/ii/859153fe-dd98-4660-b63e-3bdccd90bd6a.jpg",
  "seed": 28276025,
  "cost": 0.106
}
Text to Image

Flooded Ballroom Chess Match

Flooded Ballroom Chess Match

An opulent abandoned ballroom partially flooded with shallow water, transformed into a surreal chess arena. Two elegantly dressed rivals face each other across a giant inlaid marble chessboard emerging from the water, one in a cream tailcoat with brass embroidery, the other in a deep emerald gown with sharp geometric shoulders. Floating candles drift low over the surface, their reflections rippling across the room. Massive cracked frescoes, toppled candelabras, gilt columns, and torn silk banners frame the scene. Outside the shattered arched windows, a pale stormy dawn glows over a distant formal garden. Cinematic wide composition, meticulous textures, polished marble, wet reflections, atmospheric depth, suspended dust, rich color contrast, ultra-detailed luxury decay, high realism, dramatic but refined mood.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1-max',
  positivePrompt: 'An opulent abandoned ballroom partially flooded with shallow water, transformed into a surreal chess arena. Two elegantly dressed rivals face each other across a giant inlaid marble chessboard emerging from the water, one in a cream tailcoat with brass embroidery, the other in a deep emerald gown with sharp geometric shoulders. Floating candles drift low over the surface, their reflections rippling across the room. Massive cracked frescoes, toppled candelabras, gilt columns, and torn silk banners frame the scene. Outside the shattered arched windows, a pale stormy dawn glows over a distant formal garden. Cinematic wide composition, meticulous textures, polished marble, wet reflections, atmospheric depth, suspended dust, rich color contrast, ultra-detailed luxury decay, high realism, dramatic but refined mood.',
  width: 2464,
  height: 1696,
  settings: {
    style: 'auto'
  }
})
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": "luma:uni@1-max",
            "positivePrompt": "An opulent abandoned ballroom partially flooded with shallow water, transformed into a surreal chess arena. Two elegantly dressed rivals face each other across a giant inlaid marble chessboard emerging from the water, one in a cream tailcoat with brass embroidery, the other in a deep emerald gown with sharp geometric shoulders. Floating candles drift low over the surface, their reflections rippling across the room. Massive cracked frescoes, toppled candelabras, gilt columns, and torn silk banners frame the scene. Outside the shattered arched windows, a pale stormy dawn glows over a distant formal garden. Cinematic wide composition, meticulous textures, polished marble, wet reflections, atmospheric depth, suspended dust, rich color contrast, ultra-detailed luxury decay, high realism, dramatic but refined mood.",
            "width": 2464,
            "height": 1696,
            "settings": {
                "style": "auto"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "89d634f4-5205-4a15-8f9c-bebf664d1e48",
      "model": "luma:uni@1-max",
      "positivePrompt": "An opulent abandoned ballroom partially flooded with shallow water, transformed into a surreal chess arena. Two elegantly dressed rivals face each other across a giant inlaid marble chessboard emerging from the water, one in a cream tailcoat with brass embroidery, the other in a deep emerald gown with sharp geometric shoulders. Floating candles drift low over the surface, their reflections rippling across the room. Massive cracked frescoes, toppled candelabras, gilt columns, and torn silk banners frame the scene. Outside the shattered arched windows, a pale stormy dawn glows over a distant formal garden. Cinematic wide composition, meticulous textures, polished marble, wet reflections, atmospheric depth, suspended dust, rich color contrast, ultra-detailed luxury decay, high realism, dramatic but refined mood.",
      "width": 2464,
      "height": 1696,
      "settings": {
        "style": "auto"
      }
    }
  ]'
runware run luma:uni@1-max \
  positivePrompt="An opulent abandoned ballroom partially flooded with shallow water, transformed into a surreal chess arena. Two elegantly dressed rivals face each other across a giant inlaid marble chessboard emerging from the water, one in a cream tailcoat with brass embroidery, the other in a deep emerald gown with sharp geometric shoulders. Floating candles drift low over the surface, their reflections rippling across the room. Massive cracked frescoes, toppled candelabras, gilt columns, and torn silk banners frame the scene. Outside the shattered arched windows, a pale stormy dawn glows over a distant formal garden. Cinematic wide composition, meticulous textures, polished marble, wet reflections, atmospheric depth, suspended dust, rich color contrast, ultra-detailed luxury decay, high realism, dramatic but refined mood." \
  width=2464 \
  height=1696 \
  settings.style=auto
{
  "taskType": "imageInference",
  "taskUUID": "89d634f4-5205-4a15-8f9c-bebf664d1e48",
  "model": "luma:uni@1-max",
  "positivePrompt": "An opulent abandoned ballroom partially flooded with shallow water, transformed into a surreal chess arena. Two elegantly dressed rivals face each other across a giant inlaid marble chessboard emerging from the water, one in a cream tailcoat with brass embroidery, the other in a deep emerald gown with sharp geometric shoulders. Floating candles drift low over the surface, their reflections rippling across the room. Massive cracked frescoes, toppled candelabras, gilt columns, and torn silk banners frame the scene. Outside the shattered arched windows, a pale stormy dawn glows over a distant formal garden. Cinematic wide composition, meticulous textures, polished marble, wet reflections, atmospheric depth, suspended dust, rich color contrast, ultra-detailed luxury decay, high realism, dramatic but refined mood.",
  "width": 2464,
  "height": 1696,
  "settings": {
    "style": "auto"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "89d634f4-5205-4a15-8f9c-bebf664d1e48",
  "imageUUID": "81cb39b3-5c9f-4b69-b513-437be87cf004",
  "imageURL": "https://im.runware.ai/image/os/a03d21/ws/4/ii/81cb39b3-5c9f-4b69-b513-437be87cf004.jpg",
  "seed": 915025638,
  "cost": 0.1
}
Text to Image

Moonlit Bazaar Rooftop Feast

Moonlit Bazaar Rooftop Feast

A lavish rooftop feast above a labyrinthine desert bazaar under a huge rising moon, long woven awnings stretched between domes and minarets, brass lanterns casting patterned shadows across low tables covered with jeweled fruit, saffron rice, and ornate ceramic dishes. Musicians in embroidered robes play stringed instruments near the parapet while acrobats perform on narrow beams between rooftops below. In the distance, pale dunes meet a dark cobalt sky filled with drifting kites and faint smoke from cookfires. Ultra-detailed architecture, layered textiles, intricate mosaic surfaces, expressive crowd moments, cinematic depth, luminous night atmosphere, premium editorial fantasy photography look, crisp focus, natural color contrast, exceptionally refined textures.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1-max',
  positivePrompt: 'A lavish rooftop feast above a labyrinthine desert bazaar under a huge rising moon, long woven awnings stretched between domes and minarets, brass lanterns casting patterned shadows across low tables covered with jeweled fruit, saffron rice, and ornate ceramic dishes. Musicians in embroidered robes play stringed instruments near the parapet while acrobats perform on narrow beams between rooftops below. In the distance, pale dunes meet a dark cobalt sky filled with drifting kites and faint smoke from cookfires. Ultra-detailed architecture, layered textiles, intricate mosaic surfaces, expressive crowd moments, cinematic depth, luminous night atmosphere, premium editorial fantasy photography look, crisp focus, natural color contrast, exceptionally refined textures.',
  width: 2784,
  height: 1504,
  settings: {
    style: 'auto',
    search: false
  }
})
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": "luma:uni@1-max",
            "positivePrompt": "A lavish rooftop feast above a labyrinthine desert bazaar under a huge rising moon, long woven awnings stretched between domes and minarets, brass lanterns casting patterned shadows across low tables covered with jeweled fruit, saffron rice, and ornate ceramic dishes. Musicians in embroidered robes play stringed instruments near the parapet while acrobats perform on narrow beams between rooftops below. In the distance, pale dunes meet a dark cobalt sky filled with drifting kites and faint smoke from cookfires. Ultra-detailed architecture, layered textiles, intricate mosaic surfaces, expressive crowd moments, cinematic depth, luminous night atmosphere, premium editorial fantasy photography look, crisp focus, natural color contrast, exceptionally refined textures.",
            "width": 2784,
            "height": 1504,
            "settings": {
                "style": "auto",
                "search": False
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "f17965e8-f84f-4413-b2ba-ce9ea067310f",
      "model": "luma:uni@1-max",
      "positivePrompt": "A lavish rooftop feast above a labyrinthine desert bazaar under a huge rising moon, long woven awnings stretched between domes and minarets, brass lanterns casting patterned shadows across low tables covered with jeweled fruit, saffron rice, and ornate ceramic dishes. Musicians in embroidered robes play stringed instruments near the parapet while acrobats perform on narrow beams between rooftops below. In the distance, pale dunes meet a dark cobalt sky filled with drifting kites and faint smoke from cookfires. Ultra-detailed architecture, layered textiles, intricate mosaic surfaces, expressive crowd moments, cinematic depth, luminous night atmosphere, premium editorial fantasy photography look, crisp focus, natural color contrast, exceptionally refined textures.",
      "width": 2784,
      "height": 1504,
      "settings": {
        "style": "auto",
        "search": false
      }
    }
  ]'
runware run luma:uni@1-max \
  positivePrompt="A lavish rooftop feast above a labyrinthine desert bazaar under a huge rising moon, long woven awnings stretched between domes and minarets, brass lanterns casting patterned shadows across low tables covered with jeweled fruit, saffron rice, and ornate ceramic dishes. Musicians in embroidered robes play stringed instruments near the parapet while acrobats perform on narrow beams between rooftops below. In the distance, pale dunes meet a dark cobalt sky filled with drifting kites and faint smoke from cookfires. Ultra-detailed architecture, layered textiles, intricate mosaic surfaces, expressive crowd moments, cinematic depth, luminous night atmosphere, premium editorial fantasy photography look, crisp focus, natural color contrast, exceptionally refined textures." \
  width=2784 \
  height=1504 \
  settings.style=auto \
  settings.search=false
{
  "taskType": "imageInference",
  "taskUUID": "f17965e8-f84f-4413-b2ba-ce9ea067310f",
  "model": "luma:uni@1-max",
  "positivePrompt": "A lavish rooftop feast above a labyrinthine desert bazaar under a huge rising moon, long woven awnings stretched between domes and minarets, brass lanterns casting patterned shadows across low tables covered with jeweled fruit, saffron rice, and ornate ceramic dishes. Musicians in embroidered robes play stringed instruments near the parapet while acrobats perform on narrow beams between rooftops below. In the distance, pale dunes meet a dark cobalt sky filled with drifting kites and faint smoke from cookfires. Ultra-detailed architecture, layered textiles, intricate mosaic surfaces, expressive crowd moments, cinematic depth, luminous night atmosphere, premium editorial fantasy photography look, crisp focus, natural color contrast, exceptionally refined textures.",
  "width": 2784,
  "height": 1504,
  "settings": {
    "style": "auto",
    "search": false
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "f17965e8-f84f-4413-b2ba-ce9ea067310f",
  "imageUUID": "99845610-eafe-4a61-9d62-c985cfec27be",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/4/ii/99845610-eafe-4a61-9d62-c985cfec27be.jpg",
  "seed": 254097921,
  "cost": 0.1
}
Image to Image

Saffron Dune Aerostat Encampment

Saffron Dune Aerostat Encampment

Transform the seed landscape into an expansive desert encampment centered around a colossal tethered aerostat resting among dunes, blending the aerostat engineering and patchwork textile details from the first reference with the lived-in camp architecture, woven furnishings, and warm color palette from the second reference. Show clustered shade canopies, suspended bridges, cargo nets, carved poles, brass lanterns, sand-scoured fabric banners, storage crates, cooking fires, water vessels, and small groups of travelers moving through the settlement. Emphasize premium cinematic detail, believable scale, textured cloth, weathered metal, rippled sand, long late-afternoon shadows, heat haze, and a sweeping panoramic composition with a sense of discovery and grandeur.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1-max',
  positivePrompt: 'Transform the seed landscape into an expansive desert encampment centered around a colossal tethered aerostat resting among dunes, blending the aerostat engineering and patchwork textile details from the first reference with the lived-in camp architecture, woven furnishings, and warm color palette from the second reference. Show clustered shade canopies, suspended bridges, cargo nets, carved poles, brass lanterns, sand-scoured fabric banners, storage crates, cooking fires, water vessels, and small groups of travelers moving through the settlement. Emphasize premium cinematic detail, believable scale, textured cloth, weathered metal, rippled sand, long late-afternoon shadows, heat haze, and a sweeping panoramic composition with a sense of discovery and grandeur.',
  width: 2912,
  height: 1440,
  settings: {
    style: 'auto',
    search: false
  },
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/fbb0c4d6-6c8a-4dc0-b2ac-187c6d09a2df.jpg',
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/48c64dc6-2399-45bb-949e-3e4f753c8a43.jpg',
      'https://assets.runware.ai/assets/inputs/2f1fe7fd-9f89-4807-88ed-a7b3117a9f37.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": "luma:uni@1-max",
            "positivePrompt": "Transform the seed landscape into an expansive desert encampment centered around a colossal tethered aerostat resting among dunes, blending the aerostat engineering and patchwork textile details from the first reference with the lived-in camp architecture, woven furnishings, and warm color palette from the second reference. Show clustered shade canopies, suspended bridges, cargo nets, carved poles, brass lanterns, sand-scoured fabric banners, storage crates, cooking fires, water vessels, and small groups of travelers moving through the settlement. Emphasize premium cinematic detail, believable scale, textured cloth, weathered metal, rippled sand, long late-afternoon shadows, heat haze, and a sweeping panoramic composition with a sense of discovery and grandeur.",
            "width": 2912,
            "height": 1440,
            "settings": {
                "style": "auto",
                "search": False
            },
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/fbb0c4d6-6c8a-4dc0-b2ac-187c6d09a2df.jpg",
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/48c64dc6-2399-45bb-949e-3e4f753c8a43.jpg",
                    "https://assets.runware.ai/assets/inputs/2f1fe7fd-9f89-4807-88ed-a7b3117a9f37.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": "fece631a-2bb0-4848-b9dd-17dc2356b113",
      "model": "luma:uni@1-max",
      "positivePrompt": "Transform the seed landscape into an expansive desert encampment centered around a colossal tethered aerostat resting among dunes, blending the aerostat engineering and patchwork textile details from the first reference with the lived-in camp architecture, woven furnishings, and warm color palette from the second reference. Show clustered shade canopies, suspended bridges, cargo nets, carved poles, brass lanterns, sand-scoured fabric banners, storage crates, cooking fires, water vessels, and small groups of travelers moving through the settlement. Emphasize premium cinematic detail, believable scale, textured cloth, weathered metal, rippled sand, long late-afternoon shadows, heat haze, and a sweeping panoramic composition with a sense of discovery and grandeur.",
      "width": 2912,
      "height": 1440,
      "settings": {
        "style": "auto",
        "search": false
      },
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/fbb0c4d6-6c8a-4dc0-b2ac-187c6d09a2df.jpg",
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/48c64dc6-2399-45bb-949e-3e4f753c8a43.jpg",
          "https://assets.runware.ai/assets/inputs/2f1fe7fd-9f89-4807-88ed-a7b3117a9f37.jpg"
        ]
      }
    }
  ]'
runware run luma:uni@1-max \
  positivePrompt="Transform the seed landscape into an expansive desert encampment centered around a colossal tethered aerostat resting among dunes, blending the aerostat engineering and patchwork textile details from the first reference with the lived-in camp architecture, woven furnishings, and warm color palette from the second reference. Show clustered shade canopies, suspended bridges, cargo nets, carved poles, brass lanterns, sand-scoured fabric banners, storage crates, cooking fires, water vessels, and small groups of travelers moving through the settlement. Emphasize premium cinematic detail, believable scale, textured cloth, weathered metal, rippled sand, long late-afternoon shadows, heat haze, and a sweeping panoramic composition with a sense of discovery and grandeur." \
  width=2912 \
  height=1440 \
  settings.style=auto \
  settings.search=false \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/fbb0c4d6-6c8a-4dc0-b2ac-187c6d09a2df.jpg \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/48c64dc6-2399-45bb-949e-3e4f753c8a43.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/2f1fe7fd-9f89-4807-88ed-a7b3117a9f37.jpg
{
  "taskType": "imageInference",
  "taskUUID": "fece631a-2bb0-4848-b9dd-17dc2356b113",
  "model": "luma:uni@1-max",
  "positivePrompt": "Transform the seed landscape into an expansive desert encampment centered around a colossal tethered aerostat resting among dunes, blending the aerostat engineering and patchwork textile details from the first reference with the lived-in camp architecture, woven furnishings, and warm color palette from the second reference. Show clustered shade canopies, suspended bridges, cargo nets, carved poles, brass lanterns, sand-scoured fabric banners, storage crates, cooking fires, water vessels, and small groups of travelers moving through the settlement. Emphasize premium cinematic detail, believable scale, textured cloth, weathered metal, rippled sand, long late-afternoon shadows, heat haze, and a sweeping panoramic composition with a sense of discovery and grandeur.",
  "width": 2912,
  "height": 1440,
  "settings": {
    "style": "auto",
    "search": false
  },
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/fbb0c4d6-6c8a-4dc0-b2ac-187c6d09a2df.jpg",
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/48c64dc6-2399-45bb-949e-3e4f753c8a43.jpg",
      "https://assets.runware.ai/assets/inputs/2f1fe7fd-9f89-4807-88ed-a7b3117a9f37.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "fece631a-2bb0-4848-b9dd-17dc2356b113",
  "imageUUID": "1ffa57df-129a-4758-be6d-6d0ae8269439",
  "imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/1ffa57df-129a-4758-be6d-6d0ae8269439.jpg",
  "seed": 1812302252,
  "cost": 0.109
}