live
MODEL IDalibaba:wan@2.6-image

Wan2.6 Image

Alibaba
by

Wan2.6 Image is a single-frame image generation model derived from the Wan2.6 multimodal video architecture. It focuses on strong prompt adherence, clean spatial structure, and visually coherent results, delivering video-grade image quality for creative, editorial, and product-oriented workflows.

Wan2.6 Image

text-to-image

Conservas Bar Menu Hero Photograph$0.03~15s
Conservas Bar Menu Hero Photograph

Create a polished commercial food photograph for a contemporary coastal conservas bar menu. A generous Spanish preserved-seafood spread sits on a cobalt-blue glazed tile table in direct Mediterranean midday sunlight. Show three open, unlabeled brushed-aluminum tins arranged in a clean diagonal composition: plump sardines gleaming in olive oil with thin lemon wheels, orange escabeche mussels with translucent shallot and parsley, and tender octopus slices dusted with smoked paprika. Surround them with a small plate of crisp golden potato chips, charred sourdough, green olives, cornichons, a cut lemon, and a chilled stemmed copita of pale fino sherry with realistic condensation. Include a folded vermilion linen napkin and a simple stainless seafood fork. Every item should look edible, fresh, and meticulously styled, with believable oil reflections, crisp bread texture, delicate seafood detail, and restrained crumbs. Photograph from a slightly elevated three-quarter angle using a professional full-frame camera and 50mm lens. Hard sunlight creates graphic striped shadows from an unseen slatted awning, while soft bounce light preserves detail in the tins. Palette: saturated cobalt, tomato orange, silver, lemon yellow, and olive green. Landscape framing, balanced visual hierarchy, sharp hero food with gentle depth falloff, premium editorial menu photography, natural color, photorealistic, no people, no lettering or branding.

Try in Playground
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:wan@2.6-image',
  positivePrompt: 'Create a polished commercial food photograph for a contemporary coastal conservas bar menu. A generous Spanish preserved-seafood spread sits on a cobalt-blue glazed tile table in direct Mediterranean midday sunlight. Show three open, unlabeled brushed-aluminum tins arranged in a clean diagonal composition: plump sardines gleaming in olive oil with thin lemon wheels, orange escabeche mussels with translucent shallot and parsley, and tender octopus slices dusted with smoked paprika. Surround them with a small plate of crisp golden potato chips, charred sourdough, green olives, cornichons, a cut lemon, and a chilled stemmed copita of pale fino sherry with realistic condensation. Include a folded vermilion linen napkin and a simple stainless seafood fork. Every item should look edible, fresh, and meticulously styled, with believable oil reflections, crisp bread texture, delicate seafood detail, and restrained crumbs. Photograph from a slightly elevated three-quarter angle using a professional full-frame camera and 50mm lens. Hard sunlight creates graphic striped shadows from an unseen slatted awning, while soft bounce light preserves detail in the tins. Palette: saturated cobalt, tomato orange, silver, lemon yellow, and olive green. Landscape framing, balanced visual hierarchy, sharp hero food with gentle depth falloff, premium editorial menu photography, natural color, photorealistic, no people, no lettering or branding.',
  negativePrompt: 'Text, logos, labels, packaging graphics, menu layout, people, hands, duplicate dishes, warped tins, malformed utensils, floating ingredients, raw-looking seafood, muddy colors, greasy mess, excessive garnish, plastic food, illustration, CGI, oversaturation, harsh clipped highlights, deep crushed shadows, extreme wide-angle distortion, cluttered background, low resolution, blur',
  width: 1600,
  height: 1024
})
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:wan@2.6-image",
            "positivePrompt": "Create a polished commercial food photograph for a contemporary coastal conservas bar menu. A generous Spanish preserved-seafood spread sits on a cobalt-blue glazed tile table in direct Mediterranean midday sunlight. Show three open, unlabeled brushed-aluminum tins arranged in a clean diagonal composition: plump sardines gleaming in olive oil with thin lemon wheels, orange escabeche mussels with translucent shallot and parsley, and tender octopus slices dusted with smoked paprika. Surround them with a small plate of crisp golden potato chips, charred sourdough, green olives, cornichons, a cut lemon, and a chilled stemmed copita of pale fino sherry with realistic condensation. Include a folded vermilion linen napkin and a simple stainless seafood fork. Every item should look edible, fresh, and meticulously styled, with believable oil reflections, crisp bread texture, delicate seafood detail, and restrained crumbs. Photograph from a slightly elevated three-quarter angle using a professional full-frame camera and 50mm lens. Hard sunlight creates graphic striped shadows from an unseen slatted awning, while soft bounce light preserves detail in the tins. Palette: saturated cobalt, tomato orange, silver, lemon yellow, and olive green. Landscape framing, balanced visual hierarchy, sharp hero food with gentle depth falloff, premium editorial menu photography, natural color, photorealistic, no people, no lettering or branding.",
            "negativePrompt": "Text, logos, labels, packaging graphics, menu layout, people, hands, duplicate dishes, warped tins, malformed utensils, floating ingredients, raw-looking seafood, muddy colors, greasy mess, excessive garnish, plastic food, illustration, CGI, oversaturation, harsh clipped highlights, deep crushed shadows, extreme wide-angle distortion, cluttered background, low resolution, blur",
            "width": 1600,
            "height": 1024
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "4af83088-5f1e-4553-9f13-db8bb91f170c",
      "model": "alibaba:wan@2.6-image",
      "positivePrompt": "Create a polished commercial food photograph for a contemporary coastal conservas bar menu. A generous Spanish preserved-seafood spread sits on a cobalt-blue glazed tile table in direct Mediterranean midday sunlight. Show three open, unlabeled brushed-aluminum tins arranged in a clean diagonal composition: plump sardines gleaming in olive oil with thin lemon wheels, orange escabeche mussels with translucent shallot and parsley, and tender octopus slices dusted with smoked paprika. Surround them with a small plate of crisp golden potato chips, charred sourdough, green olives, cornichons, a cut lemon, and a chilled stemmed copita of pale fino sherry with realistic condensation. Include a folded vermilion linen napkin and a simple stainless seafood fork. Every item should look edible, fresh, and meticulously styled, with believable oil reflections, crisp bread texture, delicate seafood detail, and restrained crumbs. Photograph from a slightly elevated three-quarter angle using a professional full-frame camera and 50mm lens. Hard sunlight creates graphic striped shadows from an unseen slatted awning, while soft bounce light preserves detail in the tins. Palette: saturated cobalt, tomato orange, silver, lemon yellow, and olive green. Landscape framing, balanced visual hierarchy, sharp hero food with gentle depth falloff, premium editorial menu photography, natural color, photorealistic, no people, no lettering or branding.",
      "negativePrompt": "Text, logos, labels, packaging graphics, menu layout, people, hands, duplicate dishes, warped tins, malformed utensils, floating ingredients, raw-looking seafood, muddy colors, greasy mess, excessive garnish, plastic food, illustration, CGI, oversaturation, harsh clipped highlights, deep crushed shadows, extreme wide-angle distortion, cluttered background, low resolution, blur",
      "width": 1600,
      "height": 1024
    }
  ]'
runware run alibaba:wan@2.6-image \
  positivePrompt="Create a polished commercial food photograph for a contemporary coastal conservas bar menu. A generous Spanish preserved-seafood spread sits on a cobalt-blue glazed tile table in direct Mediterranean midday sunlight. Show three open, unlabeled brushed-aluminum tins arranged in a clean diagonal composition: plump sardines gleaming in olive oil with thin lemon wheels, orange escabeche mussels with translucent shallot and parsley, and tender octopus slices dusted with smoked paprika. Surround them with a small plate of crisp golden potato chips, charred sourdough, green olives, cornichons, a cut lemon, and a chilled stemmed copita of pale fino sherry with realistic condensation. Include a folded vermilion linen napkin and a simple stainless seafood fork. Every item should look edible, fresh, and meticulously styled, with believable oil reflections, crisp bread texture, delicate seafood detail, and restrained crumbs. Photograph from a slightly elevated three-quarter angle using a professional full-frame camera and 50mm lens. Hard sunlight creates graphic striped shadows from an unseen slatted awning, while soft bounce light preserves detail in the tins. Palette: saturated cobalt, tomato orange, silver, lemon yellow, and olive green. Landscape framing, balanced visual hierarchy, sharp hero food with gentle depth falloff, premium editorial menu photography, natural color, photorealistic, no people, no lettering or branding." \
  negativePrompt="Text, logos, labels, packaging graphics, menu layout, people, hands, duplicate dishes, warped tins, malformed utensils, floating ingredients, raw-looking seafood, muddy colors, greasy mess, excessive garnish, plastic food, illustration, CGI, oversaturation, harsh clipped highlights, deep crushed shadows, extreme wide-angle distortion, cluttered background, low resolution, blur" \
  width=1600 \
  height=1024
{
  "taskType": "imageInference",
  "taskUUID": "4af83088-5f1e-4553-9f13-db8bb91f170c",
  "model": "alibaba:wan@2.6-image",
  "positivePrompt": "Create a polished commercial food photograph for a contemporary coastal conservas bar menu. A generous Spanish preserved-seafood spread sits on a cobalt-blue glazed tile table in direct Mediterranean midday sunlight. Show three open, unlabeled brushed-aluminum tins arranged in a clean diagonal composition: plump sardines gleaming in olive oil with thin lemon wheels, orange escabeche mussels with translucent shallot and parsley, and tender octopus slices dusted with smoked paprika. Surround them with a small plate of crisp golden potato chips, charred sourdough, green olives, cornichons, a cut lemon, and a chilled stemmed copita of pale fino sherry with realistic condensation. Include a folded vermilion linen napkin and a simple stainless seafood fork. Every item should look edible, fresh, and meticulously styled, with believable oil reflections, crisp bread texture, delicate seafood detail, and restrained crumbs. Photograph from a slightly elevated three-quarter angle using a professional full-frame camera and 50mm lens. Hard sunlight creates graphic striped shadows from an unseen slatted awning, while soft bounce light preserves detail in the tins. Palette: saturated cobalt, tomato orange, silver, lemon yellow, and olive green. Landscape framing, balanced visual hierarchy, sharp hero food with gentle depth falloff, premium editorial menu photography, natural color, photorealistic, no people, no lettering or branding.",
  "negativePrompt": "Text, logos, labels, packaging graphics, menu layout, people, hands, duplicate dishes, warped tins, malformed utensils, floating ingredients, raw-looking seafood, muddy colors, greasy mess, excessive garnish, plastic food, illustration, CGI, oversaturation, harsh clipped highlights, deep crushed shadows, extreme wide-angle distortion, cluttered background, low resolution, blur",
  "width": 1600,
  "height": 1024
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "4af83088-5f1e-4553-9f13-db8bb91f170c",
  "imageUUID": "737569ac-0378-4cc2-8917-39cf70e1ce1d",
  "imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/3/ii/737569ac-0378-4cc2-8917-39cf70e1ce1d.jpg",
  "seed": 97927037,
  "cost": 0.03
}

text-to-image

Experimental Folk Album Cover$0.03~17s
Experimental Folk Album Cover

Finished landscape album cover artwork for an experimental folk-electronic record titled “FIRST LIGHT / LAST PICK” by “NADIA SERRANO”. A cinematic documentary photograph of a nocturnal saffron harvest in rural Spain just before dawn: a vast field of deep violet crocuses receding into low blue fog, five farm workers spaced naturally across the rows, kneeling and carefully gathering flowers into shallow wicker baskets. Their practical dark workwear and small amber headlamps create warm points of light against the cold landscape. In the foreground, dew-covered crocus petals and vivid red saffron threads are rendered with tactile macro detail; the middle distance shows human activity clearly; distant low hills dissolve into mist beneath a charcoal-indigo sky. One old utility vehicle sits far off with soft headlights glowing through the haze. Quiet, patient, grounded mood rather than romantic fantasy. Sophisticated contemporary music photography, restrained analog grain, subtle halation around lamps, rich violet, ink blue, rust red and warm amber palette, deep tonal range, natural faces and hands, coherent agricultural details. Strong panoramic composition with the horizon in the upper third and intentional negative space in the dark sky. Clean condensed ivory typography in the upper left: large exact title “FIRST LIGHT / LAST PICK”; smaller artist name directly beneath: “NADIA SERRANO”. Typography should feel editorial and integrated, with generous tracking and no additional wording. Flat final cover art only, edge-to-edge image, not a physical record mockup.

Try in Playground
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:wan@2.6-image',
  positivePrompt: 'Finished landscape album cover artwork for an experimental folk-electronic record titled “FIRST LIGHT / LAST PICK” by “NADIA SERRANO”. A cinematic documentary photograph of a nocturnal saffron harvest in rural Spain just before dawn: a vast field of deep violet crocuses receding into low blue fog, five farm workers spaced naturally across the rows, kneeling and carefully gathering flowers into shallow wicker baskets. Their practical dark workwear and small amber headlamps create warm points of light against the cold landscape. In the foreground, dew-covered crocus petals and vivid red saffron threads are rendered with tactile macro detail; the middle distance shows human activity clearly; distant low hills dissolve into mist beneath a charcoal-indigo sky. One old utility vehicle sits far off with soft headlights glowing through the haze. Quiet, patient, grounded mood rather than romantic fantasy. Sophisticated contemporary music photography, restrained analog grain, subtle halation around lamps, rich violet, ink blue, rust red and warm amber palette, deep tonal range, natural faces and hands, coherent agricultural details. Strong panoramic composition with the horizon in the upper third and intentional negative space in the dark sky. Clean condensed ivory typography in the upper left: large exact title “FIRST LIGHT / LAST PICK”; smaller artist name directly beneath: “NADIA SERRANO”. Typography should feel editorial and integrated, with generous tracking and no additional wording. Flat final cover art only, edge-to-edge image, not a physical record mockup.',
  negativePrompt: 'fantasy creatures, magical glow, ornate costumes, oversaturated neon, daytime sunlight, city skyline, staged fashion poses, crowded scene, duplicated workers, distorted hands, illegible lettering, misspelled title, extra text, logos, border, vinyl record, CD case, product mockup, app interface, watermark',
  width: 1600,
  height: 1024
})
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:wan@2.6-image",
            "positivePrompt": "Finished landscape album cover artwork for an experimental folk-electronic record titled “FIRST LIGHT / LAST PICK” by “NADIA SERRANO”. A cinematic documentary photograph of a nocturnal saffron harvest in rural Spain just before dawn: a vast field of deep violet crocuses receding into low blue fog, five farm workers spaced naturally across the rows, kneeling and carefully gathering flowers into shallow wicker baskets. Their practical dark workwear and small amber headlamps create warm points of light against the cold landscape. In the foreground, dew-covered crocus petals and vivid red saffron threads are rendered with tactile macro detail; the middle distance shows human activity clearly; distant low hills dissolve into mist beneath a charcoal-indigo sky. One old utility vehicle sits far off with soft headlights glowing through the haze. Quiet, patient, grounded mood rather than romantic fantasy. Sophisticated contemporary music photography, restrained analog grain, subtle halation around lamps, rich violet, ink blue, rust red and warm amber palette, deep tonal range, natural faces and hands, coherent agricultural details. Strong panoramic composition with the horizon in the upper third and intentional negative space in the dark sky. Clean condensed ivory typography in the upper left: large exact title “FIRST LIGHT / LAST PICK”; smaller artist name directly beneath: “NADIA SERRANO”. Typography should feel editorial and integrated, with generous tracking and no additional wording. Flat final cover art only, edge-to-edge image, not a physical record mockup.",
            "negativePrompt": "fantasy creatures, magical glow, ornate costumes, oversaturated neon, daytime sunlight, city skyline, staged fashion poses, crowded scene, duplicated workers, distorted hands, illegible lettering, misspelled title, extra text, logos, border, vinyl record, CD case, product mockup, app interface, watermark",
            "width": 1600,
            "height": 1024
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "755d17d0-422c-4986-8dbe-f6957d4fc89b",
      "model": "alibaba:wan@2.6-image",
      "positivePrompt": "Finished landscape album cover artwork for an experimental folk-electronic record titled “FIRST LIGHT / LAST PICK” by “NADIA SERRANO”. A cinematic documentary photograph of a nocturnal saffron harvest in rural Spain just before dawn: a vast field of deep violet crocuses receding into low blue fog, five farm workers spaced naturally across the rows, kneeling and carefully gathering flowers into shallow wicker baskets. Their practical dark workwear and small amber headlamps create warm points of light against the cold landscape. In the foreground, dew-covered crocus petals and vivid red saffron threads are rendered with tactile macro detail; the middle distance shows human activity clearly; distant low hills dissolve into mist beneath a charcoal-indigo sky. One old utility vehicle sits far off with soft headlights glowing through the haze. Quiet, patient, grounded mood rather than romantic fantasy. Sophisticated contemporary music photography, restrained analog grain, subtle halation around lamps, rich violet, ink blue, rust red and warm amber palette, deep tonal range, natural faces and hands, coherent agricultural details. Strong panoramic composition with the horizon in the upper third and intentional negative space in the dark sky. Clean condensed ivory typography in the upper left: large exact title “FIRST LIGHT / LAST PICK”; smaller artist name directly beneath: “NADIA SERRANO”. Typography should feel editorial and integrated, with generous tracking and no additional wording. Flat final cover art only, edge-to-edge image, not a physical record mockup.",
      "negativePrompt": "fantasy creatures, magical glow, ornate costumes, oversaturated neon, daytime sunlight, city skyline, staged fashion poses, crowded scene, duplicated workers, distorted hands, illegible lettering, misspelled title, extra text, logos, border, vinyl record, CD case, product mockup, app interface, watermark",
      "width": 1600,
      "height": 1024
    }
  ]'
runware run alibaba:wan@2.6-image \
  positivePrompt="Finished landscape album cover artwork for an experimental folk-electronic record titled “FIRST LIGHT / LAST PICK” by “NADIA SERRANO”. A cinematic documentary photograph of a nocturnal saffron harvest in rural Spain just before dawn: a vast field of deep violet crocuses receding into low blue fog, five farm workers spaced naturally across the rows, kneeling and carefully gathering flowers into shallow wicker baskets. Their practical dark workwear and small amber headlamps create warm points of light against the cold landscape. In the foreground, dew-covered crocus petals and vivid red saffron threads are rendered with tactile macro detail; the middle distance shows human activity clearly; distant low hills dissolve into mist beneath a charcoal-indigo sky. One old utility vehicle sits far off with soft headlights glowing through the haze. Quiet, patient, grounded mood rather than romantic fantasy. Sophisticated contemporary music photography, restrained analog grain, subtle halation around lamps, rich violet, ink blue, rust red and warm amber palette, deep tonal range, natural faces and hands, coherent agricultural details. Strong panoramic composition with the horizon in the upper third and intentional negative space in the dark sky. Clean condensed ivory typography in the upper left: large exact title “FIRST LIGHT / LAST PICK”; smaller artist name directly beneath: “NADIA SERRANO”. Typography should feel editorial and integrated, with generous tracking and no additional wording. Flat final cover art only, edge-to-edge image, not a physical record mockup." \
  negativePrompt="fantasy creatures, magical glow, ornate costumes, oversaturated neon, daytime sunlight, city skyline, staged fashion poses, crowded scene, duplicated workers, distorted hands, illegible lettering, misspelled title, extra text, logos, border, vinyl record, CD case, product mockup, app interface, watermark" \
  width=1600 \
  height=1024
{
  "taskType": "imageInference",
  "taskUUID": "755d17d0-422c-4986-8dbe-f6957d4fc89b",
  "model": "alibaba:wan@2.6-image",
  "positivePrompt": "Finished landscape album cover artwork for an experimental folk-electronic record titled “FIRST LIGHT / LAST PICK” by “NADIA SERRANO”. A cinematic documentary photograph of a nocturnal saffron harvest in rural Spain just before dawn: a vast field of deep violet crocuses receding into low blue fog, five farm workers spaced naturally across the rows, kneeling and carefully gathering flowers into shallow wicker baskets. Their practical dark workwear and small amber headlamps create warm points of light against the cold landscape. In the foreground, dew-covered crocus petals and vivid red saffron threads are rendered with tactile macro detail; the middle distance shows human activity clearly; distant low hills dissolve into mist beneath a charcoal-indigo sky. One old utility vehicle sits far off with soft headlights glowing through the haze. Quiet, patient, grounded mood rather than romantic fantasy. Sophisticated contemporary music photography, restrained analog grain, subtle halation around lamps, rich violet, ink blue, rust red and warm amber palette, deep tonal range, natural faces and hands, coherent agricultural details. Strong panoramic composition with the horizon in the upper third and intentional negative space in the dark sky. Clean condensed ivory typography in the upper left: large exact title “FIRST LIGHT / LAST PICK”; smaller artist name directly beneath: “NADIA SERRANO”. Typography should feel editorial and integrated, with generous tracking and no additional wording. Flat final cover art only, edge-to-edge image, not a physical record mockup.",
  "negativePrompt": "fantasy creatures, magical glow, ornate costumes, oversaturated neon, daytime sunlight, city skyline, staged fashion poses, crowded scene, duplicated workers, distorted hands, illegible lettering, misspelled title, extra text, logos, border, vinyl record, CD case, product mockup, app interface, watermark",
  "width": 1600,
  "height": 1024
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "755d17d0-422c-4986-8dbe-f6957d4fc89b",
  "imageUUID": "49548190-a027-4b7a-8399-3b79656f26e4",
  "imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/3/ii/49548190-a027-4b7a-8399-3b79656f26e4.jpg",
  "seed": 267758315,
  "cost": 0.03
}

reference-to-image

Paleobotanist Linocut Profile Avatar$0.03~13s
Paleobotanist Linocut Profile Avatar

Create a finished stylized professional profile avatar for a paleobotany researcher and science communicator. Use reference image 1 strictly as the identity anchor: preserve the person’s recognizable facial structure, skin tone, close-cropped curls, round dark-green glasses, expressive eyes, subtle tooth gap, age, and calm confident presence. Use reference image 2 strictly as the art-direction anchor: translate its hand-carved linocut contours, imperfect ink registration, fibrous paper texture, fern motifs, geological layers, and restrained inky-plum, terracotta, celery-green, charcoal, and cream palette into the portrait. Do not copy a face or composition from reference 2. Head-and-shoulders three-quarter portrait, subject looking directly toward the viewer with a slight intelligent half-smile, wearing a practical clay-colored field jacket with a small fossil-fern enamel pin. Render the face with flattering graphic simplification while retaining precise likeness and natural skin character. Surround the silhouette with an elegant circular arrangement of fossil fronds and stratigraphic bands, like a contemporary science-editorial emblem. Tall 1024x1600 composition with generous breathing room; keep the face large, centered, and entirely safe within a central square crop for profile-picture use. Crisp silhouette, balanced negative space, tactile printmaking detail, sophisticated museum-publication quality, warm and grounded rather than whimsical. Standalone artwork only, no frame, no mockup, no typography, no logo, no interface elements.

Try in Playground
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:wan@2.6-image',
  positivePrompt: 'Create a finished stylized professional profile avatar for a paleobotany researcher and science communicator. Use reference image 1 strictly as the identity anchor: preserve the person’s recognizable facial structure, skin tone, close-cropped curls, round dark-green glasses, expressive eyes, subtle tooth gap, age, and calm confident presence. Use reference image 2 strictly as the art-direction anchor: translate its hand-carved linocut contours, imperfect ink registration, fibrous paper texture, fern motifs, geological layers, and restrained inky-plum, terracotta, celery-green, charcoal, and cream palette into the portrait. Do not copy a face or composition from reference 2.\n\nHead-and-shoulders three-quarter portrait, subject looking directly toward the viewer with a slight intelligent half-smile, wearing a practical clay-colored field jacket with a small fossil-fern enamel pin. Render the face with flattering graphic simplification while retaining precise likeness and natural skin character. Surround the silhouette with an elegant circular arrangement of fossil fronds and stratigraphic bands, like a contemporary science-editorial emblem. Tall 1024x1600 composition with generous breathing room; keep the face large, centered, and entirely safe within a central square crop for profile-picture use. Crisp silhouette, balanced negative space, tactile printmaking detail, sophisticated museum-publication quality, warm and grounded rather than whimsical. Standalone artwork only, no frame, no mockup, no typography, no logo, no interface elements.',
  negativePrompt: 'Photorealism, generic face, altered ethnicity, changed age, missing glasses, exaggerated caricature, fantasy costume, steampunk elements, laboratory clichés, busy scenery, harsh neon colors, glossy 3D rendering, text, letters, watermark, logo, border, app interface, cropped head, obscured face, distorted features, asymmetrical eyes, extra accessories.',
  width: 1024,
  height: 1600,
  providerSettings: {
    alibaba: {
      promptExtend: false
    }
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/6f3e4738-1286-46e5-9219-f5d81acf750c.jpg',
      'https://assets.runware.ai/assets/inputs/35122f95-26d3-42f0-be29-db1256926ad3.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:wan@2.6-image",
            "positivePrompt": "Create a finished stylized professional profile avatar for a paleobotany researcher and science communicator. Use reference image 1 strictly as the identity anchor: preserve the person’s recognizable facial structure, skin tone, close-cropped curls, round dark-green glasses, expressive eyes, subtle tooth gap, age, and calm confident presence. Use reference image 2 strictly as the art-direction anchor: translate its hand-carved linocut contours, imperfect ink registration, fibrous paper texture, fern motifs, geological layers, and restrained inky-plum, terracotta, celery-green, charcoal, and cream palette into the portrait. Do not copy a face or composition from reference 2.\n\nHead-and-shoulders three-quarter portrait, subject looking directly toward the viewer with a slight intelligent half-smile, wearing a practical clay-colored field jacket with a small fossil-fern enamel pin. Render the face with flattering graphic simplification while retaining precise likeness and natural skin character. Surround the silhouette with an elegant circular arrangement of fossil fronds and stratigraphic bands, like a contemporary science-editorial emblem. Tall 1024x1600 composition with generous breathing room; keep the face large, centered, and entirely safe within a central square crop for profile-picture use. Crisp silhouette, balanced negative space, tactile printmaking detail, sophisticated museum-publication quality, warm and grounded rather than whimsical. Standalone artwork only, no frame, no mockup, no typography, no logo, no interface elements.",
            "negativePrompt": "Photorealism, generic face, altered ethnicity, changed age, missing glasses, exaggerated caricature, fantasy costume, steampunk elements, laboratory clichés, busy scenery, harsh neon colors, glossy 3D rendering, text, letters, watermark, logo, border, app interface, cropped head, obscured face, distorted features, asymmetrical eyes, extra accessories.",
            "width": 1024,
            "height": 1600,
            "providerSettings": {
                "alibaba": {
                    "promptExtend": False
                }
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/6f3e4738-1286-46e5-9219-f5d81acf750c.jpg",
                    "https://assets.runware.ai/assets/inputs/35122f95-26d3-42f0-be29-db1256926ad3.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": "1c58b435-5ab7-48c6-baa1-98e6aff55727",
      "model": "alibaba:wan@2.6-image",
      "positivePrompt": "Create a finished stylized professional profile avatar for a paleobotany researcher and science communicator. Use reference image 1 strictly as the identity anchor: preserve the person’s recognizable facial structure, skin tone, close-cropped curls, round dark-green glasses, expressive eyes, subtle tooth gap, age, and calm confident presence. Use reference image 2 strictly as the art-direction anchor: translate its hand-carved linocut contours, imperfect ink registration, fibrous paper texture, fern motifs, geological layers, and restrained inky-plum, terracotta, celery-green, charcoal, and cream palette into the portrait. Do not copy a face or composition from reference 2.\n\nHead-and-shoulders three-quarter portrait, subject looking directly toward the viewer with a slight intelligent half-smile, wearing a practical clay-colored field jacket with a small fossil-fern enamel pin. Render the face with flattering graphic simplification while retaining precise likeness and natural skin character. Surround the silhouette with an elegant circular arrangement of fossil fronds and stratigraphic bands, like a contemporary science-editorial emblem. Tall 1024x1600 composition with generous breathing room; keep the face large, centered, and entirely safe within a central square crop for profile-picture use. Crisp silhouette, balanced negative space, tactile printmaking detail, sophisticated museum-publication quality, warm and grounded rather than whimsical. Standalone artwork only, no frame, no mockup, no typography, no logo, no interface elements.",
      "negativePrompt": "Photorealism, generic face, altered ethnicity, changed age, missing glasses, exaggerated caricature, fantasy costume, steampunk elements, laboratory clichés, busy scenery, harsh neon colors, glossy 3D rendering, text, letters, watermark, logo, border, app interface, cropped head, obscured face, distorted features, asymmetrical eyes, extra accessories.",
      "width": 1024,
      "height": 1600,
      "providerSettings": {
        "alibaba": {
          "promptExtend": false
        }
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/6f3e4738-1286-46e5-9219-f5d81acf750c.jpg",
          "https://assets.runware.ai/assets/inputs/35122f95-26d3-42f0-be29-db1256926ad3.jpg"
        ]
      }
    }
  ]'
runware run alibaba:wan@2.6-image \
  positivePrompt="Create a finished stylized professional profile avatar for a paleobotany researcher and science communicator. Use reference image 1 strictly as the identity anchor: preserve the person’s recognizable facial structure, skin tone, close-cropped curls, round dark-green glasses, expressive eyes, subtle tooth gap, age, and calm confident presence. Use reference image 2 strictly as the art-direction anchor: translate its hand-carved linocut contours, imperfect ink registration, fibrous paper texture, fern motifs, geological layers, and restrained inky-plum, terracotta, celery-green, charcoal, and cream palette into the portrait. Do not copy a face or composition from reference 2.

Head-and-shoulders three-quarter portrait, subject looking directly toward the viewer with a slight intelligent half-smile, wearing a practical clay-colored field jacket with a small fossil-fern enamel pin. Render the face with flattering graphic simplification while retaining precise likeness and natural skin character. Surround the silhouette with an elegant circular arrangement of fossil fronds and stratigraphic bands, like a contemporary science-editorial emblem. Tall 1024x1600 composition with generous breathing room; keep the face large, centered, and entirely safe within a central square crop for profile-picture use. Crisp silhouette, balanced negative space, tactile printmaking detail, sophisticated museum-publication quality, warm and grounded rather than whimsical. Standalone artwork only, no frame, no mockup, no typography, no logo, no interface elements." \
  negativePrompt="Photorealism, generic face, altered ethnicity, changed age, missing glasses, exaggerated caricature, fantasy costume, steampunk elements, laboratory clichés, busy scenery, harsh neon colors, glossy 3D rendering, text, letters, watermark, logo, border, app interface, cropped head, obscured face, distorted features, asymmetrical eyes, extra accessories." \
  width=1024 \
  height=1600 \
  providerSettings.alibaba.promptExtend=false \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/6f3e4738-1286-46e5-9219-f5d81acf750c.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/35122f95-26d3-42f0-be29-db1256926ad3.jpg
{
  "taskType": "imageInference",
  "taskUUID": "1c58b435-5ab7-48c6-baa1-98e6aff55727",
  "model": "alibaba:wan@2.6-image",
  "positivePrompt": "Create a finished stylized professional profile avatar for a paleobotany researcher and science communicator. Use reference image 1 strictly as the identity anchor: preserve the person’s recognizable facial structure, skin tone, close-cropped curls, round dark-green glasses, expressive eyes, subtle tooth gap, age, and calm confident presence. Use reference image 2 strictly as the art-direction anchor: translate its hand-carved linocut contours, imperfect ink registration, fibrous paper texture, fern motifs, geological layers, and restrained inky-plum, terracotta, celery-green, charcoal, and cream palette into the portrait. Do not copy a face or composition from reference 2.\n\nHead-and-shoulders three-quarter portrait, subject looking directly toward the viewer with a slight intelligent half-smile, wearing a practical clay-colored field jacket with a small fossil-fern enamel pin. Render the face with flattering graphic simplification while retaining precise likeness and natural skin character. Surround the silhouette with an elegant circular arrangement of fossil fronds and stratigraphic bands, like a contemporary science-editorial emblem. Tall 1024x1600 composition with generous breathing room; keep the face large, centered, and entirely safe within a central square crop for profile-picture use. Crisp silhouette, balanced negative space, tactile printmaking detail, sophisticated museum-publication quality, warm and grounded rather than whimsical. Standalone artwork only, no frame, no mockup, no typography, no logo, no interface elements.",
  "negativePrompt": "Photorealism, generic face, altered ethnicity, changed age, missing glasses, exaggerated caricature, fantasy costume, steampunk elements, laboratory clichés, busy scenery, harsh neon colors, glossy 3D rendering, text, letters, watermark, logo, border, app interface, cropped head, obscured face, distorted features, asymmetrical eyes, extra accessories.",
  "width": 1024,
  "height": 1600,
  "providerSettings": {
    "alibaba": {
      "promptExtend": false
    }
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/6f3e4738-1286-46e5-9219-f5d81acf750c.jpg",
      "https://assets.runware.ai/assets/inputs/35122f95-26d3-42f0-be29-db1256926ad3.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "1c58b435-5ab7-48c6-baa1-98e6aff55727",
  "imageUUID": "39ded29a-d3bf-4a30-88fe-ee2282eb71ff",
  "imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/39ded29a-d3bf-4a30-88fe-ee2282eb71ff.jpg",
  "seed": 1472145715,
  "cost": 0.03
}

reference-to-image

Storm Chaser Broadcast Avatar$0.03~17s
Storm Chaser Broadcast Avatar

Create a premium stylized profile avatar for a professional severe-weather livestreamer. Use reference image 1 as the strict identity anchor: preserve the subject’s recognizable facial structure, warm brown complexion, short wavy black hair with its single silver streak, round dark glasses, nose ring, age and calm, capable expression. Use reference image 2 as the environment and lighting anchor: place them inside the storm-chasing command van, with simplified radar screens and radio hardware behind them, and echo the cobalt storm light, safety-orange equipment glow and distant supercell visible through the side window. Render the final portrait as sophisticated editorial vector art with screen-printed texture: crisp geometric shadow shapes, restrained halftone grain, bold cobalt blue, charcoal, warm cream and signal orange palette. Chest-up, nearly frontal pose, slight three-quarter turn, direct eye contact, face dominant and unobstructed. Give the subject a dark field jacket with one small orange reflective tab and a compact radio microphone clipped near the collar. Frame loosely enough for the full 1024x1600 portrait while keeping the head and shoulders inside a central square and circular avatar-safe area. Strong silhouette, clean separation from the equipment, subtle storm-energy arcs derived from radar contours, confident and analytical rather than heroic or sensational. Polished creator-brand artwork, no lettering, no logo, no watermark.

Try in Playground
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:wan@2.6-image',
  positivePrompt: 'Create a premium stylized profile avatar for a professional severe-weather livestreamer. Use reference image 1 as the strict identity anchor: preserve the subject’s recognizable facial structure, warm brown complexion, short wavy black hair with its single silver streak, round dark glasses, nose ring, age and calm, capable expression. Use reference image 2 as the environment and lighting anchor: place them inside the storm-chasing command van, with simplified radar screens and radio hardware behind them, and echo the cobalt storm light, safety-orange equipment glow and distant supercell visible through the side window.\n\nRender the final portrait as sophisticated editorial vector art with screen-printed texture: crisp geometric shadow shapes, restrained halftone grain, bold cobalt blue, charcoal, warm cream and signal orange palette. Chest-up, nearly frontal pose, slight three-quarter turn, direct eye contact, face dominant and unobstructed. Give the subject a dark field jacket with one small orange reflective tab and a compact radio microphone clipped near the collar. Frame loosely enough for the full 1024x1600 portrait while keeping the head and shoulders inside a central square and circular avatar-safe area. Strong silhouette, clean separation from the equipment, subtle storm-energy arcs derived from radar contours, confident and analytical rather than heroic or sensational. Polished creator-brand artwork, no lettering, no logo, no watermark.',
  negativePrompt: 'Photorealistic rendering, generic face, changed identity, extra people, duplicated glasses, obscured eyes, exaggerated superhero pose, disaster spectacle, lightning crossing the face, cluttered composition, illegible interface text, typography, logo, watermark, deformed hands, distorted equipment, childish cartoon style, neon rainbow palette.',
  width: 1024,
  height: 1600,
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/2368c8be-58b7-46fd-9aff-11cf4141152f.jpg',
      'https://assets.runware.ai/assets/inputs/ad179cf0-3a33-4cb6-9f2f-c7d16e84e811.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:wan@2.6-image",
            "positivePrompt": "Create a premium stylized profile avatar for a professional severe-weather livestreamer. Use reference image 1 as the strict identity anchor: preserve the subject’s recognizable facial structure, warm brown complexion, short wavy black hair with its single silver streak, round dark glasses, nose ring, age and calm, capable expression. Use reference image 2 as the environment and lighting anchor: place them inside the storm-chasing command van, with simplified radar screens and radio hardware behind them, and echo the cobalt storm light, safety-orange equipment glow and distant supercell visible through the side window.\n\nRender the final portrait as sophisticated editorial vector art with screen-printed texture: crisp geometric shadow shapes, restrained halftone grain, bold cobalt blue, charcoal, warm cream and signal orange palette. Chest-up, nearly frontal pose, slight three-quarter turn, direct eye contact, face dominant and unobstructed. Give the subject a dark field jacket with one small orange reflective tab and a compact radio microphone clipped near the collar. Frame loosely enough for the full 1024x1600 portrait while keeping the head and shoulders inside a central square and circular avatar-safe area. Strong silhouette, clean separation from the equipment, subtle storm-energy arcs derived from radar contours, confident and analytical rather than heroic or sensational. Polished creator-brand artwork, no lettering, no logo, no watermark.",
            "negativePrompt": "Photorealistic rendering, generic face, changed identity, extra people, duplicated glasses, obscured eyes, exaggerated superhero pose, disaster spectacle, lightning crossing the face, cluttered composition, illegible interface text, typography, logo, watermark, deformed hands, distorted equipment, childish cartoon style, neon rainbow palette.",
            "width": 1024,
            "height": 1600,
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/2368c8be-58b7-46fd-9aff-11cf4141152f.jpg",
                    "https://assets.runware.ai/assets/inputs/ad179cf0-3a33-4cb6-9f2f-c7d16e84e811.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": "d2fc25ff-2a87-4751-9d4e-33a60e6a9905",
      "model": "alibaba:wan@2.6-image",
      "positivePrompt": "Create a premium stylized profile avatar for a professional severe-weather livestreamer. Use reference image 1 as the strict identity anchor: preserve the subject’s recognizable facial structure, warm brown complexion, short wavy black hair with its single silver streak, round dark glasses, nose ring, age and calm, capable expression. Use reference image 2 as the environment and lighting anchor: place them inside the storm-chasing command van, with simplified radar screens and radio hardware behind them, and echo the cobalt storm light, safety-orange equipment glow and distant supercell visible through the side window.\n\nRender the final portrait as sophisticated editorial vector art with screen-printed texture: crisp geometric shadow shapes, restrained halftone grain, bold cobalt blue, charcoal, warm cream and signal orange palette. Chest-up, nearly frontal pose, slight three-quarter turn, direct eye contact, face dominant and unobstructed. Give the subject a dark field jacket with one small orange reflective tab and a compact radio microphone clipped near the collar. Frame loosely enough for the full 1024x1600 portrait while keeping the head and shoulders inside a central square and circular avatar-safe area. Strong silhouette, clean separation from the equipment, subtle storm-energy arcs derived from radar contours, confident and analytical rather than heroic or sensational. Polished creator-brand artwork, no lettering, no logo, no watermark.",
      "negativePrompt": "Photorealistic rendering, generic face, changed identity, extra people, duplicated glasses, obscured eyes, exaggerated superhero pose, disaster spectacle, lightning crossing the face, cluttered composition, illegible interface text, typography, logo, watermark, deformed hands, distorted equipment, childish cartoon style, neon rainbow palette.",
      "width": 1024,
      "height": 1600,
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/2368c8be-58b7-46fd-9aff-11cf4141152f.jpg",
          "https://assets.runware.ai/assets/inputs/ad179cf0-3a33-4cb6-9f2f-c7d16e84e811.jpg"
        ]
      }
    }
  ]'
runware run alibaba:wan@2.6-image \
  positivePrompt="Create a premium stylized profile avatar for a professional severe-weather livestreamer. Use reference image 1 as the strict identity anchor: preserve the subject’s recognizable facial structure, warm brown complexion, short wavy black hair with its single silver streak, round dark glasses, nose ring, age and calm, capable expression. Use reference image 2 as the environment and lighting anchor: place them inside the storm-chasing command van, with simplified radar screens and radio hardware behind them, and echo the cobalt storm light, safety-orange equipment glow and distant supercell visible through the side window.

Render the final portrait as sophisticated editorial vector art with screen-printed texture: crisp geometric shadow shapes, restrained halftone grain, bold cobalt blue, charcoal, warm cream and signal orange palette. Chest-up, nearly frontal pose, slight three-quarter turn, direct eye contact, face dominant and unobstructed. Give the subject a dark field jacket with one small orange reflective tab and a compact radio microphone clipped near the collar. Frame loosely enough for the full 1024x1600 portrait while keeping the head and shoulders inside a central square and circular avatar-safe area. Strong silhouette, clean separation from the equipment, subtle storm-energy arcs derived from radar contours, confident and analytical rather than heroic or sensational. Polished creator-brand artwork, no lettering, no logo, no watermark." \
  negativePrompt="Photorealistic rendering, generic face, changed identity, extra people, duplicated glasses, obscured eyes, exaggerated superhero pose, disaster spectacle, lightning crossing the face, cluttered composition, illegible interface text, typography, logo, watermark, deformed hands, distorted equipment, childish cartoon style, neon rainbow palette." \
  width=1024 \
  height=1600 \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/2368c8be-58b7-46fd-9aff-11cf4141152f.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/ad179cf0-3a33-4cb6-9f2f-c7d16e84e811.jpg
{
  "taskType": "imageInference",
  "taskUUID": "d2fc25ff-2a87-4751-9d4e-33a60e6a9905",
  "model": "alibaba:wan@2.6-image",
  "positivePrompt": "Create a premium stylized profile avatar for a professional severe-weather livestreamer. Use reference image 1 as the strict identity anchor: preserve the subject’s recognizable facial structure, warm brown complexion, short wavy black hair with its single silver streak, round dark glasses, nose ring, age and calm, capable expression. Use reference image 2 as the environment and lighting anchor: place them inside the storm-chasing command van, with simplified radar screens and radio hardware behind them, and echo the cobalt storm light, safety-orange equipment glow and distant supercell visible through the side window.\n\nRender the final portrait as sophisticated editorial vector art with screen-printed texture: crisp geometric shadow shapes, restrained halftone grain, bold cobalt blue, charcoal, warm cream and signal orange palette. Chest-up, nearly frontal pose, slight three-quarter turn, direct eye contact, face dominant and unobstructed. Give the subject a dark field jacket with one small orange reflective tab and a compact radio microphone clipped near the collar. Frame loosely enough for the full 1024x1600 portrait while keeping the head and shoulders inside a central square and circular avatar-safe area. Strong silhouette, clean separation from the equipment, subtle storm-energy arcs derived from radar contours, confident and analytical rather than heroic or sensational. Polished creator-brand artwork, no lettering, no logo, no watermark.",
  "negativePrompt": "Photorealistic rendering, generic face, changed identity, extra people, duplicated glasses, obscured eyes, exaggerated superhero pose, disaster spectacle, lightning crossing the face, cluttered composition, illegible interface text, typography, logo, watermark, deformed hands, distorted equipment, childish cartoon style, neon rainbow palette.",
  "width": 1024,
  "height": 1600,
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/2368c8be-58b7-46fd-9aff-11cf4141152f.jpg",
      "https://assets.runware.ai/assets/inputs/ad179cf0-3a33-4cb6-9f2f-c7d16e84e811.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "d2fc25ff-2a87-4751-9d4e-33a60e6a9905",
  "imageUUID": "1b989eb4-0c45-4ea1-8772-e560e229ced4",
  "imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/1b989eb4-0c45-4ea1-8772-e560e229ced4.jpg",
  "seed": 1264337072,
  "cost": 0.03
}