FLUX.1 [dev]

FLUX.1 [dev] is a 12B parameter text to image model from Black Forest Labs. It targets high fidelity visual generation for research and non commercial use. Developers can build image apps that need strong prompt following and fine visual detail at high resolution.
![FLUX.1 [dev]](https://assets.runware.ai/covers/bfl-flux-1-dev.jpg)
Complete technical specification for integration
Ready-to-use code snippets for common workflows
Coastal Radar Station Rental Interior

High-end architectural real-estate photograph of a decommissioned 1950s coastal radar station converted into a refined vacation-rental living room. Square composition, photographed from the entrance at eye level with a 24mm tilt-shift lens, straight vertical lines and believable proportions. The circular concrete room retains its thick curved walls, exposed aggregate texture, narrow steel-framed observation windows and one large panoramic opening facing a cold slate-blue ocean and pale chalk cliffs. Interior design is restrained and highly livable: low modular sofa upholstered in deep ultramarine wool, two brushed-aluminum lounge chairs, a round blackened-steel coffee table, woven charcoal rug, compact suspended wood stove, built-in pale birch cabinetry and a single sculptural cobalt glass vessel. Soft overcast coastal daylight wraps through the room, balanced with warm concealed lighting beneath the cabinetry; subtle reflections on metal, detailed wool and concrete textures, gentle shadow falloff, calm cinematic atmosphere. Clean, meticulously staged but not sterile, no people, no signage, no logos, no visible text. Premium hospitality property photography, natural dynamic range, crisp architectural detail, photorealistic materials, realistic ocean view, editorial composition with the seating area anchoring the foreground and the sea framed as the focal point.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'High-end architectural real-estate photograph of a decommissioned 1950s coastal radar station converted into a refined vacation-rental living room. Square composition, photographed from the entrance at eye level with a 24mm tilt-shift lens, straight vertical lines and believable proportions. The circular concrete room retains its thick curved walls, exposed aggregate texture, narrow steel-framed observation windows and one large panoramic opening facing a cold slate-blue ocean and pale chalk cliffs. Interior design is restrained and highly livable: low modular sofa upholstered in deep ultramarine wool, two brushed-aluminum lounge chairs, a round blackened-steel coffee table, woven charcoal rug, compact suspended wood stove, built-in pale birch cabinetry and a single sculptural cobalt glass vessel. Soft overcast coastal daylight wraps through the room, balanced with warm concealed lighting beneath the cabinetry; subtle reflections on metal, detailed wool and concrete textures, gentle shadow falloff, calm cinematic atmosphere. Clean, meticulously staged but not sterile, no people, no signage, no logos, no visible text. Premium hospitality property photography, natural dynamic range, crisp architectural detail, photorealistic materials, realistic ocean view, editorial composition with the seating area anchoring the foreground and the sea framed as the focal point.',
width: 1024,
height: 1024,
steps: 28
})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": "runware:101@1",
"positivePrompt": "High-end architectural real-estate photograph of a decommissioned 1950s coastal radar station converted into a refined vacation-rental living room. Square composition, photographed from the entrance at eye level with a 24mm tilt-shift lens, straight vertical lines and believable proportions. The circular concrete room retains its thick curved walls, exposed aggregate texture, narrow steel-framed observation windows and one large panoramic opening facing a cold slate-blue ocean and pale chalk cliffs. Interior design is restrained and highly livable: low modular sofa upholstered in deep ultramarine wool, two brushed-aluminum lounge chairs, a round blackened-steel coffee table, woven charcoal rug, compact suspended wood stove, built-in pale birch cabinetry and a single sculptural cobalt glass vessel. Soft overcast coastal daylight wraps through the room, balanced with warm concealed lighting beneath the cabinetry; subtle reflections on metal, detailed wool and concrete textures, gentle shadow falloff, calm cinematic atmosphere. Clean, meticulously staged but not sterile, no people, no signage, no logos, no visible text. Premium hospitality property photography, natural dynamic range, crisp architectural detail, photorealistic materials, realistic ocean view, editorial composition with the seating area anchoring the foreground and the sea framed as the focal point.",
"width": 1024,
"height": 1024,
"steps": 28
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "29c6a29d-eceb-462a-800a-ad5e16c05e4e",
"model": "runware:101@1",
"positivePrompt": "High-end architectural real-estate photograph of a decommissioned 1950s coastal radar station converted into a refined vacation-rental living room. Square composition, photographed from the entrance at eye level with a 24mm tilt-shift lens, straight vertical lines and believable proportions. The circular concrete room retains its thick curved walls, exposed aggregate texture, narrow steel-framed observation windows and one large panoramic opening facing a cold slate-blue ocean and pale chalk cliffs. Interior design is restrained and highly livable: low modular sofa upholstered in deep ultramarine wool, two brushed-aluminum lounge chairs, a round blackened-steel coffee table, woven charcoal rug, compact suspended wood stove, built-in pale birch cabinetry and a single sculptural cobalt glass vessel. Soft overcast coastal daylight wraps through the room, balanced with warm concealed lighting beneath the cabinetry; subtle reflections on metal, detailed wool and concrete textures, gentle shadow falloff, calm cinematic atmosphere. Clean, meticulously staged but not sterile, no people, no signage, no logos, no visible text. Premium hospitality property photography, natural dynamic range, crisp architectural detail, photorealistic materials, realistic ocean view, editorial composition with the seating area anchoring the foreground and the sea framed as the focal point.",
"width": 1024,
"height": 1024,
"steps": 28
}
]'runware run runware:101@1 \
positivePrompt="High-end architectural real-estate photograph of a decommissioned 1950s coastal radar station converted into a refined vacation-rental living room. Square composition, photographed from the entrance at eye level with a 24mm tilt-shift lens, straight vertical lines and believable proportions. The circular concrete room retains its thick curved walls, exposed aggregate texture, narrow steel-framed observation windows and one large panoramic opening facing a cold slate-blue ocean and pale chalk cliffs. Interior design is restrained and highly livable: low modular sofa upholstered in deep ultramarine wool, two brushed-aluminum lounge chairs, a round blackened-steel coffee table, woven charcoal rug, compact suspended wood stove, built-in pale birch cabinetry and a single sculptural cobalt glass vessel. Soft overcast coastal daylight wraps through the room, balanced with warm concealed lighting beneath the cabinetry; subtle reflections on metal, detailed wool and concrete textures, gentle shadow falloff, calm cinematic atmosphere. Clean, meticulously staged but not sterile, no people, no signage, no logos, no visible text. Premium hospitality property photography, natural dynamic range, crisp architectural detail, photorealistic materials, realistic ocean view, editorial composition with the seating area anchoring the foreground and the sea framed as the focal point." \
width=1024 \
height=1024 \
steps=28{
"taskType": "imageInference",
"taskUUID": "29c6a29d-eceb-462a-800a-ad5e16c05e4e",
"model": "runware:101@1",
"positivePrompt": "High-end architectural real-estate photograph of a decommissioned 1950s coastal radar station converted into a refined vacation-rental living room. Square composition, photographed from the entrance at eye level with a 24mm tilt-shift lens, straight vertical lines and believable proportions. The circular concrete room retains its thick curved walls, exposed aggregate texture, narrow steel-framed observation windows and one large panoramic opening facing a cold slate-blue ocean and pale chalk cliffs. Interior design is restrained and highly livable: low modular sofa upholstered in deep ultramarine wool, two brushed-aluminum lounge chairs, a round blackened-steel coffee table, woven charcoal rug, compact suspended wood stove, built-in pale birch cabinetry and a single sculptural cobalt glass vessel. Soft overcast coastal daylight wraps through the room, balanced with warm concealed lighting beneath the cabinetry; subtle reflections on metal, detailed wool and concrete textures, gentle shadow falloff, calm cinematic atmosphere. Clean, meticulously staged but not sterile, no people, no signage, no logos, no visible text. Premium hospitality property photography, natural dynamic range, crisp architectural detail, photorealistic materials, realistic ocean view, editorial composition with the seating area anchoring the foreground and the sea framed as the focal point.",
"width": 1024,
"height": 1024,
"steps": 28
}{
"taskType": "imageInference",
"taskUUID": "29c6a29d-eceb-462a-800a-ad5e16c05e4e",
"imageUUID": "f28a72ab-5287-4051-bf40-f05e4c28b574",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/f28a72ab-5287-4051-bf40-f05e4c28b574.jpg",
"seed": 1956386241,
"cost": 0.0013
}End-of-Life Doula Persona Portrait

Create a finished editorial persona portrait of the same woman shown in the identity reference, now presented as an accomplished end-of-life doula for a contemporary care-industry journal and professional speaker kit. Preserve her recognizable facial structure, deep brown complexion, close-cropped silver curls, warm dark eyes, slight cleft chin and small crescent birthmark beneath her left eye. Compose a three-quarter-length vertical portrait in a serene modern consultation studio, clearly a new composition rather than a reproduction of the reference. She stands with relaxed confidence beside a translucent cobalt-blue acrylic room divider, shoulders open and gaze meeting the camera, conveying warmth, candor and emotional steadiness. Dress her in a precisely tailored persimmon-orange suit over a collarless ivory silk blouse, with one understated sculptural silver brooch. Her fingertips rest naturally on a pale ashwood table holding a linen-bound blank notebook, a shallow ceramic bowl and several smooth river stones—quiet tools for reflective conversation, not mystical props. Warm daylight passes through frosted glass from camera left; a controlled lilac edge light traces her silver hair and suit. Graphic palette of cobalt, persimmon, ivory and soft lilac, clean architectural lines, subtle color blocking, humane optimism rather than gloom. High-end contemporary editorial photography, realistic skin texture, nuanced fabric detail, natural hands, crisp eyes, restrained medium-format depth of field, 80mm portrait-lens perspective. Leave comfortable negative space above and around the figure for flexible editorial cropping. No lettering or logos.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'Create a finished editorial persona portrait of the same woman shown in the identity reference, now presented as an accomplished end-of-life doula for a contemporary care-industry journal and professional speaker kit. Preserve her recognizable facial structure, deep brown complexion, close-cropped silver curls, warm dark eyes, slight cleft chin and small crescent birthmark beneath her left eye. Compose a three-quarter-length vertical portrait in a serene modern consultation studio, clearly a new composition rather than a reproduction of the reference. She stands with relaxed confidence beside a translucent cobalt-blue acrylic room divider, shoulders open and gaze meeting the camera, conveying warmth, candor and emotional steadiness. Dress her in a precisely tailored persimmon-orange suit over a collarless ivory silk blouse, with one understated sculptural silver brooch. Her fingertips rest naturally on a pale ashwood table holding a linen-bound blank notebook, a shallow ceramic bowl and several smooth river stones—quiet tools for reflective conversation, not mystical props. Warm daylight passes through frosted glass from camera left; a controlled lilac edge light traces her silver hair and suit. Graphic palette of cobalt, persimmon, ivory and soft lilac, clean architectural lines, subtle color blocking, humane optimism rather than gloom. High-end contemporary editorial photography, realistic skin texture, nuanced fabric detail, natural hands, crisp eyes, restrained medium-format depth of field, 80mm portrait-lens perspective. Leave comfortable negative space above and around the figure for flexible editorial cropping. No lettering or logos.',
negativePrompt: 'black mourning clothes, coffin, cemetery, candles, occult imagery, gothic styling, melodrama, excessive smiling, eyeglasses, hat, face obstruction, identity change, different hairstyle, extra people, duplicated objects, malformed hands, extra fingers, plastic skin, heavy retouching, text, logo, watermark, border, interface',
width: 896,
height: 1152,
pulid: {
images: [
'https://assets.runware.ai/assets/inputs/be1bb9e0-ceb2-4983-9518-9545e5f1bbb4.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": "runware:101@1",
"positivePrompt": "Create a finished editorial persona portrait of the same woman shown in the identity reference, now presented as an accomplished end-of-life doula for a contemporary care-industry journal and professional speaker kit. Preserve her recognizable facial structure, deep brown complexion, close-cropped silver curls, warm dark eyes, slight cleft chin and small crescent birthmark beneath her left eye. Compose a three-quarter-length vertical portrait in a serene modern consultation studio, clearly a new composition rather than a reproduction of the reference. She stands with relaxed confidence beside a translucent cobalt-blue acrylic room divider, shoulders open and gaze meeting the camera, conveying warmth, candor and emotional steadiness. Dress her in a precisely tailored persimmon-orange suit over a collarless ivory silk blouse, with one understated sculptural silver brooch. Her fingertips rest naturally on a pale ashwood table holding a linen-bound blank notebook, a shallow ceramic bowl and several smooth river stones—quiet tools for reflective conversation, not mystical props. Warm daylight passes through frosted glass from camera left; a controlled lilac edge light traces her silver hair and suit. Graphic palette of cobalt, persimmon, ivory and soft lilac, clean architectural lines, subtle color blocking, humane optimism rather than gloom. High-end contemporary editorial photography, realistic skin texture, nuanced fabric detail, natural hands, crisp eyes, restrained medium-format depth of field, 80mm portrait-lens perspective. Leave comfortable negative space above and around the figure for flexible editorial cropping. No lettering or logos.",
"negativePrompt": "black mourning clothes, coffin, cemetery, candles, occult imagery, gothic styling, melodrama, excessive smiling, eyeglasses, hat, face obstruction, identity change, different hairstyle, extra people, duplicated objects, malformed hands, extra fingers, plastic skin, heavy retouching, text, logo, watermark, border, interface",
"width": 896,
"height": 1152,
"pulid": {
"images": [
"https://assets.runware.ai/assets/inputs/be1bb9e0-ceb2-4983-9518-9545e5f1bbb4.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": "fca139e3-a41c-441c-a141-4ca38daa7d50",
"model": "runware:101@1",
"positivePrompt": "Create a finished editorial persona portrait of the same woman shown in the identity reference, now presented as an accomplished end-of-life doula for a contemporary care-industry journal and professional speaker kit. Preserve her recognizable facial structure, deep brown complexion, close-cropped silver curls, warm dark eyes, slight cleft chin and small crescent birthmark beneath her left eye. Compose a three-quarter-length vertical portrait in a serene modern consultation studio, clearly a new composition rather than a reproduction of the reference. She stands with relaxed confidence beside a translucent cobalt-blue acrylic room divider, shoulders open and gaze meeting the camera, conveying warmth, candor and emotional steadiness. Dress her in a precisely tailored persimmon-orange suit over a collarless ivory silk blouse, with one understated sculptural silver brooch. Her fingertips rest naturally on a pale ashwood table holding a linen-bound blank notebook, a shallow ceramic bowl and several smooth river stones—quiet tools for reflective conversation, not mystical props. Warm daylight passes through frosted glass from camera left; a controlled lilac edge light traces her silver hair and suit. Graphic palette of cobalt, persimmon, ivory and soft lilac, clean architectural lines, subtle color blocking, humane optimism rather than gloom. High-end contemporary editorial photography, realistic skin texture, nuanced fabric detail, natural hands, crisp eyes, restrained medium-format depth of field, 80mm portrait-lens perspective. Leave comfortable negative space above and around the figure for flexible editorial cropping. No lettering or logos.",
"negativePrompt": "black mourning clothes, coffin, cemetery, candles, occult imagery, gothic styling, melodrama, excessive smiling, eyeglasses, hat, face obstruction, identity change, different hairstyle, extra people, duplicated objects, malformed hands, extra fingers, plastic skin, heavy retouching, text, logo, watermark, border, interface",
"width": 896,
"height": 1152,
"pulid": {
"images": [
"https://assets.runware.ai/assets/inputs/be1bb9e0-ceb2-4983-9518-9545e5f1bbb4.jpg"
]
}
}
]'runware run runware:101@1 \
positivePrompt="Create a finished editorial persona portrait of the same woman shown in the identity reference, now presented as an accomplished end-of-life doula for a contemporary care-industry journal and professional speaker kit. Preserve her recognizable facial structure, deep brown complexion, close-cropped silver curls, warm dark eyes, slight cleft chin and small crescent birthmark beneath her left eye. Compose a three-quarter-length vertical portrait in a serene modern consultation studio, clearly a new composition rather than a reproduction of the reference. She stands with relaxed confidence beside a translucent cobalt-blue acrylic room divider, shoulders open and gaze meeting the camera, conveying warmth, candor and emotional steadiness. Dress her in a precisely tailored persimmon-orange suit over a collarless ivory silk blouse, with one understated sculptural silver brooch. Her fingertips rest naturally on a pale ashwood table holding a linen-bound blank notebook, a shallow ceramic bowl and several smooth river stones—quiet tools for reflective conversation, not mystical props. Warm daylight passes through frosted glass from camera left; a controlled lilac edge light traces her silver hair and suit. Graphic palette of cobalt, persimmon, ivory and soft lilac, clean architectural lines, subtle color blocking, humane optimism rather than gloom. High-end contemporary editorial photography, realistic skin texture, nuanced fabric detail, natural hands, crisp eyes, restrained medium-format depth of field, 80mm portrait-lens perspective. Leave comfortable negative space above and around the figure for flexible editorial cropping. No lettering or logos." \
negativePrompt="black mourning clothes, coffin, cemetery, candles, occult imagery, gothic styling, melodrama, excessive smiling, eyeglasses, hat, face obstruction, identity change, different hairstyle, extra people, duplicated objects, malformed hands, extra fingers, plastic skin, heavy retouching, text, logo, watermark, border, interface" \
width=896 \
height=1152 \
pulid.images.0=https://assets.runware.ai/assets/inputs/be1bb9e0-ceb2-4983-9518-9545e5f1bbb4.jpg{
"taskType": "imageInference",
"taskUUID": "fca139e3-a41c-441c-a141-4ca38daa7d50",
"model": "runware:101@1",
"positivePrompt": "Create a finished editorial persona portrait of the same woman shown in the identity reference, now presented as an accomplished end-of-life doula for a contemporary care-industry journal and professional speaker kit. Preserve her recognizable facial structure, deep brown complexion, close-cropped silver curls, warm dark eyes, slight cleft chin and small crescent birthmark beneath her left eye. Compose a three-quarter-length vertical portrait in a serene modern consultation studio, clearly a new composition rather than a reproduction of the reference. She stands with relaxed confidence beside a translucent cobalt-blue acrylic room divider, shoulders open and gaze meeting the camera, conveying warmth, candor and emotional steadiness. Dress her in a precisely tailored persimmon-orange suit over a collarless ivory silk blouse, with one understated sculptural silver brooch. Her fingertips rest naturally on a pale ashwood table holding a linen-bound blank notebook, a shallow ceramic bowl and several smooth river stones—quiet tools for reflective conversation, not mystical props. Warm daylight passes through frosted glass from camera left; a controlled lilac edge light traces her silver hair and suit. Graphic palette of cobalt, persimmon, ivory and soft lilac, clean architectural lines, subtle color blocking, humane optimism rather than gloom. High-end contemporary editorial photography, realistic skin texture, nuanced fabric detail, natural hands, crisp eyes, restrained medium-format depth of field, 80mm portrait-lens perspective. Leave comfortable negative space above and around the figure for flexible editorial cropping. No lettering or logos.",
"negativePrompt": "black mourning clothes, coffin, cemetery, candles, occult imagery, gothic styling, melodrama, excessive smiling, eyeglasses, hat, face obstruction, identity change, different hairstyle, extra people, duplicated objects, malformed hands, extra fingers, plastic skin, heavy retouching, text, logo, watermark, border, interface",
"width": 896,
"height": 1152,
"pulid": {
"images": [
"https://assets.runware.ai/assets/inputs/be1bb9e0-ceb2-4983-9518-9545e5f1bbb4.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "fca139e3-a41c-441c-a141-4ca38daa7d50",
"imageUUID": "3ce5bbbf-ecec-4c00-8eea-10207c23d819",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/3ce5bbbf-ecec-4c00-8eea-10207c23d819.jpg",
"seed": 558419930,
"cost": 0.0051
}Wastewater Science Picture-Book Spread

Transform the seed photograph into a finished two-page children’s science-book illustration for readers ages 7–10, explaining what happens inside a municipal secondary clarifier. Preserve the seed image’s recognizable composition and perspective: the sweeping circular basin rim in the foreground, the catwalk leading toward the horizon, the operator on the right third, and the arrangement of distant tanks and utility buildings. Reinterpret the scene as a bold mixed-media cut-paper collage with opaque gouache, screen-printed textures, chunky geometric shapes, visible paper fibers and slightly imperfect ink registration. Turn the basin into a scientifically informed cutaway: above the waterline, show the operator kneeling safely behind the railing and observing the calm blue-green surface; below it, reveal suspended particles drifting downward, friendly simplified microorganism shapes clustering the particles, settled brown sludge along the sloped floor, and a slow scraper arm guiding solids toward the center hopper. Show clean clarified water spilling evenly over the perimeter weir. Use visual storytelling rather than labels, arrows or text. The microorganisms may have subtle expressive eyes for child appeal, but should still read as an educational magnified visualization rather than fantasy creatures. Palette: saturated cobalt blue, turquoise, coral red, mustard yellow, warm cream and dark espresso outlines. Bright, optimistic civic-science mood with strong shape separation and tactile handcrafted detail. Full-bleed 1280x704 landscape picture-book spread with an implied vertical gutter at center; keep faces and essential details away from the gutter. Clear foreground-to-background hierarchy, polished editorial illustration, no captions, no lettering, no logos, no border, no photorealism.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'Transform the seed photograph into a finished two-page children’s science-book illustration for readers ages 7–10, explaining what happens inside a municipal secondary clarifier. Preserve the seed image’s recognizable composition and perspective: the sweeping circular basin rim in the foreground, the catwalk leading toward the horizon, the operator on the right third, and the arrangement of distant tanks and utility buildings. Reinterpret the scene as a bold mixed-media cut-paper collage with opaque gouache, screen-printed textures, chunky geometric shapes, visible paper fibers and slightly imperfect ink registration.\n\nTurn the basin into a scientifically informed cutaway: above the waterline, show the operator kneeling safely behind the railing and observing the calm blue-green surface; below it, reveal suspended particles drifting downward, friendly simplified microorganism shapes clustering the particles, settled brown sludge along the sloped floor, and a slow scraper arm guiding solids toward the center hopper. Show clean clarified water spilling evenly over the perimeter weir. Use visual storytelling rather than labels, arrows or text. The microorganisms may have subtle expressive eyes for child appeal, but should still read as an educational magnified visualization rather than fantasy creatures.\n\nPalette: saturated cobalt blue, turquoise, coral red, mustard yellow, warm cream and dark espresso outlines. Bright, optimistic civic-science mood with strong shape separation and tactile handcrafted detail. Full-bleed 1280x704 landscape picture-book spread with an implied vertical gutter at center; keep faces and essential details away from the gutter. Clear foreground-to-background hierarchy, polished editorial illustration, no captions, no lettering, no logos, no border, no photorealism.',
width: 1280,
height: 704,
strength: 0.65,
inputs: {
seedImage: 'https://assets.runware.ai/assets/inputs/fe8fdd6d-4997-43dd-9c41-b9549e12e353.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": "runware:101@1",
"positivePrompt": "Transform the seed photograph into a finished two-page children’s science-book illustration for readers ages 7–10, explaining what happens inside a municipal secondary clarifier. Preserve the seed image’s recognizable composition and perspective: the sweeping circular basin rim in the foreground, the catwalk leading toward the horizon, the operator on the right third, and the arrangement of distant tanks and utility buildings. Reinterpret the scene as a bold mixed-media cut-paper collage with opaque gouache, screen-printed textures, chunky geometric shapes, visible paper fibers and slightly imperfect ink registration.\n\nTurn the basin into a scientifically informed cutaway: above the waterline, show the operator kneeling safely behind the railing and observing the calm blue-green surface; below it, reveal suspended particles drifting downward, friendly simplified microorganism shapes clustering the particles, settled brown sludge along the sloped floor, and a slow scraper arm guiding solids toward the center hopper. Show clean clarified water spilling evenly over the perimeter weir. Use visual storytelling rather than labels, arrows or text. The microorganisms may have subtle expressive eyes for child appeal, but should still read as an educational magnified visualization rather than fantasy creatures.\n\nPalette: saturated cobalt blue, turquoise, coral red, mustard yellow, warm cream and dark espresso outlines. Bright, optimistic civic-science mood with strong shape separation and tactile handcrafted detail. Full-bleed 1280x704 landscape picture-book spread with an implied vertical gutter at center; keep faces and essential details away from the gutter. Clear foreground-to-background hierarchy, polished editorial illustration, no captions, no lettering, no logos, no border, no photorealism.",
"width": 1280,
"height": 704,
"strength": 0.65,
"inputs": {
"seedImage": "https://assets.runware.ai/assets/inputs/fe8fdd6d-4997-43dd-9c41-b9549e12e353.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": "0d90fa22-e87f-4aff-b26c-4b949fd56fe6",
"model": "runware:101@1",
"positivePrompt": "Transform the seed photograph into a finished two-page children’s science-book illustration for readers ages 7–10, explaining what happens inside a municipal secondary clarifier. Preserve the seed image’s recognizable composition and perspective: the sweeping circular basin rim in the foreground, the catwalk leading toward the horizon, the operator on the right third, and the arrangement of distant tanks and utility buildings. Reinterpret the scene as a bold mixed-media cut-paper collage with opaque gouache, screen-printed textures, chunky geometric shapes, visible paper fibers and slightly imperfect ink registration.\n\nTurn the basin into a scientifically informed cutaway: above the waterline, show the operator kneeling safely behind the railing and observing the calm blue-green surface; below it, reveal suspended particles drifting downward, friendly simplified microorganism shapes clustering the particles, settled brown sludge along the sloped floor, and a slow scraper arm guiding solids toward the center hopper. Show clean clarified water spilling evenly over the perimeter weir. Use visual storytelling rather than labels, arrows or text. The microorganisms may have subtle expressive eyes for child appeal, but should still read as an educational magnified visualization rather than fantasy creatures.\n\nPalette: saturated cobalt blue, turquoise, coral red, mustard yellow, warm cream and dark espresso outlines. Bright, optimistic civic-science mood with strong shape separation and tactile handcrafted detail. Full-bleed 1280x704 landscape picture-book spread with an implied vertical gutter at center; keep faces and essential details away from the gutter. Clear foreground-to-background hierarchy, polished editorial illustration, no captions, no lettering, no logos, no border, no photorealism.",
"width": 1280,
"height": 704,
"strength": 0.65,
"inputs": {
"seedImage": "https://assets.runware.ai/assets/inputs/fe8fdd6d-4997-43dd-9c41-b9549e12e353.jpg"
}
}
]'runware run runware:101@1 \
positivePrompt="Transform the seed photograph into a finished two-page children’s science-book illustration for readers ages 7–10, explaining what happens inside a municipal secondary clarifier. Preserve the seed image’s recognizable composition and perspective: the sweeping circular basin rim in the foreground, the catwalk leading toward the horizon, the operator on the right third, and the arrangement of distant tanks and utility buildings. Reinterpret the scene as a bold mixed-media cut-paper collage with opaque gouache, screen-printed textures, chunky geometric shapes, visible paper fibers and slightly imperfect ink registration.
Turn the basin into a scientifically informed cutaway: above the waterline, show the operator kneeling safely behind the railing and observing the calm blue-green surface; below it, reveal suspended particles drifting downward, friendly simplified microorganism shapes clustering the particles, settled brown sludge along the sloped floor, and a slow scraper arm guiding solids toward the center hopper. Show clean clarified water spilling evenly over the perimeter weir. Use visual storytelling rather than labels, arrows or text. The microorganisms may have subtle expressive eyes for child appeal, but should still read as an educational magnified visualization rather than fantasy creatures.
Palette: saturated cobalt blue, turquoise, coral red, mustard yellow, warm cream and dark espresso outlines. Bright, optimistic civic-science mood with strong shape separation and tactile handcrafted detail. Full-bleed 1280x704 landscape picture-book spread with an implied vertical gutter at center; keep faces and essential details away from the gutter. Clear foreground-to-background hierarchy, polished editorial illustration, no captions, no lettering, no logos, no border, no photorealism." \
width=1280 \
height=704 \
strength=0.65 \
inputs.seedImage=https://assets.runware.ai/assets/inputs/fe8fdd6d-4997-43dd-9c41-b9549e12e353.jpg{
"taskType": "imageInference",
"taskUUID": "0d90fa22-e87f-4aff-b26c-4b949fd56fe6",
"model": "runware:101@1",
"positivePrompt": "Transform the seed photograph into a finished two-page children’s science-book illustration for readers ages 7–10, explaining what happens inside a municipal secondary clarifier. Preserve the seed image’s recognizable composition and perspective: the sweeping circular basin rim in the foreground, the catwalk leading toward the horizon, the operator on the right third, and the arrangement of distant tanks and utility buildings. Reinterpret the scene as a bold mixed-media cut-paper collage with opaque gouache, screen-printed textures, chunky geometric shapes, visible paper fibers and slightly imperfect ink registration.\n\nTurn the basin into a scientifically informed cutaway: above the waterline, show the operator kneeling safely behind the railing and observing the calm blue-green surface; below it, reveal suspended particles drifting downward, friendly simplified microorganism shapes clustering the particles, settled brown sludge along the sloped floor, and a slow scraper arm guiding solids toward the center hopper. Show clean clarified water spilling evenly over the perimeter weir. Use visual storytelling rather than labels, arrows or text. The microorganisms may have subtle expressive eyes for child appeal, but should still read as an educational magnified visualization rather than fantasy creatures.\n\nPalette: saturated cobalt blue, turquoise, coral red, mustard yellow, warm cream and dark espresso outlines. Bright, optimistic civic-science mood with strong shape separation and tactile handcrafted detail. Full-bleed 1280x704 landscape picture-book spread with an implied vertical gutter at center; keep faces and essential details away from the gutter. Clear foreground-to-background hierarchy, polished editorial illustration, no captions, no lettering, no logos, no border, no photorealism.",
"width": 1280,
"height": 704,
"strength": 0.65,
"inputs": {
"seedImage": "https://assets.runware.ai/assets/inputs/fe8fdd6d-4997-43dd-9c41-b9549e12e353.jpg"
}
}{
"taskType": "imageInference",
"taskUUID": "0d90fa22-e87f-4aff-b26c-4b949fd56fe6",
"imageUUID": "1b2f8840-25b6-4bd4-a24b-f8caf6d37fc7",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/1b2f8840-25b6-4bd4-a24b-f8caf6d37fc7.jpg",
"seed": 1834543499,
"cost": 0.0038
}Desert Survival Save Station Concept

Completely remove the entire masked portable generator and replace it with a production-ready save station prop for a grounded desert survival game. Preserve the unmasked gypsum desert, horizon, blue sky, camera position, perspective, hard midday sunlight, ground texture, and overall framing exactly, naturally completing any background exposed around the replacement. The new prop occupies the same footprint and approximate waist-high volume: a compact solar-powered water cache built by practical desert nomads, with a sturdy cobalt-blue ceramic reservoir protected by an ivory powder-coated tubular frame, a narrow vermilion emergency lever, folded photovoltaic fins, a recessed canteen filling nozzle, pressure gauge, dust filters, bolts, hinges, carrying handles, and believable service panels. Functional 1970s industrial design language rather than sleek futurism; rugged, repairable construction with chipped enamel, mineral crust, windblown dust, and subtle wear. Integrate it convincingly into the scene with correct contact, perspective, crisp sunlit edges, reflected white ground light, and a compact natural shadow consistent with the existing lighting. Clear readable silhouette suitable for gameplay recognition at a distance. High-end realistic game environment concept paintover, detailed hard-surface design, optimistic heat-haze atmosphere, sun-bleached white, cobalt, ivory, and vermilion palette. No lettering, logo, interface, character, creature, weapon, or additional object.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'Completely remove the entire masked portable generator and replace it with a production-ready save station prop for a grounded desert survival game. Preserve the unmasked gypsum desert, horizon, blue sky, camera position, perspective, hard midday sunlight, ground texture, and overall framing exactly, naturally completing any background exposed around the replacement. The new prop occupies the same footprint and approximate waist-high volume: a compact solar-powered water cache built by practical desert nomads, with a sturdy cobalt-blue ceramic reservoir protected by an ivory powder-coated tubular frame, a narrow vermilion emergency lever, folded photovoltaic fins, a recessed canteen filling nozzle, pressure gauge, dust filters, bolts, hinges, carrying handles, and believable service panels. Functional 1970s industrial design language rather than sleek futurism; rugged, repairable construction with chipped enamel, mineral crust, windblown dust, and subtle wear. Integrate it convincingly into the scene with correct contact, perspective, crisp sunlit edges, reflected white ground light, and a compact natural shadow consistent with the existing lighting. Clear readable silhouette suitable for gameplay recognition at a distance. High-end realistic game environment concept paintover, detailed hard-surface design, optimistic heat-haze atmosphere, sun-bleached white, cobalt, ivory, and vermilion palette. No lettering, logo, interface, character, creature, weapon, or additional object.',
negativePrompt: 'Any remaining part of the yellow generator, duplicate props, floating object, mismatched perspective, oversized structure, buildings, vehicles, people, cables, fantasy ornament, neon cyberpunk styling, text, logo, watermark, game UI, inventory screen, border, concept sheet, multiple views',
width: 1024,
height: 1024,
strength: 0.8,
maskMargin: 64,
inputs: {
seedImage: 'https://assets.runware.ai/assets/inputs/0108a08e-35fa-4165-ab3a-cf40bc84ea97.jpg',
maskImage: 'https://assets.runware.ai/assets/inputs/dcac5321-f4eb-4bfe-9133-b38f95a2ce3d.png'
}
})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": "runware:101@1",
"positivePrompt": "Completely remove the entire masked portable generator and replace it with a production-ready save station prop for a grounded desert survival game. Preserve the unmasked gypsum desert, horizon, blue sky, camera position, perspective, hard midday sunlight, ground texture, and overall framing exactly, naturally completing any background exposed around the replacement. The new prop occupies the same footprint and approximate waist-high volume: a compact solar-powered water cache built by practical desert nomads, with a sturdy cobalt-blue ceramic reservoir protected by an ivory powder-coated tubular frame, a narrow vermilion emergency lever, folded photovoltaic fins, a recessed canteen filling nozzle, pressure gauge, dust filters, bolts, hinges, carrying handles, and believable service panels. Functional 1970s industrial design language rather than sleek futurism; rugged, repairable construction with chipped enamel, mineral crust, windblown dust, and subtle wear. Integrate it convincingly into the scene with correct contact, perspective, crisp sunlit edges, reflected white ground light, and a compact natural shadow consistent with the existing lighting. Clear readable silhouette suitable for gameplay recognition at a distance. High-end realistic game environment concept paintover, detailed hard-surface design, optimistic heat-haze atmosphere, sun-bleached white, cobalt, ivory, and vermilion palette. No lettering, logo, interface, character, creature, weapon, or additional object.",
"negativePrompt": "Any remaining part of the yellow generator, duplicate props, floating object, mismatched perspective, oversized structure, buildings, vehicles, people, cables, fantasy ornament, neon cyberpunk styling, text, logo, watermark, game UI, inventory screen, border, concept sheet, multiple views",
"width": 1024,
"height": 1024,
"strength": 0.8,
"maskMargin": 64,
"inputs": {
"seedImage": "https://assets.runware.ai/assets/inputs/0108a08e-35fa-4165-ab3a-cf40bc84ea97.jpg",
"maskImage": "https://assets.runware.ai/assets/inputs/dcac5321-f4eb-4bfe-9133-b38f95a2ce3d.png"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "d1128b9d-8508-4666-abe8-86c0c064fd7e",
"model": "runware:101@1",
"positivePrompt": "Completely remove the entire masked portable generator and replace it with a production-ready save station prop for a grounded desert survival game. Preserve the unmasked gypsum desert, horizon, blue sky, camera position, perspective, hard midday sunlight, ground texture, and overall framing exactly, naturally completing any background exposed around the replacement. The new prop occupies the same footprint and approximate waist-high volume: a compact solar-powered water cache built by practical desert nomads, with a sturdy cobalt-blue ceramic reservoir protected by an ivory powder-coated tubular frame, a narrow vermilion emergency lever, folded photovoltaic fins, a recessed canteen filling nozzle, pressure gauge, dust filters, bolts, hinges, carrying handles, and believable service panels. Functional 1970s industrial design language rather than sleek futurism; rugged, repairable construction with chipped enamel, mineral crust, windblown dust, and subtle wear. Integrate it convincingly into the scene with correct contact, perspective, crisp sunlit edges, reflected white ground light, and a compact natural shadow consistent with the existing lighting. Clear readable silhouette suitable for gameplay recognition at a distance. High-end realistic game environment concept paintover, detailed hard-surface design, optimistic heat-haze atmosphere, sun-bleached white, cobalt, ivory, and vermilion palette. No lettering, logo, interface, character, creature, weapon, or additional object.",
"negativePrompt": "Any remaining part of the yellow generator, duplicate props, floating object, mismatched perspective, oversized structure, buildings, vehicles, people, cables, fantasy ornament, neon cyberpunk styling, text, logo, watermark, game UI, inventory screen, border, concept sheet, multiple views",
"width": 1024,
"height": 1024,
"strength": 0.8,
"maskMargin": 64,
"inputs": {
"seedImage": "https://assets.runware.ai/assets/inputs/0108a08e-35fa-4165-ab3a-cf40bc84ea97.jpg",
"maskImage": "https://assets.runware.ai/assets/inputs/dcac5321-f4eb-4bfe-9133-b38f95a2ce3d.png"
}
}
]'runware run runware:101@1 \
positivePrompt="Completely remove the entire masked portable generator and replace it with a production-ready save station prop for a grounded desert survival game. Preserve the unmasked gypsum desert, horizon, blue sky, camera position, perspective, hard midday sunlight, ground texture, and overall framing exactly, naturally completing any background exposed around the replacement. The new prop occupies the same footprint and approximate waist-high volume: a compact solar-powered water cache built by practical desert nomads, with a sturdy cobalt-blue ceramic reservoir protected by an ivory powder-coated tubular frame, a narrow vermilion emergency lever, folded photovoltaic fins, a recessed canteen filling nozzle, pressure gauge, dust filters, bolts, hinges, carrying handles, and believable service panels. Functional 1970s industrial design language rather than sleek futurism; rugged, repairable construction with chipped enamel, mineral crust, windblown dust, and subtle wear. Integrate it convincingly into the scene with correct contact, perspective, crisp sunlit edges, reflected white ground light, and a compact natural shadow consistent with the existing lighting. Clear readable silhouette suitable for gameplay recognition at a distance. High-end realistic game environment concept paintover, detailed hard-surface design, optimistic heat-haze atmosphere, sun-bleached white, cobalt, ivory, and vermilion palette. No lettering, logo, interface, character, creature, weapon, or additional object." \
negativePrompt="Any remaining part of the yellow generator, duplicate props, floating object, mismatched perspective, oversized structure, buildings, vehicles, people, cables, fantasy ornament, neon cyberpunk styling, text, logo, watermark, game UI, inventory screen, border, concept sheet, multiple views" \
width=1024 \
height=1024 \
strength=0.8 \
maskMargin=64 \
inputs.seedImage=https://assets.runware.ai/assets/inputs/0108a08e-35fa-4165-ab3a-cf40bc84ea97.jpg \
inputs.maskImage=https://assets.runware.ai/assets/inputs/dcac5321-f4eb-4bfe-9133-b38f95a2ce3d.png{
"taskType": "imageInference",
"taskUUID": "d1128b9d-8508-4666-abe8-86c0c064fd7e",
"model": "runware:101@1",
"positivePrompt": "Completely remove the entire masked portable generator and replace it with a production-ready save station prop for a grounded desert survival game. Preserve the unmasked gypsum desert, horizon, blue sky, camera position, perspective, hard midday sunlight, ground texture, and overall framing exactly, naturally completing any background exposed around the replacement. The new prop occupies the same footprint and approximate waist-high volume: a compact solar-powered water cache built by practical desert nomads, with a sturdy cobalt-blue ceramic reservoir protected by an ivory powder-coated tubular frame, a narrow vermilion emergency lever, folded photovoltaic fins, a recessed canteen filling nozzle, pressure gauge, dust filters, bolts, hinges, carrying handles, and believable service panels. Functional 1970s industrial design language rather than sleek futurism; rugged, repairable construction with chipped enamel, mineral crust, windblown dust, and subtle wear. Integrate it convincingly into the scene with correct contact, perspective, crisp sunlit edges, reflected white ground light, and a compact natural shadow consistent with the existing lighting. Clear readable silhouette suitable for gameplay recognition at a distance. High-end realistic game environment concept paintover, detailed hard-surface design, optimistic heat-haze atmosphere, sun-bleached white, cobalt, ivory, and vermilion palette. No lettering, logo, interface, character, creature, weapon, or additional object.",
"negativePrompt": "Any remaining part of the yellow generator, duplicate props, floating object, mismatched perspective, oversized structure, buildings, vehicles, people, cables, fantasy ornament, neon cyberpunk styling, text, logo, watermark, game UI, inventory screen, border, concept sheet, multiple views",
"width": 1024,
"height": 1024,
"strength": 0.8,
"maskMargin": 64,
"inputs": {
"seedImage": "https://assets.runware.ai/assets/inputs/0108a08e-35fa-4165-ab3a-cf40bc84ea97.jpg",
"maskImage": "https://assets.runware.ai/assets/inputs/dcac5321-f4eb-4bfe-9133-b38f95a2ce3d.png"
}
}{
"taskType": "imageInference",
"taskUUID": "d1128b9d-8508-4666-abe8-86c0c064fd7e",
"imageUUID": "d55ab345-00fe-48c6-954c-97ea4a3861e1",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/d55ab345-00fe-48c6-954c-97ea4a3861e1.jpg",
"seed": 1733162215,
"cost": 0.0038
}Oyster Hatchery Lifecycle Training Infographic

Create a finished landscape educational infographic for a commercial shellfish hatchery, using the guide image’s unmistakable five-stage left-to-right structure, circular vessel, magnification circle, stacked screens, shallow tray, rectangular cage, and connecting arrows. Transform the generic factory diagram into an accurate oyster hatchery lifecycle explainer. Stage 1: mature broodstock oysters in a round temperature-controlled spawning tank releasing eggs and sperm. Stage 2: enlarged microscope view of tiny free-swimming D-shaped oyster larvae with delicate cilia. Stage 3: larvae being graded through a vertical stack of progressively finer mesh sieves. Stage 4: eyed larvae settling and attaching to clean shell cultch in a shallow downweller tray. Stage 5: juvenile oyster seed growing inside a floating mesh nursery basket in coastal water. Add a restrained heading, “FROM SPAWN TO SEED,” and five short stage labels: “1 BROODSTOCK,” “2 LARVAE,” “3 GRADE,” “4 SET,” “5 NURSERY.” Include tiny supporting icons for temperature, microscope scale, mesh size, settlement, and tidal flow, but avoid paragraphs. Art direction: crisp mid-century scientific screen-print infographic, flat geometric cutaway illustrations, warm ivory paper, deep cobalt blue, vivid vermilion, seafoam green, and charcoal outlines. Clear visual hierarchy, generous margins, consistent arrow rhythm, precise aquaculture equipment, subtle halftone texture, highly legible museum-quality editorial design. Straight-on orthographic presentation, no perspective mockup, no website interface, no logos, no decorative border.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'Create a finished landscape educational infographic for a commercial shellfish hatchery, using the guide image’s unmistakable five-stage left-to-right structure, circular vessel, magnification circle, stacked screens, shallow tray, rectangular cage, and connecting arrows. Transform the generic factory diagram into an accurate oyster hatchery lifecycle explainer. Stage 1: mature broodstock oysters in a round temperature-controlled spawning tank releasing eggs and sperm. Stage 2: enlarged microscope view of tiny free-swimming D-shaped oyster larvae with delicate cilia. Stage 3: larvae being graded through a vertical stack of progressively finer mesh sieves. Stage 4: eyed larvae settling and attaching to clean shell cultch in a shallow downweller tray. Stage 5: juvenile oyster seed growing inside a floating mesh nursery basket in coastal water. Add a restrained heading, “FROM SPAWN TO SEED,” and five short stage labels: “1 BROODSTOCK,” “2 LARVAE,” “3 GRADE,” “4 SET,” “5 NURSERY.” Include tiny supporting icons for temperature, microscope scale, mesh size, settlement, and tidal flow, but avoid paragraphs. Art direction: crisp mid-century scientific screen-print infographic, flat geometric cutaway illustrations, warm ivory paper, deep cobalt blue, vivid vermilion, seafoam green, and charcoal outlines. Clear visual hierarchy, generous margins, consistent arrow rhythm, precise aquaculture equipment, subtle halftone texture, highly legible museum-quality editorial design. Straight-on orthographic presentation, no perspective mockup, no website interface, no logos, no decorative border.',
width: 1152,
height: 768,
controlNet: [
{
model: 'runware:25@1',
guideImage: 'https://assets.runware.ai/assets/inputs/16d2bd3b-490d-4428-b4ad-50172558e842.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": "runware:101@1",
"positivePrompt": "Create a finished landscape educational infographic for a commercial shellfish hatchery, using the guide image’s unmistakable five-stage left-to-right structure, circular vessel, magnification circle, stacked screens, shallow tray, rectangular cage, and connecting arrows. Transform the generic factory diagram into an accurate oyster hatchery lifecycle explainer. Stage 1: mature broodstock oysters in a round temperature-controlled spawning tank releasing eggs and sperm. Stage 2: enlarged microscope view of tiny free-swimming D-shaped oyster larvae with delicate cilia. Stage 3: larvae being graded through a vertical stack of progressively finer mesh sieves. Stage 4: eyed larvae settling and attaching to clean shell cultch in a shallow downweller tray. Stage 5: juvenile oyster seed growing inside a floating mesh nursery basket in coastal water. Add a restrained heading, “FROM SPAWN TO SEED,” and five short stage labels: “1 BROODSTOCK,” “2 LARVAE,” “3 GRADE,” “4 SET,” “5 NURSERY.” Include tiny supporting icons for temperature, microscope scale, mesh size, settlement, and tidal flow, but avoid paragraphs. Art direction: crisp mid-century scientific screen-print infographic, flat geometric cutaway illustrations, warm ivory paper, deep cobalt blue, vivid vermilion, seafoam green, and charcoal outlines. Clear visual hierarchy, generous margins, consistent arrow rhythm, precise aquaculture equipment, subtle halftone texture, highly legible museum-quality editorial design. Straight-on orthographic presentation, no perspective mockup, no website interface, no logos, no decorative border.",
"width": 1152,
"height": 768,
"controlNet": [
{
"model": "runware:25@1",
"guideImage": "https://assets.runware.ai/assets/inputs/16d2bd3b-490d-4428-b4ad-50172558e842.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": "3ad9c875-7e20-4587-b8bb-f901c517e72b",
"model": "runware:101@1",
"positivePrompt": "Create a finished landscape educational infographic for a commercial shellfish hatchery, using the guide image’s unmistakable five-stage left-to-right structure, circular vessel, magnification circle, stacked screens, shallow tray, rectangular cage, and connecting arrows. Transform the generic factory diagram into an accurate oyster hatchery lifecycle explainer. Stage 1: mature broodstock oysters in a round temperature-controlled spawning tank releasing eggs and sperm. Stage 2: enlarged microscope view of tiny free-swimming D-shaped oyster larvae with delicate cilia. Stage 3: larvae being graded through a vertical stack of progressively finer mesh sieves. Stage 4: eyed larvae settling and attaching to clean shell cultch in a shallow downweller tray. Stage 5: juvenile oyster seed growing inside a floating mesh nursery basket in coastal water. Add a restrained heading, “FROM SPAWN TO SEED,” and five short stage labels: “1 BROODSTOCK,” “2 LARVAE,” “3 GRADE,” “4 SET,” “5 NURSERY.” Include tiny supporting icons for temperature, microscope scale, mesh size, settlement, and tidal flow, but avoid paragraphs. Art direction: crisp mid-century scientific screen-print infographic, flat geometric cutaway illustrations, warm ivory paper, deep cobalt blue, vivid vermilion, seafoam green, and charcoal outlines. Clear visual hierarchy, generous margins, consistent arrow rhythm, precise aquaculture equipment, subtle halftone texture, highly legible museum-quality editorial design. Straight-on orthographic presentation, no perspective mockup, no website interface, no logos, no decorative border.",
"width": 1152,
"height": 768,
"controlNet": [
{
"model": "runware:25@1",
"guideImage": "https://assets.runware.ai/assets/inputs/16d2bd3b-490d-4428-b4ad-50172558e842.jpg"
}
]
}
]'runware run runware:101@1 \
positivePrompt="Create a finished landscape educational infographic for a commercial shellfish hatchery, using the guide image’s unmistakable five-stage left-to-right structure, circular vessel, magnification circle, stacked screens, shallow tray, rectangular cage, and connecting arrows. Transform the generic factory diagram into an accurate oyster hatchery lifecycle explainer. Stage 1: mature broodstock oysters in a round temperature-controlled spawning tank releasing eggs and sperm. Stage 2: enlarged microscope view of tiny free-swimming D-shaped oyster larvae with delicate cilia. Stage 3: larvae being graded through a vertical stack of progressively finer mesh sieves. Stage 4: eyed larvae settling and attaching to clean shell cultch in a shallow downweller tray. Stage 5: juvenile oyster seed growing inside a floating mesh nursery basket in coastal water. Add a restrained heading, “FROM SPAWN TO SEED,” and five short stage labels: “1 BROODSTOCK,” “2 LARVAE,” “3 GRADE,” “4 SET,” “5 NURSERY.” Include tiny supporting icons for temperature, microscope scale, mesh size, settlement, and tidal flow, but avoid paragraphs. Art direction: crisp mid-century scientific screen-print infographic, flat geometric cutaway illustrations, warm ivory paper, deep cobalt blue, vivid vermilion, seafoam green, and charcoal outlines. Clear visual hierarchy, generous margins, consistent arrow rhythm, precise aquaculture equipment, subtle halftone texture, highly legible museum-quality editorial design. Straight-on orthographic presentation, no perspective mockup, no website interface, no logos, no decorative border." \
width=1152 \
height=768 \
controlNet.0.model=runware:25@1 \
controlNet.0.guideImage=https://assets.runware.ai/assets/inputs/16d2bd3b-490d-4428-b4ad-50172558e842.jpg{
"taskType": "imageInference",
"taskUUID": "3ad9c875-7e20-4587-b8bb-f901c517e72b",
"model": "runware:101@1",
"positivePrompt": "Create a finished landscape educational infographic for a commercial shellfish hatchery, using the guide image’s unmistakable five-stage left-to-right structure, circular vessel, magnification circle, stacked screens, shallow tray, rectangular cage, and connecting arrows. Transform the generic factory diagram into an accurate oyster hatchery lifecycle explainer. Stage 1: mature broodstock oysters in a round temperature-controlled spawning tank releasing eggs and sperm. Stage 2: enlarged microscope view of tiny free-swimming D-shaped oyster larvae with delicate cilia. Stage 3: larvae being graded through a vertical stack of progressively finer mesh sieves. Stage 4: eyed larvae settling and attaching to clean shell cultch in a shallow downweller tray. Stage 5: juvenile oyster seed growing inside a floating mesh nursery basket in coastal water. Add a restrained heading, “FROM SPAWN TO SEED,” and five short stage labels: “1 BROODSTOCK,” “2 LARVAE,” “3 GRADE,” “4 SET,” “5 NURSERY.” Include tiny supporting icons for temperature, microscope scale, mesh size, settlement, and tidal flow, but avoid paragraphs. Art direction: crisp mid-century scientific screen-print infographic, flat geometric cutaway illustrations, warm ivory paper, deep cobalt blue, vivid vermilion, seafoam green, and charcoal outlines. Clear visual hierarchy, generous margins, consistent arrow rhythm, precise aquaculture equipment, subtle halftone texture, highly legible museum-quality editorial design. Straight-on orthographic presentation, no perspective mockup, no website interface, no logos, no decorative border.",
"width": 1152,
"height": 768,
"controlNet": [
{
"model": "runware:25@1",
"guideImage": "https://assets.runware.ai/assets/inputs/16d2bd3b-490d-4428-b4ad-50172558e842.jpg"
}
]
}{
"taskType": "imageInference",
"taskUUID": "3ad9c875-7e20-4587-b8bb-f901c517e72b",
"imageUUID": "c3ce0a76-b1bc-4a71-83be-6760a66d899c",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/c3ce0a76-b1bc-4a71-83be-6760a66d899c.jpg",
"seed": 1115112532,
"cost": 0.0026
}Rain-Swept Tram Depot Portrait

A poised young conductor standing alone in a grand 1930s tram depot during a hard evening rain, tailored cobalt uniform with brass buttons, weathered leather satchel, gloved hand holding a punched ticket roll, short dark hair damp from mist, calm determined expression, towering iron arches and hanging route signs in the background, polished stone floor covered with shimmering puddles and reflected station lamps, a stationary vintage tram with cream and maroon paint behind her, drifting steam, scattered newspapers, cinematic framing, full-body portrait, slightly low camera angle, exquisite fabric texture, realistic skin, crisp facial detail, moody amber and blue lighting, atmospheric depth, high detail, photoreal, elegant composition
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'A poised young conductor standing alone in a grand 1930s tram depot during a hard evening rain, tailored cobalt uniform with brass buttons, weathered leather satchel, gloved hand holding a punched ticket roll, short dark hair damp from mist, calm determined expression, towering iron arches and hanging route signs in the background, polished stone floor covered with shimmering puddles and reflected station lamps, a stationary vintage tram with cream and maroon paint behind her, drifting steam, scattered newspapers, cinematic framing, full-body portrait, slightly low camera angle, exquisite fabric texture, realistic skin, crisp facial detail, moody amber and blue lighting, atmospheric depth, high detail, photoreal, elegant composition',
width: 896,
height: 1152,
seed: 27587,
steps: 32,
CFGScale: 3.5
})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": "runware:101@1",
"positivePrompt": "A poised young conductor standing alone in a grand 1930s tram depot during a hard evening rain, tailored cobalt uniform with brass buttons, weathered leather satchel, gloved hand holding a punched ticket roll, short dark hair damp from mist, calm determined expression, towering iron arches and hanging route signs in the background, polished stone floor covered with shimmering puddles and reflected station lamps, a stationary vintage tram with cream and maroon paint behind her, drifting steam, scattered newspapers, cinematic framing, full-body portrait, slightly low camera angle, exquisite fabric texture, realistic skin, crisp facial detail, moody amber and blue lighting, atmospheric depth, high detail, photoreal, elegant composition",
"width": 896,
"height": 1152,
"seed": 27587,
"steps": 32,
"CFGScale": 3.5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "25b15b74-8d67-4fd4-a14e-5221efd446a9",
"model": "runware:101@1",
"positivePrompt": "A poised young conductor standing alone in a grand 1930s tram depot during a hard evening rain, tailored cobalt uniform with brass buttons, weathered leather satchel, gloved hand holding a punched ticket roll, short dark hair damp from mist, calm determined expression, towering iron arches and hanging route signs in the background, polished stone floor covered with shimmering puddles and reflected station lamps, a stationary vintage tram with cream and maroon paint behind her, drifting steam, scattered newspapers, cinematic framing, full-body portrait, slightly low camera angle, exquisite fabric texture, realistic skin, crisp facial detail, moody amber and blue lighting, atmospheric depth, high detail, photoreal, elegant composition",
"width": 896,
"height": 1152,
"seed": 27587,
"steps": 32,
"CFGScale": 3.5
}
]'runware run runware:101@1 \
positivePrompt="A poised young conductor standing alone in a grand 1930s tram depot during a hard evening rain, tailored cobalt uniform with brass buttons, weathered leather satchel, gloved hand holding a punched ticket roll, short dark hair damp from mist, calm determined expression, towering iron arches and hanging route signs in the background, polished stone floor covered with shimmering puddles and reflected station lamps, a stationary vintage tram with cream and maroon paint behind her, drifting steam, scattered newspapers, cinematic framing, full-body portrait, slightly low camera angle, exquisite fabric texture, realistic skin, crisp facial detail, moody amber and blue lighting, atmospheric depth, high detail, photoreal, elegant composition" \
width=896 \
height=1152 \
seed=27587 \
steps=32 \
CFGScale=3.5{
"taskType": "imageInference",
"taskUUID": "25b15b74-8d67-4fd4-a14e-5221efd446a9",
"model": "runware:101@1",
"positivePrompt": "A poised young conductor standing alone in a grand 1930s tram depot during a hard evening rain, tailored cobalt uniform with brass buttons, weathered leather satchel, gloved hand holding a punched ticket roll, short dark hair damp from mist, calm determined expression, towering iron arches and hanging route signs in the background, polished stone floor covered with shimmering puddles and reflected station lamps, a stationary vintage tram with cream and maroon paint behind her, drifting steam, scattered newspapers, cinematic framing, full-body portrait, slightly low camera angle, exquisite fabric texture, realistic skin, crisp facial detail, moody amber and blue lighting, atmospheric depth, high detail, photoreal, elegant composition",
"width": 896,
"height": 1152,
"seed": 27587,
"steps": 32,
"CFGScale": 3.5
}{
"taskType": "imageInference",
"taskUUID": "25b15b74-8d67-4fd4-a14e-5221efd446a9",
"imageUUID": "52b6efff-634a-42ff-a44b-41e95d8ece27",
"imageURL": "https://im.runware.ai/image/os/a20d05/ws/2/ii/52b6efff-634a-42ff-a44b-41e95d8ece27.jpg",
"seed": 27587,
"cost": 0.0045
}Windmill Rooftop Botanical Atelier

Inside the upper chamber of a converted windmill, a botanical atelier filled with hanging herbs, glass propagation jars, hand-labeled seed drawers, pressed wildflowers, ceramic pots, copper watering cans, and a broad circular window looking over patchwork farmland and distant hills. A young craftswoman in a linen apron stands beside a workbench arranging rare orchids and fern cuttings, with soil smudges on her hands and a gentle cat curled on a stack of gardening journals. Weathered timber beams, white plaster walls, old gears partially preserved as decor, soft morning light streaming through dust motes, realistic textures, rich natural colors, highly detailed objects, elegant composition, immersive depth, crisp focus, fine fabric and wood grain detail, cinematic 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: 'runware:101@1',
positivePrompt: 'Inside the upper chamber of a converted windmill, a botanical atelier filled with hanging herbs, glass propagation jars, hand-labeled seed drawers, pressed wildflowers, ceramic pots, copper watering cans, and a broad circular window looking over patchwork farmland and distant hills. A young craftswoman in a linen apron stands beside a workbench arranging rare orchids and fern cuttings, with soil smudges on her hands and a gentle cat curled on a stack of gardening journals. Weathered timber beams, white plaster walls, old gears partially preserved as decor, soft morning light streaming through dust motes, realistic textures, rich natural colors, highly detailed objects, elegant composition, immersive depth, crisp focus, fine fabric and wood grain detail, cinematic realism.',
width: 1024,
height: 1536,
seed: 30792,
steps: 32,
scheduler: 'Euler',
CFGScale: 7.5
})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": "runware:101@1",
"positivePrompt": "Inside the upper chamber of a converted windmill, a botanical atelier filled with hanging herbs, glass propagation jars, hand-labeled seed drawers, pressed wildflowers, ceramic pots, copper watering cans, and a broad circular window looking over patchwork farmland and distant hills. A young craftswoman in a linen apron stands beside a workbench arranging rare orchids and fern cuttings, with soil smudges on her hands and a gentle cat curled on a stack of gardening journals. Weathered timber beams, white plaster walls, old gears partially preserved as decor, soft morning light streaming through dust motes, realistic textures, rich natural colors, highly detailed objects, elegant composition, immersive depth, crisp focus, fine fabric and wood grain detail, cinematic realism.",
"width": 1024,
"height": 1536,
"seed": 30792,
"steps": 32,
"scheduler": "Euler",
"CFGScale": 7.5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "6ebfb176-04a7-4c99-8e58-9461227cf144",
"model": "runware:101@1",
"positivePrompt": "Inside the upper chamber of a converted windmill, a botanical atelier filled with hanging herbs, glass propagation jars, hand-labeled seed drawers, pressed wildflowers, ceramic pots, copper watering cans, and a broad circular window looking over patchwork farmland and distant hills. A young craftswoman in a linen apron stands beside a workbench arranging rare orchids and fern cuttings, with soil smudges on her hands and a gentle cat curled on a stack of gardening journals. Weathered timber beams, white plaster walls, old gears partially preserved as decor, soft morning light streaming through dust motes, realistic textures, rich natural colors, highly detailed objects, elegant composition, immersive depth, crisp focus, fine fabric and wood grain detail, cinematic realism.",
"width": 1024,
"height": 1536,
"seed": 30792,
"steps": 32,
"scheduler": "Euler",
"CFGScale": 7.5
}
]'runware run runware:101@1 \
positivePrompt="Inside the upper chamber of a converted windmill, a botanical atelier filled with hanging herbs, glass propagation jars, hand-labeled seed drawers, pressed wildflowers, ceramic pots, copper watering cans, and a broad circular window looking over patchwork farmland and distant hills. A young craftswoman in a linen apron stands beside a workbench arranging rare orchids and fern cuttings, with soil smudges on her hands and a gentle cat curled on a stack of gardening journals. Weathered timber beams, white plaster walls, old gears partially preserved as decor, soft morning light streaming through dust motes, realistic textures, rich natural colors, highly detailed objects, elegant composition, immersive depth, crisp focus, fine fabric and wood grain detail, cinematic realism." \
width=1024 \
height=1536 \
seed=30792 \
steps=32 \
scheduler=Euler \
CFGScale=7.5{
"taskType": "imageInference",
"taskUUID": "6ebfb176-04a7-4c99-8e58-9461227cf144",
"model": "runware:101@1",
"positivePrompt": "Inside the upper chamber of a converted windmill, a botanical atelier filled with hanging herbs, glass propagation jars, hand-labeled seed drawers, pressed wildflowers, ceramic pots, copper watering cans, and a broad circular window looking over patchwork farmland and distant hills. A young craftswoman in a linen apron stands beside a workbench arranging rare orchids and fern cuttings, with soil smudges on her hands and a gentle cat curled on a stack of gardening journals. Weathered timber beams, white plaster walls, old gears partially preserved as decor, soft morning light streaming through dust motes, realistic textures, rich natural colors, highly detailed objects, elegant composition, immersive depth, crisp focus, fine fabric and wood grain detail, cinematic realism.",
"width": 1024,
"height": 1536,
"seed": 30792,
"steps": 32,
"scheduler": "Euler",
"CFGScale": 7.5
}{
"taskType": "imageInference",
"taskUUID": "6ebfb176-04a7-4c99-8e58-9461227cf144",
"imageUUID": "99034856-6dc7-448f-a236-154dba383408",
"imageURL": "https://im.runware.ai/image/os/a20d05/ws/2/ii/99034856-6dc7-448f-a236-154dba383408.jpg",
"seed": 30792,
"cost": 0.0058
}Bespoke Sign Painter Portrait

Create a finished 3:2 landscape personal-branding portrait by naturally expanding the supplied square photograph beyond both horizontal edges. Preserve the central woman’s recognizable face, age, silver curls, glasses, body, pose, tangerine coveralls, cobalt shirt, mahlstick, brush, and original photographic character. Show the complete width of her lively hand-painted sign workshop: a continuous pale aqua pegboard wall and long scarred timber workbench extending convincingly across the entire frame. On the expanded left side, include neatly arranged sable brushes, masking tape, a metal ruler, paint-splattered jars, and stacked blank wooden sign panels. On the expanded right side, include small tins of saturated enamel paint, a ceramic mixing palette, folded shop rags, clamps, and several geometric color-test panels without words or logos. Keep all perspective lines, daylight direction, shadows, wall texture, and workbench height seamless with the source image. Compose her centrally with generous environmental context on both sides, framed from the knees up, looking directly into the camera with calm confidence and a subtle half-smile. Bright editorial art direction with aqua, tangerine, cobalt, coral, and butter-yellow accents; optimistic, skilled, tactile, and contemporary rather than nostalgic. Soft window daylight from camera left, gentle fill, natural skin texture, crisp eyes, realistic hands, detailed fabric and paint marks, restrained depth of field, premium magazine portrait photography, 50mm lens appearance. No lettering, logos, captions, borders, or graphic overlays.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'Create a finished 3:2 landscape personal-branding portrait by naturally expanding the supplied square photograph beyond both horizontal edges. Preserve the central woman’s recognizable face, age, silver curls, glasses, body, pose, tangerine coveralls, cobalt shirt, mahlstick, brush, and original photographic character. Show the complete width of her lively hand-painted sign workshop: a continuous pale aqua pegboard wall and long scarred timber workbench extending convincingly across the entire frame. On the expanded left side, include neatly arranged sable brushes, masking tape, a metal ruler, paint-splattered jars, and stacked blank wooden sign panels. On the expanded right side, include small tins of saturated enamel paint, a ceramic mixing palette, folded shop rags, clamps, and several geometric color-test panels without words or logos. Keep all perspective lines, daylight direction, shadows, wall texture, and workbench height seamless with the source image. Compose her centrally with generous environmental context on both sides, framed from the knees up, looking directly into the camera with calm confidence and a subtle half-smile. Bright editorial art direction with aqua, tangerine, cobalt, coral, and butter-yellow accents; optimistic, skilled, tactile, and contemporary rather than nostalgic. Soft window daylight from camera left, gentle fill, natural skin texture, crisp eyes, realistic hands, detailed fabric and paint marks, restrained depth of field, premium magazine portrait photography, 50mm lens appearance. No lettering, logos, captions, borders, or graphic overlays.',
width: 1536,
height: 1024,
outpaint: {
left: 256,
right: 256,
blur: 16
},
inputs: {
seedImage: 'https://assets.runware.ai/assets/inputs/c80297bb-1be5-4886-ace3-0175d0ab58fc.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": "runware:101@1",
"positivePrompt": "Create a finished 3:2 landscape personal-branding portrait by naturally expanding the supplied square photograph beyond both horizontal edges. Preserve the central woman’s recognizable face, age, silver curls, glasses, body, pose, tangerine coveralls, cobalt shirt, mahlstick, brush, and original photographic character. Show the complete width of her lively hand-painted sign workshop: a continuous pale aqua pegboard wall and long scarred timber workbench extending convincingly across the entire frame. On the expanded left side, include neatly arranged sable brushes, masking tape, a metal ruler, paint-splattered jars, and stacked blank wooden sign panels. On the expanded right side, include small tins of saturated enamel paint, a ceramic mixing palette, folded shop rags, clamps, and several geometric color-test panels without words or logos. Keep all perspective lines, daylight direction, shadows, wall texture, and workbench height seamless with the source image. Compose her centrally with generous environmental context on both sides, framed from the knees up, looking directly into the camera with calm confidence and a subtle half-smile. Bright editorial art direction with aqua, tangerine, cobalt, coral, and butter-yellow accents; optimistic, skilled, tactile, and contemporary rather than nostalgic. Soft window daylight from camera left, gentle fill, natural skin texture, crisp eyes, realistic hands, detailed fabric and paint marks, restrained depth of field, premium magazine portrait photography, 50mm lens appearance. No lettering, logos, captions, borders, or graphic overlays.",
"width": 1536,
"height": 1024,
"outpaint": {
"left": 256,
"right": 256,
"blur": 16
},
"inputs": {
"seedImage": "https://assets.runware.ai/assets/inputs/c80297bb-1be5-4886-ace3-0175d0ab58fc.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": "884341c4-b6df-4406-b801-b88a26b160ab",
"model": "runware:101@1",
"positivePrompt": "Create a finished 3:2 landscape personal-branding portrait by naturally expanding the supplied square photograph beyond both horizontal edges. Preserve the central woman’s recognizable face, age, silver curls, glasses, body, pose, tangerine coveralls, cobalt shirt, mahlstick, brush, and original photographic character. Show the complete width of her lively hand-painted sign workshop: a continuous pale aqua pegboard wall and long scarred timber workbench extending convincingly across the entire frame. On the expanded left side, include neatly arranged sable brushes, masking tape, a metal ruler, paint-splattered jars, and stacked blank wooden sign panels. On the expanded right side, include small tins of saturated enamel paint, a ceramic mixing palette, folded shop rags, clamps, and several geometric color-test panels without words or logos. Keep all perspective lines, daylight direction, shadows, wall texture, and workbench height seamless with the source image. Compose her centrally with generous environmental context on both sides, framed from the knees up, looking directly into the camera with calm confidence and a subtle half-smile. Bright editorial art direction with aqua, tangerine, cobalt, coral, and butter-yellow accents; optimistic, skilled, tactile, and contemporary rather than nostalgic. Soft window daylight from camera left, gentle fill, natural skin texture, crisp eyes, realistic hands, detailed fabric and paint marks, restrained depth of field, premium magazine portrait photography, 50mm lens appearance. No lettering, logos, captions, borders, or graphic overlays.",
"width": 1536,
"height": 1024,
"outpaint": {
"left": 256,
"right": 256,
"blur": 16
},
"inputs": {
"seedImage": "https://assets.runware.ai/assets/inputs/c80297bb-1be5-4886-ace3-0175d0ab58fc.jpg"
}
}
]'runware run runware:101@1 \
positivePrompt="Create a finished 3:2 landscape personal-branding portrait by naturally expanding the supplied square photograph beyond both horizontal edges. Preserve the central woman’s recognizable face, age, silver curls, glasses, body, pose, tangerine coveralls, cobalt shirt, mahlstick, brush, and original photographic character. Show the complete width of her lively hand-painted sign workshop: a continuous pale aqua pegboard wall and long scarred timber workbench extending convincingly across the entire frame. On the expanded left side, include neatly arranged sable brushes, masking tape, a metal ruler, paint-splattered jars, and stacked blank wooden sign panels. On the expanded right side, include small tins of saturated enamel paint, a ceramic mixing palette, folded shop rags, clamps, and several geometric color-test panels without words or logos. Keep all perspective lines, daylight direction, shadows, wall texture, and workbench height seamless with the source image. Compose her centrally with generous environmental context on both sides, framed from the knees up, looking directly into the camera with calm confidence and a subtle half-smile. Bright editorial art direction with aqua, tangerine, cobalt, coral, and butter-yellow accents; optimistic, skilled, tactile, and contemporary rather than nostalgic. Soft window daylight from camera left, gentle fill, natural skin texture, crisp eyes, realistic hands, detailed fabric and paint marks, restrained depth of field, premium magazine portrait photography, 50mm lens appearance. No lettering, logos, captions, borders, or graphic overlays." \
width=1536 \
height=1024 \
outpaint.left=256 \
outpaint.right=256 \
outpaint.blur=16 \
inputs.seedImage=https://assets.runware.ai/assets/inputs/c80297bb-1be5-4886-ace3-0175d0ab58fc.jpg{
"taskType": "imageInference",
"taskUUID": "884341c4-b6df-4406-b801-b88a26b160ab",
"model": "runware:101@1",
"positivePrompt": "Create a finished 3:2 landscape personal-branding portrait by naturally expanding the supplied square photograph beyond both horizontal edges. Preserve the central woman’s recognizable face, age, silver curls, glasses, body, pose, tangerine coveralls, cobalt shirt, mahlstick, brush, and original photographic character. Show the complete width of her lively hand-painted sign workshop: a continuous pale aqua pegboard wall and long scarred timber workbench extending convincingly across the entire frame. On the expanded left side, include neatly arranged sable brushes, masking tape, a metal ruler, paint-splattered jars, and stacked blank wooden sign panels. On the expanded right side, include small tins of saturated enamel paint, a ceramic mixing palette, folded shop rags, clamps, and several geometric color-test panels without words or logos. Keep all perspective lines, daylight direction, shadows, wall texture, and workbench height seamless with the source image. Compose her centrally with generous environmental context on both sides, framed from the knees up, looking directly into the camera with calm confidence and a subtle half-smile. Bright editorial art direction with aqua, tangerine, cobalt, coral, and butter-yellow accents; optimistic, skilled, tactile, and contemporary rather than nostalgic. Soft window daylight from camera left, gentle fill, natural skin texture, crisp eyes, realistic hands, detailed fabric and paint marks, restrained depth of field, premium magazine portrait photography, 50mm lens appearance. No lettering, logos, captions, borders, or graphic overlays.",
"width": 1536,
"height": 1024,
"outpaint": {
"left": 256,
"right": 256,
"blur": 16
},
"inputs": {
"seedImage": "https://assets.runware.ai/assets/inputs/c80297bb-1be5-4886-ace3-0175d0ab58fc.jpg"
}
}{
"taskType": "imageInference",
"taskUUID": "884341c4-b6df-4406-b801-b88a26b160ab",
"imageUUID": "9f9f0144-0e24-47c6-8b80-b915830f2cf0",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/9f9f0144-0e24-47c6-8b80-b915830f2cf0.jpg",
"seed": 1072349095,
"cost": 0.0032
}Stormglass Conservatory Violinist

A solitary violinist standing inside a vast stormglass conservatory made of curved translucent panels and brass ribs, rain streaks and trapped clouds swirling above the ceiling, hundreds of suspended glass prisms catching cold morning light, trailing ferns and white climbing orchids weaving around the architecture, polished basalt floor reflecting the figure, elegant charcoal tailored coat with subtle embroidered constellations, windswept silver hair, intense focused expression, violin raised mid-performance, fine rosin dust in the air, distant mountain skyline blurred beyond the glass, cinematic composition, highly detailed textures, realistic fabric, delicate skin detail, volumetric light shafts, dramatic atmosphere, refined color harmony of slate blue, pale gold, and soft ivory, premium editorial fantasy photography look, ultra detailed, sharp focal subject
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'A solitary violinist standing inside a vast stormglass conservatory made of curved translucent panels and brass ribs, rain streaks and trapped clouds swirling above the ceiling, hundreds of suspended glass prisms catching cold morning light, trailing ferns and white climbing orchids weaving around the architecture, polished basalt floor reflecting the figure, elegant charcoal tailored coat with subtle embroidered constellations, windswept silver hair, intense focused expression, violin raised mid-performance, fine rosin dust in the air, distant mountain skyline blurred beyond the glass, cinematic composition, highly detailed textures, realistic fabric, delicate skin detail, volumetric light shafts, dramatic atmosphere, refined color harmony of slate blue, pale gold, and soft ivory, premium editorial fantasy photography look, ultra detailed, sharp focal subject',
width: 1024,
height: 1536,
seed: 86122,
steps: 32,
CFGScale: 3.5
})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": "runware:101@1",
"positivePrompt": "A solitary violinist standing inside a vast stormglass conservatory made of curved translucent panels and brass ribs, rain streaks and trapped clouds swirling above the ceiling, hundreds of suspended glass prisms catching cold morning light, trailing ferns and white climbing orchids weaving around the architecture, polished basalt floor reflecting the figure, elegant charcoal tailored coat with subtle embroidered constellations, windswept silver hair, intense focused expression, violin raised mid-performance, fine rosin dust in the air, distant mountain skyline blurred beyond the glass, cinematic composition, highly detailed textures, realistic fabric, delicate skin detail, volumetric light shafts, dramatic atmosphere, refined color harmony of slate blue, pale gold, and soft ivory, premium editorial fantasy photography look, ultra detailed, sharp focal subject",
"width": 1024,
"height": 1536,
"seed": 86122,
"steps": 32,
"CFGScale": 3.5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "32ee6d24-0ce2-4eb6-9684-18bbb6a349e1",
"model": "runware:101@1",
"positivePrompt": "A solitary violinist standing inside a vast stormglass conservatory made of curved translucent panels and brass ribs, rain streaks and trapped clouds swirling above the ceiling, hundreds of suspended glass prisms catching cold morning light, trailing ferns and white climbing orchids weaving around the architecture, polished basalt floor reflecting the figure, elegant charcoal tailored coat with subtle embroidered constellations, windswept silver hair, intense focused expression, violin raised mid-performance, fine rosin dust in the air, distant mountain skyline blurred beyond the glass, cinematic composition, highly detailed textures, realistic fabric, delicate skin detail, volumetric light shafts, dramatic atmosphere, refined color harmony of slate blue, pale gold, and soft ivory, premium editorial fantasy photography look, ultra detailed, sharp focal subject",
"width": 1024,
"height": 1536,
"seed": 86122,
"steps": 32,
"CFGScale": 3.5
}
]'runware run runware:101@1 \
positivePrompt="A solitary violinist standing inside a vast stormglass conservatory made of curved translucent panels and brass ribs, rain streaks and trapped clouds swirling above the ceiling, hundreds of suspended glass prisms catching cold morning light, trailing ferns and white climbing orchids weaving around the architecture, polished basalt floor reflecting the figure, elegant charcoal tailored coat with subtle embroidered constellations, windswept silver hair, intense focused expression, violin raised mid-performance, fine rosin dust in the air, distant mountain skyline blurred beyond the glass, cinematic composition, highly detailed textures, realistic fabric, delicate skin detail, volumetric light shafts, dramatic atmosphere, refined color harmony of slate blue, pale gold, and soft ivory, premium editorial fantasy photography look, ultra detailed, sharp focal subject" \
width=1024 \
height=1536 \
seed=86122 \
steps=32 \
CFGScale=3.5{
"taskType": "imageInference",
"taskUUID": "32ee6d24-0ce2-4eb6-9684-18bbb6a349e1",
"model": "runware:101@1",
"positivePrompt": "A solitary violinist standing inside a vast stormglass conservatory made of curved translucent panels and brass ribs, rain streaks and trapped clouds swirling above the ceiling, hundreds of suspended glass prisms catching cold morning light, trailing ferns and white climbing orchids weaving around the architecture, polished basalt floor reflecting the figure, elegant charcoal tailored coat with subtle embroidered constellations, windswept silver hair, intense focused expression, violin raised mid-performance, fine rosin dust in the air, distant mountain skyline blurred beyond the glass, cinematic composition, highly detailed textures, realistic fabric, delicate skin detail, volumetric light shafts, dramatic atmosphere, refined color harmony of slate blue, pale gold, and soft ivory, premium editorial fantasy photography look, ultra detailed, sharp focal subject",
"width": 1024,
"height": 1536,
"seed": 86122,
"steps": 32,
"CFGScale": 3.5
}{
"taskType": "imageInference",
"taskUUID": "32ee6d24-0ce2-4eb6-9684-18bbb6a349e1",
"imageUUID": "efa71d23-86c8-41c9-b4d0-105c15d0c152",
"imageURL": "https://im.runware.ai/image/os/a15d18/ws/2/ii/efa71d23-86c8-41c9-b4d0-105c15d0c152.jpg",
"seed": 86122,
"cost": 0.0058
}Amber Archive Reading Hall

A vast vaulted reading hall carved into a petrified giant tree, concentric wooden balconies lined with ancient books, suspended paper lanterns glowing amber, dust motes in sunbeams from high circular clerestory windows, a lone archivist in layered linen and leather sorting illuminated manuscripts at a long curved desk, rolling ladders, brass catalog drawers, intricate carved railings, scattered maps, wax seals, ink bottles, quiet scholarly atmosphere, fantasy realism, ultra-detailed textures, natural skin tones, believable materials, cinematic composition, deep perspective, crisp focus, high fidelity
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'A vast vaulted reading hall carved into a petrified giant tree, concentric wooden balconies lined with ancient books, suspended paper lanterns glowing amber, dust motes in sunbeams from high circular clerestory windows, a lone archivist in layered linen and leather sorting illuminated manuscripts at a long curved desk, rolling ladders, brass catalog drawers, intricate carved railings, scattered maps, wax seals, ink bottles, quiet scholarly atmosphere, fantasy realism, ultra-detailed textures, natural skin tones, believable materials, cinematic composition, deep perspective, crisp focus, high fidelity',
width: 1344,
height: 768,
seed: 56175,
steps: 32,
CFGScale: 7.5
})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": "runware:101@1",
"positivePrompt": "A vast vaulted reading hall carved into a petrified giant tree, concentric wooden balconies lined with ancient books, suspended paper lanterns glowing amber, dust motes in sunbeams from high circular clerestory windows, a lone archivist in layered linen and leather sorting illuminated manuscripts at a long curved desk, rolling ladders, brass catalog drawers, intricate carved railings, scattered maps, wax seals, ink bottles, quiet scholarly atmosphere, fantasy realism, ultra-detailed textures, natural skin tones, believable materials, cinematic composition, deep perspective, crisp focus, high fidelity",
"width": 1344,
"height": 768,
"seed": 56175,
"steps": 32,
"CFGScale": 7.5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "df1ad432-c6d8-4366-9c4b-48acde0edaf8",
"model": "runware:101@1",
"positivePrompt": "A vast vaulted reading hall carved into a petrified giant tree, concentric wooden balconies lined with ancient books, suspended paper lanterns glowing amber, dust motes in sunbeams from high circular clerestory windows, a lone archivist in layered linen and leather sorting illuminated manuscripts at a long curved desk, rolling ladders, brass catalog drawers, intricate carved railings, scattered maps, wax seals, ink bottles, quiet scholarly atmosphere, fantasy realism, ultra-detailed textures, natural skin tones, believable materials, cinematic composition, deep perspective, crisp focus, high fidelity",
"width": 1344,
"height": 768,
"seed": 56175,
"steps": 32,
"CFGScale": 7.5
}
]'runware run runware:101@1 \
positivePrompt="A vast vaulted reading hall carved into a petrified giant tree, concentric wooden balconies lined with ancient books, suspended paper lanterns glowing amber, dust motes in sunbeams from high circular clerestory windows, a lone archivist in layered linen and leather sorting illuminated manuscripts at a long curved desk, rolling ladders, brass catalog drawers, intricate carved railings, scattered maps, wax seals, ink bottles, quiet scholarly atmosphere, fantasy realism, ultra-detailed textures, natural skin tones, believable materials, cinematic composition, deep perspective, crisp focus, high fidelity" \
width=1344 \
height=768 \
seed=56175 \
steps=32 \
CFGScale=7.5{
"taskType": "imageInference",
"taskUUID": "df1ad432-c6d8-4366-9c4b-48acde0edaf8",
"model": "runware:101@1",
"positivePrompt": "A vast vaulted reading hall carved into a petrified giant tree, concentric wooden balconies lined with ancient books, suspended paper lanterns glowing amber, dust motes in sunbeams from high circular clerestory windows, a lone archivist in layered linen and leather sorting illuminated manuscripts at a long curved desk, rolling ladders, brass catalog drawers, intricate carved railings, scattered maps, wax seals, ink bottles, quiet scholarly atmosphere, fantasy realism, ultra-detailed textures, natural skin tones, believable materials, cinematic composition, deep perspective, crisp focus, high fidelity",
"width": 1344,
"height": 768,
"seed": 56175,
"steps": 32,
"CFGScale": 7.5
}{
"taskType": "imageInference",
"taskUUID": "df1ad432-c6d8-4366-9c4b-48acde0edaf8",
"imageUUID": "8bb8afb6-f893-4754-8df8-1a86aa6fe397",
"imageURL": "https://im.runware.ai/image/os/a08d21/ws/2/ii/8bb8afb6-f893-4754-8df8-1a86aa6fe397.jpg",
"seed": 56175,
"cost": 0.0051
}Reef Acoustic Recorder Product Cutout

One autonomous underwater reef acoustic recorder, isolated as a single integrated product on a fully transparent background. Compact cylindrical pressure housing in safety-orange anodized aluminum, a deep teal watertight end cap, black hydrophone stem, protective open-frame titanium mounting cage, two rugged locking clasps and a small recessed status light without lettering. Plausible professional marine research equipment with precise seals, fasteners, cable routing and lightly worn saltwater-resistant surfaces. Three-quarter front view from slightly above, entire device visible, centered square composition, generous clear space around every edge. Premium commercial product photography, crisp dimensional detail, controlled softbox highlights on metal, subtle realistic reflections, sharp clean silhouette and accurate proportions. No branding, logos or readable text. True transparent alpha background, no scenery, no ocean, no seabed, no plants, no wildlife, no platform, no frame, no opaque backdrop and no cast shadow.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'runware:101@1',
positivePrompt: 'One autonomous underwater reef acoustic recorder, isolated as a single integrated product on a fully transparent background. Compact cylindrical pressure housing in safety-orange anodized aluminum, a deep teal watertight end cap, black hydrophone stem, protective open-frame titanium mounting cage, two rugged locking clasps and a small recessed status light without lettering. Plausible professional marine research equipment with precise seals, fasteners, cable routing and lightly worn saltwater-resistant surfaces. Three-quarter front view from slightly above, entire device visible, centered square composition, generous clear space around every edge. Premium commercial product photography, crisp dimensional detail, controlled softbox highlights on metal, subtle realistic reflections, sharp clean silhouette and accurate proportions. No branding, logos or readable text. True transparent alpha background, no scenery, no ocean, no seabed, no plants, no wildlife, no platform, no frame, no opaque backdrop and no cast shadow.',
negativePrompt: 'multiple products, separate accessories, packaging, display stand, floor, tabletop, water, bubbles, coral, rocks, sand, boat, laboratory, people, hands, labels, typography, logo, watermark, border, backdrop, gradient background, cast shadow, cropped object, floating fragments, distorted hardware, duplicate components, blurry details',
width: 1024,
height: 1024,
layerDiffuse: true
})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": "runware:101@1",
"positivePrompt": "One autonomous underwater reef acoustic recorder, isolated as a single integrated product on a fully transparent background. Compact cylindrical pressure housing in safety-orange anodized aluminum, a deep teal watertight end cap, black hydrophone stem, protective open-frame titanium mounting cage, two rugged locking clasps and a small recessed status light without lettering. Plausible professional marine research equipment with precise seals, fasteners, cable routing and lightly worn saltwater-resistant surfaces. Three-quarter front view from slightly above, entire device visible, centered square composition, generous clear space around every edge. Premium commercial product photography, crisp dimensional detail, controlled softbox highlights on metal, subtle realistic reflections, sharp clean silhouette and accurate proportions. No branding, logos or readable text. True transparent alpha background, no scenery, no ocean, no seabed, no plants, no wildlife, no platform, no frame, no opaque backdrop and no cast shadow.",
"negativePrompt": "multiple products, separate accessories, packaging, display stand, floor, tabletop, water, bubbles, coral, rocks, sand, boat, laboratory, people, hands, labels, typography, logo, watermark, border, backdrop, gradient background, cast shadow, cropped object, floating fragments, distorted hardware, duplicate components, blurry details",
"width": 1024,
"height": 1024,
"layerDiffuse": True
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "684be2a1-14dc-420d-b7d5-e383c0b53775",
"model": "runware:101@1",
"positivePrompt": "One autonomous underwater reef acoustic recorder, isolated as a single integrated product on a fully transparent background. Compact cylindrical pressure housing in safety-orange anodized aluminum, a deep teal watertight end cap, black hydrophone stem, protective open-frame titanium mounting cage, two rugged locking clasps and a small recessed status light without lettering. Plausible professional marine research equipment with precise seals, fasteners, cable routing and lightly worn saltwater-resistant surfaces. Three-quarter front view from slightly above, entire device visible, centered square composition, generous clear space around every edge. Premium commercial product photography, crisp dimensional detail, controlled softbox highlights on metal, subtle realistic reflections, sharp clean silhouette and accurate proportions. No branding, logos or readable text. True transparent alpha background, no scenery, no ocean, no seabed, no plants, no wildlife, no platform, no frame, no opaque backdrop and no cast shadow.",
"negativePrompt": "multiple products, separate accessories, packaging, display stand, floor, tabletop, water, bubbles, coral, rocks, sand, boat, laboratory, people, hands, labels, typography, logo, watermark, border, backdrop, gradient background, cast shadow, cropped object, floating fragments, distorted hardware, duplicate components, blurry details",
"width": 1024,
"height": 1024,
"layerDiffuse": true
}
]'runware run runware:101@1 \
positivePrompt="One autonomous underwater reef acoustic recorder, isolated as a single integrated product on a fully transparent background. Compact cylindrical pressure housing in safety-orange anodized aluminum, a deep teal watertight end cap, black hydrophone stem, protective open-frame titanium mounting cage, two rugged locking clasps and a small recessed status light without lettering. Plausible professional marine research equipment with precise seals, fasteners, cable routing and lightly worn saltwater-resistant surfaces. Three-quarter front view from slightly above, entire device visible, centered square composition, generous clear space around every edge. Premium commercial product photography, crisp dimensional detail, controlled softbox highlights on metal, subtle realistic reflections, sharp clean silhouette and accurate proportions. No branding, logos or readable text. True transparent alpha background, no scenery, no ocean, no seabed, no plants, no wildlife, no platform, no frame, no opaque backdrop and no cast shadow." \
negativePrompt="multiple products, separate accessories, packaging, display stand, floor, tabletop, water, bubbles, coral, rocks, sand, boat, laboratory, people, hands, labels, typography, logo, watermark, border, backdrop, gradient background, cast shadow, cropped object, floating fragments, distorted hardware, duplicate components, blurry details" \
width=1024 \
height=1024 \
layerDiffuse=true{
"taskType": "imageInference",
"taskUUID": "684be2a1-14dc-420d-b7d5-e383c0b53775",
"model": "runware:101@1",
"positivePrompt": "One autonomous underwater reef acoustic recorder, isolated as a single integrated product on a fully transparent background. Compact cylindrical pressure housing in safety-orange anodized aluminum, a deep teal watertight end cap, black hydrophone stem, protective open-frame titanium mounting cage, two rugged locking clasps and a small recessed status light without lettering. Plausible professional marine research equipment with precise seals, fasteners, cable routing and lightly worn saltwater-resistant surfaces. Three-quarter front view from slightly above, entire device visible, centered square composition, generous clear space around every edge. Premium commercial product photography, crisp dimensional detail, controlled softbox highlights on metal, subtle realistic reflections, sharp clean silhouette and accurate proportions. No branding, logos or readable text. True transparent alpha background, no scenery, no ocean, no seabed, no plants, no wildlife, no platform, no frame, no opaque backdrop and no cast shadow.",
"negativePrompt": "multiple products, separate accessories, packaging, display stand, floor, tabletop, water, bubbles, coral, rocks, sand, boat, laboratory, people, hands, labels, typography, logo, watermark, border, backdrop, gradient background, cast shadow, cropped object, floating fragments, distorted hardware, duplicate components, blurry details",
"width": 1024,
"height": 1024,
"layerDiffuse": true
}{
"taskType": "imageInference",
"taskUUID": "684be2a1-14dc-420d-b7d5-e383c0b53775",
"imageUUID": "00094637-1233-4c57-8820-a9007a29bac5",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/00094637-1233-4c57-8820-a9007a29bac5.jpg",
"seed": 1799981796,
"cost": 0.0045
}Technical Apiary Workwear Lookbook

Create a premium full-page fashion lookbook photograph for a contemporary technical beekeeping apparel collection. Use the exact identity and recognizable facial features of the supplied reference portrait. Show the same 52-year-old South Asian woman in a substantially different wardrobe, setting, and composition: a confident full-body three-quarter fashion pose outdoors in a productive spring orchard apiary, facing the camera with her body angled slightly left, one hand resting on a clean painted hive box and the other relaxed at her side. Her face is fully visible and unobstructed. Wardrobe: an impeccably designed saffron-yellow ripstop beekeeper oversuit with a precise relaxed silhouette, articulated knees, reinforced ivory canvas elbow panels, diagonal waterproof chest pocket, matte white two-way zippers, elasticated cuffs, and a narrow cobalt utility belt. The circular ivory mesh veil and structured hood are folded neatly behind her shoulders rather than covering her head. Add cobalt-blue gauntlet gloves, off-white rubber field boots, and no jewelry. Make every seam, fastener, pocket, mesh panel, and fabric texture credible and catalog-ready; the clothing is the hero. Setting: orderly rows of low fruit trees in pale blossom, several geometric wooden hive boxes painted chalky ivory, cobalt, and muted coral, short fresh grass, no other people. Art direction is clean, optimistic, and graphically color-blocked rather than rustic. Crisp late-morning sunlight softened by light cloud, gentle directional shadows, bright but controlled palette, realistic editorial color grading. Shot vertically at eye level with a medium-format fashion-camera aesthetic and a normal lens; include her entire figure and boots, generous breathing room above, restrained depth of field with the nearest hives legible and distant orchard softly receding. Natural skin texture, accurate anatomy and hands, poised mature presence. One finished standalone image, not a collage, contact sheet, magazine mockup, or page layout. No lettering, logos, labels, borders, 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: 'runware:101@1',
positivePrompt: 'Create a premium full-page fashion lookbook photograph for a contemporary technical beekeeping apparel collection. Use the exact identity and recognizable facial features of the supplied reference portrait. Show the same 52-year-old South Asian woman in a substantially different wardrobe, setting, and composition: a confident full-body three-quarter fashion pose outdoors in a productive spring orchard apiary, facing the camera with her body angled slightly left, one hand resting on a clean painted hive box and the other relaxed at her side. Her face is fully visible and unobstructed.\n\nWardrobe: an impeccably designed saffron-yellow ripstop beekeeper oversuit with a precise relaxed silhouette, articulated knees, reinforced ivory canvas elbow panels, diagonal waterproof chest pocket, matte white two-way zippers, elasticated cuffs, and a narrow cobalt utility belt. The circular ivory mesh veil and structured hood are folded neatly behind her shoulders rather than covering her head. Add cobalt-blue gauntlet gloves, off-white rubber field boots, and no jewelry. Make every seam, fastener, pocket, mesh panel, and fabric texture credible and catalog-ready; the clothing is the hero.\n\nSetting: orderly rows of low fruit trees in pale blossom, several geometric wooden hive boxes painted chalky ivory, cobalt, and muted coral, short fresh grass, no other people. Art direction is clean, optimistic, and graphically color-blocked rather than rustic. Crisp late-morning sunlight softened by light cloud, gentle directional shadows, bright but controlled palette, realistic editorial color grading. Shot vertically at eye level with a medium-format fashion-camera aesthetic and a normal lens; include her entire figure and boots, generous breathing room above, restrained depth of field with the nearest hives legible and distant orchard softly receding. Natural skin texture, accurate anatomy and hands, poised mature presence. One finished standalone image, not a collage, contact sheet, magazine mockup, or page layout. No lettering, logos, labels, borders, or watermark.',
negativePrompt: 'face-obscuring veil, hood over face, sunglasses, hat, extra people, duplicate person, cropped feet, cropped head, distorted hands, extra fingers, malformed limbs, plastic skin, exaggerated glamour makeup, costume fantasy, rustic sepia styling, smoke clouds, swarming insects, text, logo, watermark, collage, split screen, catalog layout, product grid',
width: 768,
height: 1152,
pulid: {
images: [
'https://assets.runware.ai/assets/inputs/abd7bf31-9547-44f9-a0f9-7b31bbc119da.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": "runware:101@1",
"positivePrompt": "Create a premium full-page fashion lookbook photograph for a contemporary technical beekeeping apparel collection. Use the exact identity and recognizable facial features of the supplied reference portrait. Show the same 52-year-old South Asian woman in a substantially different wardrobe, setting, and composition: a confident full-body three-quarter fashion pose outdoors in a productive spring orchard apiary, facing the camera with her body angled slightly left, one hand resting on a clean painted hive box and the other relaxed at her side. Her face is fully visible and unobstructed.\n\nWardrobe: an impeccably designed saffron-yellow ripstop beekeeper oversuit with a precise relaxed silhouette, articulated knees, reinforced ivory canvas elbow panels, diagonal waterproof chest pocket, matte white two-way zippers, elasticated cuffs, and a narrow cobalt utility belt. The circular ivory mesh veil and structured hood are folded neatly behind her shoulders rather than covering her head. Add cobalt-blue gauntlet gloves, off-white rubber field boots, and no jewelry. Make every seam, fastener, pocket, mesh panel, and fabric texture credible and catalog-ready; the clothing is the hero.\n\nSetting: orderly rows of low fruit trees in pale blossom, several geometric wooden hive boxes painted chalky ivory, cobalt, and muted coral, short fresh grass, no other people. Art direction is clean, optimistic, and graphically color-blocked rather than rustic. Crisp late-morning sunlight softened by light cloud, gentle directional shadows, bright but controlled palette, realistic editorial color grading. Shot vertically at eye level with a medium-format fashion-camera aesthetic and a normal lens; include her entire figure and boots, generous breathing room above, restrained depth of field with the nearest hives legible and distant orchard softly receding. Natural skin texture, accurate anatomy and hands, poised mature presence. One finished standalone image, not a collage, contact sheet, magazine mockup, or page layout. No lettering, logos, labels, borders, or watermark.",
"negativePrompt": "face-obscuring veil, hood over face, sunglasses, hat, extra people, duplicate person, cropped feet, cropped head, distorted hands, extra fingers, malformed limbs, plastic skin, exaggerated glamour makeup, costume fantasy, rustic sepia styling, smoke clouds, swarming insects, text, logo, watermark, collage, split screen, catalog layout, product grid",
"width": 768,
"height": 1152,
"pulid": {
"images": [
"https://assets.runware.ai/assets/inputs/abd7bf31-9547-44f9-a0f9-7b31bbc119da.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": "03d4e1d5-630d-43f1-9cbc-ba924ab340ae",
"model": "runware:101@1",
"positivePrompt": "Create a premium full-page fashion lookbook photograph for a contemporary technical beekeeping apparel collection. Use the exact identity and recognizable facial features of the supplied reference portrait. Show the same 52-year-old South Asian woman in a substantially different wardrobe, setting, and composition: a confident full-body three-quarter fashion pose outdoors in a productive spring orchard apiary, facing the camera with her body angled slightly left, one hand resting on a clean painted hive box and the other relaxed at her side. Her face is fully visible and unobstructed.\n\nWardrobe: an impeccably designed saffron-yellow ripstop beekeeper oversuit with a precise relaxed silhouette, articulated knees, reinforced ivory canvas elbow panels, diagonal waterproof chest pocket, matte white two-way zippers, elasticated cuffs, and a narrow cobalt utility belt. The circular ivory mesh veil and structured hood are folded neatly behind her shoulders rather than covering her head. Add cobalt-blue gauntlet gloves, off-white rubber field boots, and no jewelry. Make every seam, fastener, pocket, mesh panel, and fabric texture credible and catalog-ready; the clothing is the hero.\n\nSetting: orderly rows of low fruit trees in pale blossom, several geometric wooden hive boxes painted chalky ivory, cobalt, and muted coral, short fresh grass, no other people. Art direction is clean, optimistic, and graphically color-blocked rather than rustic. Crisp late-morning sunlight softened by light cloud, gentle directional shadows, bright but controlled palette, realistic editorial color grading. Shot vertically at eye level with a medium-format fashion-camera aesthetic and a normal lens; include her entire figure and boots, generous breathing room above, restrained depth of field with the nearest hives legible and distant orchard softly receding. Natural skin texture, accurate anatomy and hands, poised mature presence. One finished standalone image, not a collage, contact sheet, magazine mockup, or page layout. No lettering, logos, labels, borders, or watermark.",
"negativePrompt": "face-obscuring veil, hood over face, sunglasses, hat, extra people, duplicate person, cropped feet, cropped head, distorted hands, extra fingers, malformed limbs, plastic skin, exaggerated glamour makeup, costume fantasy, rustic sepia styling, smoke clouds, swarming insects, text, logo, watermark, collage, split screen, catalog layout, product grid",
"width": 768,
"height": 1152,
"pulid": {
"images": [
"https://assets.runware.ai/assets/inputs/abd7bf31-9547-44f9-a0f9-7b31bbc119da.jpg"
]
}
}
]'runware run runware:101@1 \
positivePrompt="Create a premium full-page fashion lookbook photograph for a contemporary technical beekeeping apparel collection. Use the exact identity and recognizable facial features of the supplied reference portrait. Show the same 52-year-old South Asian woman in a substantially different wardrobe, setting, and composition: a confident full-body three-quarter fashion pose outdoors in a productive spring orchard apiary, facing the camera with her body angled slightly left, one hand resting on a clean painted hive box and the other relaxed at her side. Her face is fully visible and unobstructed.
Wardrobe: an impeccably designed saffron-yellow ripstop beekeeper oversuit with a precise relaxed silhouette, articulated knees, reinforced ivory canvas elbow panels, diagonal waterproof chest pocket, matte white two-way zippers, elasticated cuffs, and a narrow cobalt utility belt. The circular ivory mesh veil and structured hood are folded neatly behind her shoulders rather than covering her head. Add cobalt-blue gauntlet gloves, off-white rubber field boots, and no jewelry. Make every seam, fastener, pocket, mesh panel, and fabric texture credible and catalog-ready; the clothing is the hero.
Setting: orderly rows of low fruit trees in pale blossom, several geometric wooden hive boxes painted chalky ivory, cobalt, and muted coral, short fresh grass, no other people. Art direction is clean, optimistic, and graphically color-blocked rather than rustic. Crisp late-morning sunlight softened by light cloud, gentle directional shadows, bright but controlled palette, realistic editorial color grading. Shot vertically at eye level with a medium-format fashion-camera aesthetic and a normal lens; include her entire figure and boots, generous breathing room above, restrained depth of field with the nearest hives legible and distant orchard softly receding. Natural skin texture, accurate anatomy and hands, poised mature presence. One finished standalone image, not a collage, contact sheet, magazine mockup, or page layout. No lettering, logos, labels, borders, or watermark." \
negativePrompt="face-obscuring veil, hood over face, sunglasses, hat, extra people, duplicate person, cropped feet, cropped head, distorted hands, extra fingers, malformed limbs, plastic skin, exaggerated glamour makeup, costume fantasy, rustic sepia styling, smoke clouds, swarming insects, text, logo, watermark, collage, split screen, catalog layout, product grid" \
width=768 \
height=1152 \
pulid.images.0=https://assets.runware.ai/assets/inputs/abd7bf31-9547-44f9-a0f9-7b31bbc119da.jpg{
"taskType": "imageInference",
"taskUUID": "03d4e1d5-630d-43f1-9cbc-ba924ab340ae",
"model": "runware:101@1",
"positivePrompt": "Create a premium full-page fashion lookbook photograph for a contemporary technical beekeeping apparel collection. Use the exact identity and recognizable facial features of the supplied reference portrait. Show the same 52-year-old South Asian woman in a substantially different wardrobe, setting, and composition: a confident full-body three-quarter fashion pose outdoors in a productive spring orchard apiary, facing the camera with her body angled slightly left, one hand resting on a clean painted hive box and the other relaxed at her side. Her face is fully visible and unobstructed.\n\nWardrobe: an impeccably designed saffron-yellow ripstop beekeeper oversuit with a precise relaxed silhouette, articulated knees, reinforced ivory canvas elbow panels, diagonal waterproof chest pocket, matte white two-way zippers, elasticated cuffs, and a narrow cobalt utility belt. The circular ivory mesh veil and structured hood are folded neatly behind her shoulders rather than covering her head. Add cobalt-blue gauntlet gloves, off-white rubber field boots, and no jewelry. Make every seam, fastener, pocket, mesh panel, and fabric texture credible and catalog-ready; the clothing is the hero.\n\nSetting: orderly rows of low fruit trees in pale blossom, several geometric wooden hive boxes painted chalky ivory, cobalt, and muted coral, short fresh grass, no other people. Art direction is clean, optimistic, and graphically color-blocked rather than rustic. Crisp late-morning sunlight softened by light cloud, gentle directional shadows, bright but controlled palette, realistic editorial color grading. Shot vertically at eye level with a medium-format fashion-camera aesthetic and a normal lens; include her entire figure and boots, generous breathing room above, restrained depth of field with the nearest hives legible and distant orchard softly receding. Natural skin texture, accurate anatomy and hands, poised mature presence. One finished standalone image, not a collage, contact sheet, magazine mockup, or page layout. No lettering, logos, labels, borders, or watermark.",
"negativePrompt": "face-obscuring veil, hood over face, sunglasses, hat, extra people, duplicate person, cropped feet, cropped head, distorted hands, extra fingers, malformed limbs, plastic skin, exaggerated glamour makeup, costume fantasy, rustic sepia styling, smoke clouds, swarming insects, text, logo, watermark, collage, split screen, catalog layout, product grid",
"width": 768,
"height": 1152,
"pulid": {
"images": [
"https://assets.runware.ai/assets/inputs/abd7bf31-9547-44f9-a0f9-7b31bbc119da.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "03d4e1d5-630d-43f1-9cbc-ba924ab340ae",
"imageUUID": "bb80ee49-5648-4c02-80b4-4b2d0f3c2d6a",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/bb80ee49-5648-4c02-80b4-4b2d0f3c2d6a.jpg",
"seed": 1450775497,
"cost": 0.0051
}