Qwen-Image-3.0

Qwen-Image-3.0 is a unified image model from Alibaba for both text-to-image generation and prompt-guided image editing. It supports one to three reference images for editing, automatic prompt expansion, negative prompts, reproducible seeded generation, and adaptive or user-specified output sizes. It supports text-to-image resolutions from 512x512 up to 2048x2048 and image editing resolutions up to 1440x1440, making it a strong fit for high-quality visual creation, controlled edits, and multi-image reference workflows.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
Step-by-step tutorials for advanced use cases
Dark Sky Tourism Poster

Create a finished travel and tourism promotional poster for Galloway Dark Sky Park in southwest Scotland, vertical 2:3 format. Art direction: elegant modern screenprint inspired by vintage railway travel posters, not a mockup. Scene: a small rural train crossing a stone viaduct through dark pine forest and rolling moorland, warm amber carriage windows, a couple with backpacks standing on a quiet platform in the foreground looking up, vast clear night sky filled with the Milky Way, subtle aurora-like green glow near the horizon, distant loch reflecting stars. Palette: deep indigo, midnight blue, pine green, warm gold, soft cream. Composition: strong diagonal railway line leading toward the stars, large clean sky area for typography. Include crisp poster lettering only: top line 'GALLOWAY DARK SKY PARK', bottom line 'SCOTLAND BY NIGHT TRAIN'. Premium tourism campaign quality, atmospheric, inviting, serene, print-ready, sharp edges, tasteful grain, balanced negative space.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:qwen-image@3.0',
positivePrompt: 'Create a finished travel and tourism promotional poster for Galloway Dark Sky Park in southwest Scotland, vertical 2:3 format. Art direction: elegant modern screenprint inspired by vintage railway travel posters, not a mockup. Scene: a small rural train crossing a stone viaduct through dark pine forest and rolling moorland, warm amber carriage windows, a couple with backpacks standing on a quiet platform in the foreground looking up, vast clear night sky filled with the Milky Way, subtle aurora-like green glow near the horizon, distant loch reflecting stars. Palette: deep indigo, midnight blue, pine green, warm gold, soft cream. Composition: strong diagonal railway line leading toward the stars, large clean sky area for typography. Include crisp poster lettering only: top line \'GALLOWAY DARK SKY PARK\', bottom line \'SCOTLAND BY NIGHT TRAIN\'. Premium tourism campaign quality, atmospheric, inviting, serene, print-ready, sharp edges, tasteful grain, balanced negative space.',
negativePrompt: 'browser UI, app screen, website mockup, buttons, cursor, QR code, extra logos, misspelled text, garbled lettering, cluttered layout, generic city skyline, tropical beach, sci-fi spaceship, cartoon mascots, overexposed sky, blurry details, photorealistic stock photo look',
width: 1024,
height: 1536,
providerSettings: {
alibaba: {
promptExtend: true,
promptExtendMode: 'direct'
}
}
})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": "alibaba:qwen-image@3.0",
"positivePrompt": "Create a finished travel and tourism promotional poster for Galloway Dark Sky Park in southwest Scotland, vertical 2:3 format. Art direction: elegant modern screenprint inspired by vintage railway travel posters, not a mockup. Scene: a small rural train crossing a stone viaduct through dark pine forest and rolling moorland, warm amber carriage windows, a couple with backpacks standing on a quiet platform in the foreground looking up, vast clear night sky filled with the Milky Way, subtle aurora-like green glow near the horizon, distant loch reflecting stars. Palette: deep indigo, midnight blue, pine green, warm gold, soft cream. Composition: strong diagonal railway line leading toward the stars, large clean sky area for typography. Include crisp poster lettering only: top line 'GALLOWAY DARK SKY PARK', bottom line 'SCOTLAND BY NIGHT TRAIN'. Premium tourism campaign quality, atmospheric, inviting, serene, print-ready, sharp edges, tasteful grain, balanced negative space.",
"negativePrompt": "browser UI, app screen, website mockup, buttons, cursor, QR code, extra logos, misspelled text, garbled lettering, cluttered layout, generic city skyline, tropical beach, sci-fi spaceship, cartoon mascots, overexposed sky, blurry details, photorealistic stock photo look",
"width": 1024,
"height": 1536,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"promptExtendMode": "direct"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "46e20791-c292-4caa-85d4-8f5d75558779",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Create a finished travel and tourism promotional poster for Galloway Dark Sky Park in southwest Scotland, vertical 2:3 format. Art direction: elegant modern screenprint inspired by vintage railway travel posters, not a mockup. Scene: a small rural train crossing a stone viaduct through dark pine forest and rolling moorland, warm amber carriage windows, a couple with backpacks standing on a quiet platform in the foreground looking up, vast clear night sky filled with the Milky Way, subtle aurora-like green glow near the horizon, distant loch reflecting stars. Palette: deep indigo, midnight blue, pine green, warm gold, soft cream. Composition: strong diagonal railway line leading toward the stars, large clean sky area for typography. Include crisp poster lettering only: top line 'GALLOWAY DARK SKY PARK', bottom line 'SCOTLAND BY NIGHT TRAIN'. Premium tourism campaign quality, atmospheric, inviting, serene, print-ready, sharp edges, tasteful grain, balanced negative space.",
"negativePrompt": "browser UI, app screen, website mockup, buttons, cursor, QR code, extra logos, misspelled text, garbled lettering, cluttered layout, generic city skyline, tropical beach, sci-fi spaceship, cartoon mascots, overexposed sky, blurry details, photorealistic stock photo look",
"width": 1024,
"height": 1536,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
}
}
]'runware run alibaba:qwen-image@3.0 \
positivePrompt="Create a finished travel and tourism promotional poster for Galloway Dark Sky Park in southwest Scotland, vertical 2:3 format. Art direction: elegant modern screenprint inspired by vintage railway travel posters, not a mockup. Scene: a small rural train crossing a stone viaduct through dark pine forest and rolling moorland, warm amber carriage windows, a couple with backpacks standing on a quiet platform in the foreground looking up, vast clear night sky filled with the Milky Way, subtle aurora-like green glow near the horizon, distant loch reflecting stars. Palette: deep indigo, midnight blue, pine green, warm gold, soft cream. Composition: strong diagonal railway line leading toward the stars, large clean sky area for typography. Include crisp poster lettering only: top line 'GALLOWAY DARK SKY PARK', bottom line 'SCOTLAND BY NIGHT TRAIN'. Premium tourism campaign quality, atmospheric, inviting, serene, print-ready, sharp edges, tasteful grain, balanced negative space." \
negativePrompt="browser UI, app screen, website mockup, buttons, cursor, QR code, extra logos, misspelled text, garbled lettering, cluttered layout, generic city skyline, tropical beach, sci-fi spaceship, cartoon mascots, overexposed sky, blurry details, photorealistic stock photo look" \
width=1024 \
height=1536 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.promptExtendMode=direct{
"taskType": "imageInference",
"taskUUID": "46e20791-c292-4caa-85d4-8f5d75558779",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Create a finished travel and tourism promotional poster for Galloway Dark Sky Park in southwest Scotland, vertical 2:3 format. Art direction: elegant modern screenprint inspired by vintage railway travel posters, not a mockup. Scene: a small rural train crossing a stone viaduct through dark pine forest and rolling moorland, warm amber carriage windows, a couple with backpacks standing on a quiet platform in the foreground looking up, vast clear night sky filled with the Milky Way, subtle aurora-like green glow near the horizon, distant loch reflecting stars. Palette: deep indigo, midnight blue, pine green, warm gold, soft cream. Composition: strong diagonal railway line leading toward the stars, large clean sky area for typography. Include crisp poster lettering only: top line 'GALLOWAY DARK SKY PARK', bottom line 'SCOTLAND BY NIGHT TRAIN'. Premium tourism campaign quality, atmospheric, inviting, serene, print-ready, sharp edges, tasteful grain, balanced negative space.",
"negativePrompt": "browser UI, app screen, website mockup, buttons, cursor, QR code, extra logos, misspelled text, garbled lettering, cluttered layout, generic city skyline, tropical beach, sci-fi spaceship, cartoon mascots, overexposed sky, blurry details, photorealistic stock photo look",
"width": 1024,
"height": 1536,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
}
}{
"taskType": "imageInference",
"taskUUID": "46e20791-c292-4caa-85d4-8f5d75558779",
"imageUUID": "f75262ca-d18f-4a3f-8087-f1e543f49b43",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/3/ii/f75262ca-d18f-4a3f-8087-f1e543f49b43.jpg",
"seed": 1738061700,
"cost": 0.035
}Smartwatch Alpine Lifestyle Ad

Use the reference smartwatch as the exact product: preserve its black titanium case, strap shape, buttons, screen proportions, and ALTERRA branding. Create a finished premium lifestyle advertising image for the ALTERRA Summit Pro X1 outdoor smartwatch. Replace the plain studio background with a cinematic alpine trail-running scene at sunrise: the watch is hero-framed in the foreground on a wet granite rock with tiny water droplets, pine needles, and frost crystals around it; behind it, a blurred mountain ridge, golden morning light, low mist, and a narrow trail leading into the distance. Add polished commercial product lighting with crisp highlights on the bezel and strap, realistic shadows, shallow depth of field, high-end outdoor gear advertising style. Include clean on-image typography integrated into the scene: headline at the top left reads “SUMMIT PRO X1” and smaller subline beneath reads “BUILT FOR THE LONG WAY UP”. No buttons or UI mockup, just a finished standalone campaign image.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:qwen-image@3.0',
positivePrompt: 'Use the reference smartwatch as the exact product: preserve its black titanium case, strap shape, buttons, screen proportions, and ALTERRA branding. Create a finished premium lifestyle advertising image for the ALTERRA Summit Pro X1 outdoor smartwatch. Replace the plain studio background with a cinematic alpine trail-running scene at sunrise: the watch is hero-framed in the foreground on a wet granite rock with tiny water droplets, pine needles, and frost crystals around it; behind it, a blurred mountain ridge, golden morning light, low mist, and a narrow trail leading into the distance. Add polished commercial product lighting with crisp highlights on the bezel and strap, realistic shadows, shallow depth of field, high-end outdoor gear advertising style. Include clean on-image typography integrated into the scene: headline at the top left reads “SUMMIT PRO X1” and smaller subline beneath reads “BUILT FOR THE LONG WAY UP”. No buttons or UI mockup, just a finished standalone campaign image.',
negativePrompt: 'distorted product, changed watch design, extra watches, unreadable text, misspelled typography, warped logo, fake app interface, website mockup, CTA button, hands wearing the watch, low resolution, cluttered layout, cartoon style, plastic-looking materials, overexposed highlights',
width: 1080,
height: 1350,
providerSettings: {
alibaba: {
promptExtend: true,
promptExtendMode: 'agent'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/d13bd310-e693-4fb4-8a32-dccdef65ae6e.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": "alibaba:qwen-image@3.0",
"positivePrompt": "Use the reference smartwatch as the exact product: preserve its black titanium case, strap shape, buttons, screen proportions, and ALTERRA branding. Create a finished premium lifestyle advertising image for the ALTERRA Summit Pro X1 outdoor smartwatch. Replace the plain studio background with a cinematic alpine trail-running scene at sunrise: the watch is hero-framed in the foreground on a wet granite rock with tiny water droplets, pine needles, and frost crystals around it; behind it, a blurred mountain ridge, golden morning light, low mist, and a narrow trail leading into the distance. Add polished commercial product lighting with crisp highlights on the bezel and strap, realistic shadows, shallow depth of field, high-end outdoor gear advertising style. Include clean on-image typography integrated into the scene: headline at the top left reads “SUMMIT PRO X1” and smaller subline beneath reads “BUILT FOR THE LONG WAY UP”. No buttons or UI mockup, just a finished standalone campaign image.",
"negativePrompt": "distorted product, changed watch design, extra watches, unreadable text, misspelled typography, warped logo, fake app interface, website mockup, CTA button, hands wearing the watch, low resolution, cluttered layout, cartoon style, plastic-looking materials, overexposed highlights",
"width": 1080,
"height": 1350,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"promptExtendMode": "agent"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/d13bd310-e693-4fb4-8a32-dccdef65ae6e.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": "74962a8e-76b0-418b-adb0-32242a85bc25",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Use the reference smartwatch as the exact product: preserve its black titanium case, strap shape, buttons, screen proportions, and ALTERRA branding. Create a finished premium lifestyle advertising image for the ALTERRA Summit Pro X1 outdoor smartwatch. Replace the plain studio background with a cinematic alpine trail-running scene at sunrise: the watch is hero-framed in the foreground on a wet granite rock with tiny water droplets, pine needles, and frost crystals around it; behind it, a blurred mountain ridge, golden morning light, low mist, and a narrow trail leading into the distance. Add polished commercial product lighting with crisp highlights on the bezel and strap, realistic shadows, shallow depth of field, high-end outdoor gear advertising style. Include clean on-image typography integrated into the scene: headline at the top left reads “SUMMIT PRO X1” and smaller subline beneath reads “BUILT FOR THE LONG WAY UP”. No buttons or UI mockup, just a finished standalone campaign image.",
"negativePrompt": "distorted product, changed watch design, extra watches, unreadable text, misspelled typography, warped logo, fake app interface, website mockup, CTA button, hands wearing the watch, low resolution, cluttered layout, cartoon style, plastic-looking materials, overexposed highlights",
"width": 1080,
"height": 1350,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "agent"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/d13bd310-e693-4fb4-8a32-dccdef65ae6e.jpg"
]
}
}
]'runware run alibaba:qwen-image@3.0 \
positivePrompt="Use the reference smartwatch as the exact product: preserve its black titanium case, strap shape, buttons, screen proportions, and ALTERRA branding. Create a finished premium lifestyle advertising image for the ALTERRA Summit Pro X1 outdoor smartwatch. Replace the plain studio background with a cinematic alpine trail-running scene at sunrise: the watch is hero-framed in the foreground on a wet granite rock with tiny water droplets, pine needles, and frost crystals around it; behind it, a blurred mountain ridge, golden morning light, low mist, and a narrow trail leading into the distance. Add polished commercial product lighting with crisp highlights on the bezel and strap, realistic shadows, shallow depth of field, high-end outdoor gear advertising style. Include clean on-image typography integrated into the scene: headline at the top left reads “SUMMIT PRO X1” and smaller subline beneath reads “BUILT FOR THE LONG WAY UP”. No buttons or UI mockup, just a finished standalone campaign image." \
negativePrompt="distorted product, changed watch design, extra watches, unreadable text, misspelled typography, warped logo, fake app interface, website mockup, CTA button, hands wearing the watch, low resolution, cluttered layout, cartoon style, plastic-looking materials, overexposed highlights" \
width=1080 \
height=1350 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.promptExtendMode=agent \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/d13bd310-e693-4fb4-8a32-dccdef65ae6e.jpg{
"taskType": "imageInference",
"taskUUID": "74962a8e-76b0-418b-adb0-32242a85bc25",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Use the reference smartwatch as the exact product: preserve its black titanium case, strap shape, buttons, screen proportions, and ALTERRA branding. Create a finished premium lifestyle advertising image for the ALTERRA Summit Pro X1 outdoor smartwatch. Replace the plain studio background with a cinematic alpine trail-running scene at sunrise: the watch is hero-framed in the foreground on a wet granite rock with tiny water droplets, pine needles, and frost crystals around it; behind it, a blurred mountain ridge, golden morning light, low mist, and a narrow trail leading into the distance. Add polished commercial product lighting with crisp highlights on the bezel and strap, realistic shadows, shallow depth of field, high-end outdoor gear advertising style. Include clean on-image typography integrated into the scene: headline at the top left reads “SUMMIT PRO X1” and smaller subline beneath reads “BUILT FOR THE LONG WAY UP”. No buttons or UI mockup, just a finished standalone campaign image.",
"negativePrompt": "distorted product, changed watch design, extra watches, unreadable text, misspelled typography, warped logo, fake app interface, website mockup, CTA button, hands wearing the watch, low resolution, cluttered layout, cartoon style, plastic-looking materials, overexposed highlights",
"width": 1080,
"height": 1350,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "agent"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/d13bd310-e693-4fb4-8a32-dccdef65ae6e.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "74962a8e-76b0-418b-adb0-32242a85bc25",
"imageUUID": "a739b01c-483e-49d5-becc-d2fe97b8858d",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/a739b01c-483e-49d5-becc-d2fe97b8858d.jpg",
"seed": 71018915,
"cost": 0.035
}Pendant Lighting Interior Placement

Create a finished interior product placement image using the reference pendant lamp as the exact hero product. Place the same smoked amber ribbed glass pendant light hanging above a curved walnut banquette table in an intimate boutique hotel restaurant. Warm evening hospitality lighting, plaster walls in muted clay beige, deep green velvet seating, travertine tabletop, small ceramic plates and folded linen napkins, subtle reflections in the glass shade, realistic scale and suspension height, premium architectural photography, vertical 4:5 composition, shallow depth of field, natural shadows, no on-image text, no 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: 'alibaba:qwen-image@3.0',
positivePrompt: 'Create a finished interior product placement image using the reference pendant lamp as the exact hero product. Place the same smoked amber ribbed glass pendant light hanging above a curved walnut banquette table in an intimate boutique hotel restaurant. Warm evening hospitality lighting, plaster walls in muted clay beige, deep green velvet seating, travertine tabletop, small ceramic plates and folded linen napkins, subtle reflections in the glass shade, realistic scale and suspension height, premium architectural photography, vertical 4:5 composition, shallow depth of field, natural shadows, no on-image text, no logos.',
negativePrompt: 'distorted lamp shape, changed product color, extra cords, duplicate lamps as the main subject, floating product, unrealistic shadows, overexposed glass, text, logo, watermark, people, cluttered table, cartoon style, CGI look',
width: 1152,
height: 1440,
providerSettings: {
alibaba: {
promptExtend: true,
promptExtendMode: 'direct'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/b305c2e7-1769-47ff-8f9d-3b4f4fa82f37.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": "alibaba:qwen-image@3.0",
"positivePrompt": "Create a finished interior product placement image using the reference pendant lamp as the exact hero product. Place the same smoked amber ribbed glass pendant light hanging above a curved walnut banquette table in an intimate boutique hotel restaurant. Warm evening hospitality lighting, plaster walls in muted clay beige, deep green velvet seating, travertine tabletop, small ceramic plates and folded linen napkins, subtle reflections in the glass shade, realistic scale and suspension height, premium architectural photography, vertical 4:5 composition, shallow depth of field, natural shadows, no on-image text, no logos.",
"negativePrompt": "distorted lamp shape, changed product color, extra cords, duplicate lamps as the main subject, floating product, unrealistic shadows, overexposed glass, text, logo, watermark, people, cluttered table, cartoon style, CGI look",
"width": 1152,
"height": 1440,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/b305c2e7-1769-47ff-8f9d-3b4f4fa82f37.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": "9b5dc602-5d73-45d7-bf25-4453accf1c85",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Create a finished interior product placement image using the reference pendant lamp as the exact hero product. Place the same smoked amber ribbed glass pendant light hanging above a curved walnut banquette table in an intimate boutique hotel restaurant. Warm evening hospitality lighting, plaster walls in muted clay beige, deep green velvet seating, travertine tabletop, small ceramic plates and folded linen napkins, subtle reflections in the glass shade, realistic scale and suspension height, premium architectural photography, vertical 4:5 composition, shallow depth of field, natural shadows, no on-image text, no logos.",
"negativePrompt": "distorted lamp shape, changed product color, extra cords, duplicate lamps as the main subject, floating product, unrealistic shadows, overexposed glass, text, logo, watermark, people, cluttered table, cartoon style, CGI look",
"width": 1152,
"height": 1440,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/b305c2e7-1769-47ff-8f9d-3b4f4fa82f37.jpg"
]
}
}
]'runware run alibaba:qwen-image@3.0 \
positivePrompt="Create a finished interior product placement image using the reference pendant lamp as the exact hero product. Place the same smoked amber ribbed glass pendant light hanging above a curved walnut banquette table in an intimate boutique hotel restaurant. Warm evening hospitality lighting, plaster walls in muted clay beige, deep green velvet seating, travertine tabletop, small ceramic plates and folded linen napkins, subtle reflections in the glass shade, realistic scale and suspension height, premium architectural photography, vertical 4:5 composition, shallow depth of field, natural shadows, no on-image text, no logos." \
negativePrompt="distorted lamp shape, changed product color, extra cords, duplicate lamps as the main subject, floating product, unrealistic shadows, overexposed glass, text, logo, watermark, people, cluttered table, cartoon style, CGI look" \
width=1152 \
height=1440 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.promptExtendMode=direct \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/b305c2e7-1769-47ff-8f9d-3b4f4fa82f37.jpg{
"taskType": "imageInference",
"taskUUID": "9b5dc602-5d73-45d7-bf25-4453accf1c85",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Create a finished interior product placement image using the reference pendant lamp as the exact hero product. Place the same smoked amber ribbed glass pendant light hanging above a curved walnut banquette table in an intimate boutique hotel restaurant. Warm evening hospitality lighting, plaster walls in muted clay beige, deep green velvet seating, travertine tabletop, small ceramic plates and folded linen napkins, subtle reflections in the glass shade, realistic scale and suspension height, premium architectural photography, vertical 4:5 composition, shallow depth of field, natural shadows, no on-image text, no logos.",
"negativePrompt": "distorted lamp shape, changed product color, extra cords, duplicate lamps as the main subject, floating product, unrealistic shadows, overexposed glass, text, logo, watermark, people, cluttered table, cartoon style, CGI look",
"width": 1152,
"height": 1440,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/b305c2e7-1769-47ff-8f9d-3b4f4fa82f37.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "9b5dc602-5d73-45d7-bf25-4453accf1c85",
"imageUUID": "7e9d7954-2cc3-4472-94d5-cef6d2b09519",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/7e9d7954-2cc3-4472-94d5-cef6d2b09519.jpg",
"seed": 709799594,
"cost": 0.035
}Apiary Workwear Lookbook Image

Create a finished vertical fashion lookbook/catalog photograph using the three references: dress the model from reference 2 in the beekeeping workwear outfit from reference 1, placed naturally inside the apiary location from reference 3. Premium utilitarian fashion styling, cream canvas jacket with structured veil hood pushed back, reinforced trousers, leather gloves tucked into one pocket, practical boots, precise garment details visible for catalog evaluation. Full-body three-quarter pose, model standing beside stacked wooden hive boxes, one hand resting lightly on a hive lid. Editorial catalog lighting with warm morning sun, soft shadows, muted honey, cream, sage green, and weathered wood palette. High-end lookbook photography, 85mm lens feel, crisp fabric texture, natural skin, realistic proportions, clean composition with generous negative space, no on-image text, no 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: 'alibaba:qwen-image@3.0',
positivePrompt: 'Create a finished vertical fashion lookbook/catalog photograph using the three references: dress the model from reference 2 in the beekeeping workwear outfit from reference 1, placed naturally inside the apiary location from reference 3. Premium utilitarian fashion styling, cream canvas jacket with structured veil hood pushed back, reinforced trousers, leather gloves tucked into one pocket, practical boots, precise garment details visible for catalog evaluation. Full-body three-quarter pose, model standing beside stacked wooden hive boxes, one hand resting lightly on a hive lid. Editorial catalog lighting with warm morning sun, soft shadows, muted honey, cream, sage green, and weathered wood palette. High-end lookbook photography, 85mm lens feel, crisp fabric texture, natural skin, realistic proportions, clean composition with generous negative space, no on-image text, no logos.',
negativePrompt: 'cartoon, illustration, surreal fantasy, runway stage, fake logo, visible brand name, on-image text, distorted anatomy, extra limbs, warped hands, melted clothing, plastic fabric, overexposed highlights, messy background, low-resolution, screenshot, web page, catalog layout mockup',
width: 1080,
height: 1350,
providerSettings: {
alibaba: {
promptExtend: true,
promptExtendMode: 'agent'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/f9341478-7e93-4ded-80c1-c1f5d02fbd32.jpg',
'https://assets.runware.ai/assets/inputs/90e8c95d-3654-4472-a1d2-3b79420d0065.jpg',
'https://assets.runware.ai/assets/inputs/c762e4ab-9fc2-4071-98c8-7c271a2b4931.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": "alibaba:qwen-image@3.0",
"positivePrompt": "Create a finished vertical fashion lookbook/catalog photograph using the three references: dress the model from reference 2 in the beekeeping workwear outfit from reference 1, placed naturally inside the apiary location from reference 3. Premium utilitarian fashion styling, cream canvas jacket with structured veil hood pushed back, reinforced trousers, leather gloves tucked into one pocket, practical boots, precise garment details visible for catalog evaluation. Full-body three-quarter pose, model standing beside stacked wooden hive boxes, one hand resting lightly on a hive lid. Editorial catalog lighting with warm morning sun, soft shadows, muted honey, cream, sage green, and weathered wood palette. High-end lookbook photography, 85mm lens feel, crisp fabric texture, natural skin, realistic proportions, clean composition with generous negative space, no on-image text, no logos.",
"negativePrompt": "cartoon, illustration, surreal fantasy, runway stage, fake logo, visible brand name, on-image text, distorted anatomy, extra limbs, warped hands, melted clothing, plastic fabric, overexposed highlights, messy background, low-resolution, screenshot, web page, catalog layout mockup",
"width": 1080,
"height": 1350,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"promptExtendMode": "agent"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/f9341478-7e93-4ded-80c1-c1f5d02fbd32.jpg",
"https://assets.runware.ai/assets/inputs/90e8c95d-3654-4472-a1d2-3b79420d0065.jpg",
"https://assets.runware.ai/assets/inputs/c762e4ab-9fc2-4071-98c8-7c271a2b4931.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": "ab29da36-9a3e-4491-9ebb-4e8d56226a19",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Create a finished vertical fashion lookbook/catalog photograph using the three references: dress the model from reference 2 in the beekeeping workwear outfit from reference 1, placed naturally inside the apiary location from reference 3. Premium utilitarian fashion styling, cream canvas jacket with structured veil hood pushed back, reinforced trousers, leather gloves tucked into one pocket, practical boots, precise garment details visible for catalog evaluation. Full-body three-quarter pose, model standing beside stacked wooden hive boxes, one hand resting lightly on a hive lid. Editorial catalog lighting with warm morning sun, soft shadows, muted honey, cream, sage green, and weathered wood palette. High-end lookbook photography, 85mm lens feel, crisp fabric texture, natural skin, realistic proportions, clean composition with generous negative space, no on-image text, no logos.",
"negativePrompt": "cartoon, illustration, surreal fantasy, runway stage, fake logo, visible brand name, on-image text, distorted anatomy, extra limbs, warped hands, melted clothing, plastic fabric, overexposed highlights, messy background, low-resolution, screenshot, web page, catalog layout mockup",
"width": 1080,
"height": 1350,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "agent"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/f9341478-7e93-4ded-80c1-c1f5d02fbd32.jpg",
"https://assets.runware.ai/assets/inputs/90e8c95d-3654-4472-a1d2-3b79420d0065.jpg",
"https://assets.runware.ai/assets/inputs/c762e4ab-9fc2-4071-98c8-7c271a2b4931.jpg"
]
}
}
]'runware run alibaba:qwen-image@3.0 \
positivePrompt="Create a finished vertical fashion lookbook/catalog photograph using the three references: dress the model from reference 2 in the beekeeping workwear outfit from reference 1, placed naturally inside the apiary location from reference 3. Premium utilitarian fashion styling, cream canvas jacket with structured veil hood pushed back, reinforced trousers, leather gloves tucked into one pocket, practical boots, precise garment details visible for catalog evaluation. Full-body three-quarter pose, model standing beside stacked wooden hive boxes, one hand resting lightly on a hive lid. Editorial catalog lighting with warm morning sun, soft shadows, muted honey, cream, sage green, and weathered wood palette. High-end lookbook photography, 85mm lens feel, crisp fabric texture, natural skin, realistic proportions, clean composition with generous negative space, no on-image text, no logos." \
negativePrompt="cartoon, illustration, surreal fantasy, runway stage, fake logo, visible brand name, on-image text, distorted anatomy, extra limbs, warped hands, melted clothing, plastic fabric, overexposed highlights, messy background, low-resolution, screenshot, web page, catalog layout mockup" \
width=1080 \
height=1350 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.promptExtendMode=agent \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/f9341478-7e93-4ded-80c1-c1f5d02fbd32.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/90e8c95d-3654-4472-a1d2-3b79420d0065.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/c762e4ab-9fc2-4071-98c8-7c271a2b4931.jpg{
"taskType": "imageInference",
"taskUUID": "ab29da36-9a3e-4491-9ebb-4e8d56226a19",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Create a finished vertical fashion lookbook/catalog photograph using the three references: dress the model from reference 2 in the beekeeping workwear outfit from reference 1, placed naturally inside the apiary location from reference 3. Premium utilitarian fashion styling, cream canvas jacket with structured veil hood pushed back, reinforced trousers, leather gloves tucked into one pocket, practical boots, precise garment details visible for catalog evaluation. Full-body three-quarter pose, model standing beside stacked wooden hive boxes, one hand resting lightly on a hive lid. Editorial catalog lighting with warm morning sun, soft shadows, muted honey, cream, sage green, and weathered wood palette. High-end lookbook photography, 85mm lens feel, crisp fabric texture, natural skin, realistic proportions, clean composition with generous negative space, no on-image text, no logos.",
"negativePrompt": "cartoon, illustration, surreal fantasy, runway stage, fake logo, visible brand name, on-image text, distorted anatomy, extra limbs, warped hands, melted clothing, plastic fabric, overexposed highlights, messy background, low-resolution, screenshot, web page, catalog layout mockup",
"width": 1080,
"height": 1350,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "agent"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/f9341478-7e93-4ded-80c1-c1f5d02fbd32.jpg",
"https://assets.runware.ai/assets/inputs/90e8c95d-3654-4472-a1d2-3b79420d0065.jpg",
"https://assets.runware.ai/assets/inputs/c762e4ab-9fc2-4071-98c8-7c271a2b4931.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "ab29da36-9a3e-4491-9ebb-4e8d56226a19",
"imageUUID": "dd47223b-9c3b-401d-b90f-733c917ab1e3",
"imageURL": "https://im.runware.ai/image/os/a04d20/ws/3/ii/dd47223b-9c3b-401d-b90f-733c917ab1e3.jpg",
"seed": 1236445556,
"cost": 0.035
}Fossil Auction Catalog Cutout

Edit the reference image into a finished premium fossil auction catalog plate. Preserve the exact trilobite fossil slab from the source image: same silhouette, cracks, ridges, fossil texture, stone color, and specimen proportions. Remove the entire original background including table clutter, ruler, tags, hands, shadows, and dust. Place the fossil centered on a clean warm ivory archival-paper background with a subtle museum-grade vignette, soft raking light from upper left, a natural contact shadow beneath the slab, and crisp high-end product photography detail. Add small refined catalog typography at the bottom: “LOT 184” and “CAMBRIAN TRILOBITE” plus a minimal 5 cm scale bar, all neatly aligned and unobtrusive. Editorial auction house style, realistic, sharp, elegant, publication-ready.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:qwen-image@3.0',
positivePrompt: 'Edit the reference image into a finished premium fossil auction catalog plate. Preserve the exact trilobite fossil slab from the source image: same silhouette, cracks, ridges, fossil texture, stone color, and specimen proportions. Remove the entire original background including table clutter, ruler, tags, hands, shadows, and dust. Place the fossil centered on a clean warm ivory archival-paper background with a subtle museum-grade vignette, soft raking light from upper left, a natural contact shadow beneath the slab, and crisp high-end product photography detail. Add small refined catalog typography at the bottom: “LOT 184” and “CAMBRIAN TRILOBITE” plus a minimal 5 cm scale bar, all neatly aligned and unobtrusive. Editorial auction house style, realistic, sharp, elegant, publication-ready.',
negativePrompt: 'altered fossil shape, extra fossils, fake cracks, hands, ruler, price tag, messy table, original background, harsh flash, floating object, distorted scale bar, misspelled text, oversized typography, cartoon style, low resolution, blur',
width: 1080,
height: 1350,
seed: 1483926,
providerSettings: {
alibaba: {
promptExtend: true,
promptExtendMode: 'direct'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/29e5a748-57da-4fff-93db-e98eeb74f6b0.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": "alibaba:qwen-image@3.0",
"positivePrompt": "Edit the reference image into a finished premium fossil auction catalog plate. Preserve the exact trilobite fossil slab from the source image: same silhouette, cracks, ridges, fossil texture, stone color, and specimen proportions. Remove the entire original background including table clutter, ruler, tags, hands, shadows, and dust. Place the fossil centered on a clean warm ivory archival-paper background with a subtle museum-grade vignette, soft raking light from upper left, a natural contact shadow beneath the slab, and crisp high-end product photography detail. Add small refined catalog typography at the bottom: “LOT 184” and “CAMBRIAN TRILOBITE” plus a minimal 5 cm scale bar, all neatly aligned and unobtrusive. Editorial auction house style, realistic, sharp, elegant, publication-ready.",
"negativePrompt": "altered fossil shape, extra fossils, fake cracks, hands, ruler, price tag, messy table, original background, harsh flash, floating object, distorted scale bar, misspelled text, oversized typography, cartoon style, low resolution, blur",
"width": 1080,
"height": 1350,
"seed": 1483926,
"providerSettings": {
"alibaba": {
"promptExtend": True,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/29e5a748-57da-4fff-93db-e98eeb74f6b0.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": "09140004-041b-41b2-bd5f-458c554ab517",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Edit the reference image into a finished premium fossil auction catalog plate. Preserve the exact trilobite fossil slab from the source image: same silhouette, cracks, ridges, fossil texture, stone color, and specimen proportions. Remove the entire original background including table clutter, ruler, tags, hands, shadows, and dust. Place the fossil centered on a clean warm ivory archival-paper background with a subtle museum-grade vignette, soft raking light from upper left, a natural contact shadow beneath the slab, and crisp high-end product photography detail. Add small refined catalog typography at the bottom: “LOT 184” and “CAMBRIAN TRILOBITE” plus a minimal 5 cm scale bar, all neatly aligned and unobtrusive. Editorial auction house style, realistic, sharp, elegant, publication-ready.",
"negativePrompt": "altered fossil shape, extra fossils, fake cracks, hands, ruler, price tag, messy table, original background, harsh flash, floating object, distorted scale bar, misspelled text, oversized typography, cartoon style, low resolution, blur",
"width": 1080,
"height": 1350,
"seed": 1483926,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/29e5a748-57da-4fff-93db-e98eeb74f6b0.jpg"
]
}
}
]'runware run alibaba:qwen-image@3.0 \
positivePrompt="Edit the reference image into a finished premium fossil auction catalog plate. Preserve the exact trilobite fossil slab from the source image: same silhouette, cracks, ridges, fossil texture, stone color, and specimen proportions. Remove the entire original background including table clutter, ruler, tags, hands, shadows, and dust. Place the fossil centered on a clean warm ivory archival-paper background with a subtle museum-grade vignette, soft raking light from upper left, a natural contact shadow beneath the slab, and crisp high-end product photography detail. Add small refined catalog typography at the bottom: “LOT 184” and “CAMBRIAN TRILOBITE” plus a minimal 5 cm scale bar, all neatly aligned and unobtrusive. Editorial auction house style, realistic, sharp, elegant, publication-ready." \
negativePrompt="altered fossil shape, extra fossils, fake cracks, hands, ruler, price tag, messy table, original background, harsh flash, floating object, distorted scale bar, misspelled text, oversized typography, cartoon style, low resolution, blur" \
width=1080 \
height=1350 \
seed=1483926 \
providerSettings.alibaba.promptExtend=true \
providerSettings.alibaba.promptExtendMode=direct \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/29e5a748-57da-4fff-93db-e98eeb74f6b0.jpg{
"taskType": "imageInference",
"taskUUID": "09140004-041b-41b2-bd5f-458c554ab517",
"model": "alibaba:qwen-image@3.0",
"positivePrompt": "Edit the reference image into a finished premium fossil auction catalog plate. Preserve the exact trilobite fossil slab from the source image: same silhouette, cracks, ridges, fossil texture, stone color, and specimen proportions. Remove the entire original background including table clutter, ruler, tags, hands, shadows, and dust. Place the fossil centered on a clean warm ivory archival-paper background with a subtle museum-grade vignette, soft raking light from upper left, a natural contact shadow beneath the slab, and crisp high-end product photography detail. Add small refined catalog typography at the bottom: “LOT 184” and “CAMBRIAN TRILOBITE” plus a minimal 5 cm scale bar, all neatly aligned and unobtrusive. Editorial auction house style, realistic, sharp, elegant, publication-ready.",
"negativePrompt": "altered fossil shape, extra fossils, fake cracks, hands, ruler, price tag, messy table, original background, harsh flash, floating object, distorted scale bar, misspelled text, oversized typography, cartoon style, low resolution, blur",
"width": 1080,
"height": 1350,
"seed": 1483926,
"providerSettings": {
"alibaba": {
"promptExtend": true,
"promptExtendMode": "direct"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/29e5a748-57da-4fff-93db-e98eeb74f6b0.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "09140004-041b-41b2-bd5f-458c554ab517",
"imageUUID": "d614bcc1-fad2-46d4-a842-b2ed496d69a9",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/d614bcc1-fad2-46d4-a842-b2ed496d69a9.jpg",
"seed": 1483926,
"cost": 0.035
}