live
MODEL IDxai:grok-imagine@image-2.0

Grok Imagine Image 2.0

xAI
by

Grok Imagine Image 2.0 is xAI's next-generation image generation and editing model for both text-to-image and prompt-guided image transformation. It keeps the same core workflow as the current Grok Imagine image family, including aspect-ratio control and image-based editing, while adding a dedicated quality parameter so teams can tune output fidelity within the same API shape. It is a strong fit for creative production pipelines that want one Grok image endpoint for generation, editing, and quality-sensitive iteration without switching to a separate model family.

Grok Imagine Image 2.0

text-to-image

Concert Harp Auction Cutout$0.06~1m 54s
Concert Harp Auction Cutout

Finished auction-catalog product photograph of one full-size antique concert harp, completely isolated against a smooth warm ivory seamless studio background as if its original cluttered surroundings were professionally removed and replaced. Show the entire harp from crown to feet in a refined three-quarter view, centered with generous negative space and no cropping. Dark walnut sound box, restrained hand-gilded neoclassical ornament, visible red and blue strings, brass mechanisms, subtle signs of authentic age and careful restoration. Preserve crisp, natural edges around every string, pedal, carved flourish, and narrow gap. Large diffused key light from upper left, gentle fill, realistic soft contact shadow directly beneath the feet, accurate wood and metal reflections. High-end European auction-house photography, understated, archival, color-accurate, photorealistic. No people, furniture, props, text, labels, borders, showroom interior, or decorative scenery.

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: 'xai:grok-imagine@image-2.0',
  positivePrompt: 'Finished auction-catalog product photograph of one full-size antique concert harp, completely isolated against a smooth warm ivory seamless studio background as if its original cluttered surroundings were professionally removed and replaced. Show the entire harp from crown to feet in a refined three-quarter view, centered with generous negative space and no cropping. Dark walnut sound box, restrained hand-gilded neoclassical ornament, visible red and blue strings, brass mechanisms, subtle signs of authentic age and careful restoration. Preserve crisp, natural edges around every string, pedal, carved flourish, and narrow gap. Large diffused key light from upper left, gentle fill, realistic soft contact shadow directly beneath the feet, accurate wood and metal reflections. High-end European auction-house photography, understated, archival, color-accurate, photorealistic. No people, furniture, props, text, labels, borders, showroom interior, or decorative scenery.',
  width: 1248,
  height: 832,
  settings: {
    quality: 'medium'
  }
})
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": "xai:grok-imagine@image-2.0",
            "positivePrompt": "Finished auction-catalog product photograph of one full-size antique concert harp, completely isolated against a smooth warm ivory seamless studio background as if its original cluttered surroundings were professionally removed and replaced. Show the entire harp from crown to feet in a refined three-quarter view, centered with generous negative space and no cropping. Dark walnut sound box, restrained hand-gilded neoclassical ornament, visible red and blue strings, brass mechanisms, subtle signs of authentic age and careful restoration. Preserve crisp, natural edges around every string, pedal, carved flourish, and narrow gap. Large diffused key light from upper left, gentle fill, realistic soft contact shadow directly beneath the feet, accurate wood and metal reflections. High-end European auction-house photography, understated, archival, color-accurate, photorealistic. No people, furniture, props, text, labels, borders, showroom interior, or decorative scenery.",
            "width": 1248,
            "height": 832,
            "settings": {
                "quality": "medium"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "3723f5e8-9b64-42bc-a2ab-6c4a363d591e",
      "model": "xai:grok-imagine@image-2.0",
      "positivePrompt": "Finished auction-catalog product photograph of one full-size antique concert harp, completely isolated against a smooth warm ivory seamless studio background as if its original cluttered surroundings were professionally removed and replaced. Show the entire harp from crown to feet in a refined three-quarter view, centered with generous negative space and no cropping. Dark walnut sound box, restrained hand-gilded neoclassical ornament, visible red and blue strings, brass mechanisms, subtle signs of authentic age and careful restoration. Preserve crisp, natural edges around every string, pedal, carved flourish, and narrow gap. Large diffused key light from upper left, gentle fill, realistic soft contact shadow directly beneath the feet, accurate wood and metal reflections. High-end European auction-house photography, understated, archival, color-accurate, photorealistic. No people, furniture, props, text, labels, borders, showroom interior, or decorative scenery.",
      "width": 1248,
      "height": 832,
      "settings": {
        "quality": "medium"
      }
    }
  ]'
runware run xai:grok-imagine@image-2.0 \
  positivePrompt="Finished auction-catalog product photograph of one full-size antique concert harp, completely isolated against a smooth warm ivory seamless studio background as if its original cluttered surroundings were professionally removed and replaced. Show the entire harp from crown to feet in a refined three-quarter view, centered with generous negative space and no cropping. Dark walnut sound box, restrained hand-gilded neoclassical ornament, visible red and blue strings, brass mechanisms, subtle signs of authentic age and careful restoration. Preserve crisp, natural edges around every string, pedal, carved flourish, and narrow gap. Large diffused key light from upper left, gentle fill, realistic soft contact shadow directly beneath the feet, accurate wood and metal reflections. High-end European auction-house photography, understated, archival, color-accurate, photorealistic. No people, furniture, props, text, labels, borders, showroom interior, or decorative scenery." \
  width=1248 \
  height=832 \
  settings.quality=medium
{
  "taskType": "imageInference",
  "taskUUID": "3723f5e8-9b64-42bc-a2ab-6c4a363d591e",
  "model": "xai:grok-imagine@image-2.0",
  "positivePrompt": "Finished auction-catalog product photograph of one full-size antique concert harp, completely isolated against a smooth warm ivory seamless studio background as if its original cluttered surroundings were professionally removed and replaced. Show the entire harp from crown to feet in a refined three-quarter view, centered with generous negative space and no cropping. Dark walnut sound box, restrained hand-gilded neoclassical ornament, visible red and blue strings, brass mechanisms, subtle signs of authentic age and careful restoration. Preserve crisp, natural edges around every string, pedal, carved flourish, and narrow gap. Large diffused key light from upper left, gentle fill, realistic soft contact shadow directly beneath the feet, accurate wood and metal reflections. High-end European auction-house photography, understated, archival, color-accurate, photorealistic. No people, furniture, props, text, labels, borders, showroom interior, or decorative scenery.",
  "width": 1248,
  "height": 832,
  "settings": {
    "quality": "medium"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "3723f5e8-9b64-42bc-a2ab-6c4a363d591e",
  "imageUUID": "7dbcc0d9-9063-40f4-ac1d-212c880e6179",
  "imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/7dbcc0d9-9063-40f4-ac1d-212c880e6179.jpg",
  "seed": 2081907977,
  "cost": 0.06
}

text-to-image

Underground Cycling Tourism Campaign Image$0.06~1m 44s
Underground Cycling Tourism Campaign Image

High-end adventure tourism campaign photography inside the historic Peca lead and zinc mine beneath Mežica, Slovenia. A helmeted mountain biker in practical dark trail gear rides through a vast wet rock tunnel toward the camera, leaning dynamically around a shallow bend while a guide follows farther behind. Warm helmet lamps and discreet amber tunnel lights carve luminous paths through cool blue-gray stone; reflections shimmer across puddles and the damp rails of an old mine track. Frame the lead cyclist in the right third, leaving the tunnel’s sweeping curve and layered geological textures visible across the landscape composition. Low camera angle near the water, crisp rider and bicycle, subtle wheel spray, believable safety equipment, atmospheric mineral haze, dramatic chiaroscuro, restrained palette of slate blue, graphite, rust, and amber. Authentic documentary detail elevated with polished European travel-editorial art direction, exhilarating but welcoming, photorealistic, natural anatomy and bicycle geometry, no lettering, no logos, no border.

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: 'xai:grok-imagine@image-2.0',
  positivePrompt: 'High-end adventure tourism campaign photography inside the historic Peca lead and zinc mine beneath Mežica, Slovenia. A helmeted mountain biker in practical dark trail gear rides through a vast wet rock tunnel toward the camera, leaning dynamically around a shallow bend while a guide follows farther behind. Warm helmet lamps and discreet amber tunnel lights carve luminous paths through cool blue-gray stone; reflections shimmer across puddles and the damp rails of an old mine track. Frame the lead cyclist in the right third, leaving the tunnel’s sweeping curve and layered geological textures visible across the landscape composition. Low camera angle near the water, crisp rider and bicycle, subtle wheel spray, believable safety equipment, atmospheric mineral haze, dramatic chiaroscuro, restrained palette of slate blue, graphite, rust, and amber. Authentic documentary detail elevated with polished European travel-editorial art direction, exhilarating but welcoming, photorealistic, natural anatomy and bicycle geometry, no lettering, no logos, no border.',
  width: 1248,
  height: 832,
  settings: {
    quality: 'medium'
  }
})
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": "xai:grok-imagine@image-2.0",
            "positivePrompt": "High-end adventure tourism campaign photography inside the historic Peca lead and zinc mine beneath Mežica, Slovenia. A helmeted mountain biker in practical dark trail gear rides through a vast wet rock tunnel toward the camera, leaning dynamically around a shallow bend while a guide follows farther behind. Warm helmet lamps and discreet amber tunnel lights carve luminous paths through cool blue-gray stone; reflections shimmer across puddles and the damp rails of an old mine track. Frame the lead cyclist in the right third, leaving the tunnel’s sweeping curve and layered geological textures visible across the landscape composition. Low camera angle near the water, crisp rider and bicycle, subtle wheel spray, believable safety equipment, atmospheric mineral haze, dramatic chiaroscuro, restrained palette of slate blue, graphite, rust, and amber. Authentic documentary detail elevated with polished European travel-editorial art direction, exhilarating but welcoming, photorealistic, natural anatomy and bicycle geometry, no lettering, no logos, no border.",
            "width": 1248,
            "height": 832,
            "settings": {
                "quality": "medium"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "6083c011-716f-4255-b8be-9a73a38ab0d6",
      "model": "xai:grok-imagine@image-2.0",
      "positivePrompt": "High-end adventure tourism campaign photography inside the historic Peca lead and zinc mine beneath Mežica, Slovenia. A helmeted mountain biker in practical dark trail gear rides through a vast wet rock tunnel toward the camera, leaning dynamically around a shallow bend while a guide follows farther behind. Warm helmet lamps and discreet amber tunnel lights carve luminous paths through cool blue-gray stone; reflections shimmer across puddles and the damp rails of an old mine track. Frame the lead cyclist in the right third, leaving the tunnel’s sweeping curve and layered geological textures visible across the landscape composition. Low camera angle near the water, crisp rider and bicycle, subtle wheel spray, believable safety equipment, atmospheric mineral haze, dramatic chiaroscuro, restrained palette of slate blue, graphite, rust, and amber. Authentic documentary detail elevated with polished European travel-editorial art direction, exhilarating but welcoming, photorealistic, natural anatomy and bicycle geometry, no lettering, no logos, no border.",
      "width": 1248,
      "height": 832,
      "settings": {
        "quality": "medium"
      }
    }
  ]'
runware run xai:grok-imagine@image-2.0 \
  positivePrompt="High-end adventure tourism campaign photography inside the historic Peca lead and zinc mine beneath Mežica, Slovenia. A helmeted mountain biker in practical dark trail gear rides through a vast wet rock tunnel toward the camera, leaning dynamically around a shallow bend while a guide follows farther behind. Warm helmet lamps and discreet amber tunnel lights carve luminous paths through cool blue-gray stone; reflections shimmer across puddles and the damp rails of an old mine track. Frame the lead cyclist in the right third, leaving the tunnel’s sweeping curve and layered geological textures visible across the landscape composition. Low camera angle near the water, crisp rider and bicycle, subtle wheel spray, believable safety equipment, atmospheric mineral haze, dramatic chiaroscuro, restrained palette of slate blue, graphite, rust, and amber. Authentic documentary detail elevated with polished European travel-editorial art direction, exhilarating but welcoming, photorealistic, natural anatomy and bicycle geometry, no lettering, no logos, no border." \
  width=1248 \
  height=832 \
  settings.quality=medium
{
  "taskType": "imageInference",
  "taskUUID": "6083c011-716f-4255-b8be-9a73a38ab0d6",
  "model": "xai:grok-imagine@image-2.0",
  "positivePrompt": "High-end adventure tourism campaign photography inside the historic Peca lead and zinc mine beneath Mežica, Slovenia. A helmeted mountain biker in practical dark trail gear rides through a vast wet rock tunnel toward the camera, leaning dynamically around a shallow bend while a guide follows farther behind. Warm helmet lamps and discreet amber tunnel lights carve luminous paths through cool blue-gray stone; reflections shimmer across puddles and the damp rails of an old mine track. Frame the lead cyclist in the right third, leaving the tunnel’s sweeping curve and layered geological textures visible across the landscape composition. Low camera angle near the water, crisp rider and bicycle, subtle wheel spray, believable safety equipment, atmospheric mineral haze, dramatic chiaroscuro, restrained palette of slate blue, graphite, rust, and amber. Authentic documentary detail elevated with polished European travel-editorial art direction, exhilarating but welcoming, photorealistic, natural anatomy and bicycle geometry, no lettering, no logos, no border.",
  "width": 1248,
  "height": 832,
  "settings": {
    "quality": "medium"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "6083c011-716f-4255-b8be-9a73a38ab0d6",
  "imageUUID": "6bbc71bf-fe7e-419d-a8f5-8aeaece5a026",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/6bbc71bf-fe7e-419d-a8f5-8aeaece5a026.jpg",
  "seed": 378129445,
  "cost": 0.06
}

reference-to-image

Ammonite Exhibition Gala Invitation$0.08~23s
Ammonite Exhibition Gala Invitation

Create the finished flat artwork for a premium portrait museum gala invitation, not a photographed mockup. Use reference image 1 to define the central ammonite precisely: preserve its recognizable spiral silhouette, fine rib structure, mineral texture and bronze-gold coloration. Use reference image 2 to define the surrounding visual language and environment: flowing suminagashi currents, midnight-indigo field, oxidized-copper and sea-green accents, ivory paper grain and elegant organic movement. Place the ammonite large and centered in the lower-middle of the composition, appearing to emerge from tidal rings that echo its spiral. Add restrained copper-foil-style rules and tiny scientific engraving marks for a luxurious natural-history editorial character. Maintain generous negative space and a clear formal hierarchy. Include only this exact invitation copy, set in sophisticated high-contrast serif typography with small widely tracked capitals: “MIDNIGHT TIDE” at the top, “Opening Gala” beneath it, then “18 OCTOBER 2026 · 7 PM” and “NORTH COAST NATURAL HISTORY MUSEUM” near the bottom. Moody, ceremonial and tactile, with excellent print detail and legible lettering; no envelope, hands, table, frame, UI, logos, extra text or mockup presentation.

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: 'xai:grok-imagine@image-2.0',
  positivePrompt: 'Create the finished flat artwork for a premium portrait museum gala invitation, not a photographed mockup. Use reference image 1 to define the central ammonite precisely: preserve its recognizable spiral silhouette, fine rib structure, mineral texture and bronze-gold coloration. Use reference image 2 to define the surrounding visual language and environment: flowing suminagashi currents, midnight-indigo field, oxidized-copper and sea-green accents, ivory paper grain and elegant organic movement. Place the ammonite large and centered in the lower-middle of the composition, appearing to emerge from tidal rings that echo its spiral. Add restrained copper-foil-style rules and tiny scientific engraving marks for a luxurious natural-history editorial character. Maintain generous negative space and a clear formal hierarchy. Include only this exact invitation copy, set in sophisticated high-contrast serif typography with small widely tracked capitals: “MIDNIGHT TIDE” at the top, “Opening Gala” beneath it, then “18 OCTOBER 2026 · 7 PM” and “NORTH COAST NATURAL HISTORY MUSEUM” near the bottom. Moody, ceremonial and tactile, with excellent print detail and legible lettering; no envelope, hands, table, frame, UI, logos, extra text or mockup presentation.',
  resolution: '2K',
  settings: {
    quality: 'low'
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/a2c727dd-69b3-41c1-bd48-ff73e6dab1ee.jpg',
      'https://assets.runware.ai/assets/inputs/80684144-f723-4693-98f5-c915f577bef4.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": "xai:grok-imagine@image-2.0",
            "positivePrompt": "Create the finished flat artwork for a premium portrait museum gala invitation, not a photographed mockup. Use reference image 1 to define the central ammonite precisely: preserve its recognizable spiral silhouette, fine rib structure, mineral texture and bronze-gold coloration. Use reference image 2 to define the surrounding visual language and environment: flowing suminagashi currents, midnight-indigo field, oxidized-copper and sea-green accents, ivory paper grain and elegant organic movement. Place the ammonite large and centered in the lower-middle of the composition, appearing to emerge from tidal rings that echo its spiral. Add restrained copper-foil-style rules and tiny scientific engraving marks for a luxurious natural-history editorial character. Maintain generous negative space and a clear formal hierarchy. Include only this exact invitation copy, set in sophisticated high-contrast serif typography with small widely tracked capitals: “MIDNIGHT TIDE” at the top, “Opening Gala” beneath it, then “18 OCTOBER 2026 · 7 PM” and “NORTH COAST NATURAL HISTORY MUSEUM” near the bottom. Moody, ceremonial and tactile, with excellent print detail and legible lettering; no envelope, hands, table, frame, UI, logos, extra text or mockup presentation.",
            "resolution": "2K",
            "settings": {
                "quality": "low"
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/a2c727dd-69b3-41c1-bd48-ff73e6dab1ee.jpg",
                    "https://assets.runware.ai/assets/inputs/80684144-f723-4693-98f5-c915f577bef4.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": "ae37269f-4554-4077-b6f1-0944104a08e6",
      "model": "xai:grok-imagine@image-2.0",
      "positivePrompt": "Create the finished flat artwork for a premium portrait museum gala invitation, not a photographed mockup. Use reference image 1 to define the central ammonite precisely: preserve its recognizable spiral silhouette, fine rib structure, mineral texture and bronze-gold coloration. Use reference image 2 to define the surrounding visual language and environment: flowing suminagashi currents, midnight-indigo field, oxidized-copper and sea-green accents, ivory paper grain and elegant organic movement. Place the ammonite large and centered in the lower-middle of the composition, appearing to emerge from tidal rings that echo its spiral. Add restrained copper-foil-style rules and tiny scientific engraving marks for a luxurious natural-history editorial character. Maintain generous negative space and a clear formal hierarchy. Include only this exact invitation copy, set in sophisticated high-contrast serif typography with small widely tracked capitals: “MIDNIGHT TIDE” at the top, “Opening Gala” beneath it, then “18 OCTOBER 2026 · 7 PM” and “NORTH COAST NATURAL HISTORY MUSEUM” near the bottom. Moody, ceremonial and tactile, with excellent print detail and legible lettering; no envelope, hands, table, frame, UI, logos, extra text or mockup presentation.",
      "resolution": "2K",
      "settings": {
        "quality": "low"
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/a2c727dd-69b3-41c1-bd48-ff73e6dab1ee.jpg",
          "https://assets.runware.ai/assets/inputs/80684144-f723-4693-98f5-c915f577bef4.jpg"
        ]
      }
    }
  ]'
runware run xai:grok-imagine@image-2.0 \
  positivePrompt="Create the finished flat artwork for a premium portrait museum gala invitation, not a photographed mockup. Use reference image 1 to define the central ammonite precisely: preserve its recognizable spiral silhouette, fine rib structure, mineral texture and bronze-gold coloration. Use reference image 2 to define the surrounding visual language and environment: flowing suminagashi currents, midnight-indigo field, oxidized-copper and sea-green accents, ivory paper grain and elegant organic movement. Place the ammonite large and centered in the lower-middle of the composition, appearing to emerge from tidal rings that echo its spiral. Add restrained copper-foil-style rules and tiny scientific engraving marks for a luxurious natural-history editorial character. Maintain generous negative space and a clear formal hierarchy. Include only this exact invitation copy, set in sophisticated high-contrast serif typography with small widely tracked capitals: “MIDNIGHT TIDE” at the top, “Opening Gala” beneath it, then “18 OCTOBER 2026 · 7 PM” and “NORTH COAST NATURAL HISTORY MUSEUM” near the bottom. Moody, ceremonial and tactile, with excellent print detail and legible lettering; no envelope, hands, table, frame, UI, logos, extra text or mockup presentation." \
  resolution=2K \
  settings.quality=low \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/a2c727dd-69b3-41c1-bd48-ff73e6dab1ee.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/80684144-f723-4693-98f5-c915f577bef4.jpg
{
  "taskType": "imageInference",
  "taskUUID": "ae37269f-4554-4077-b6f1-0944104a08e6",
  "model": "xai:grok-imagine@image-2.0",
  "positivePrompt": "Create the finished flat artwork for a premium portrait museum gala invitation, not a photographed mockup. Use reference image 1 to define the central ammonite precisely: preserve its recognizable spiral silhouette, fine rib structure, mineral texture and bronze-gold coloration. Use reference image 2 to define the surrounding visual language and environment: flowing suminagashi currents, midnight-indigo field, oxidized-copper and sea-green accents, ivory paper grain and elegant organic movement. Place the ammonite large and centered in the lower-middle of the composition, appearing to emerge from tidal rings that echo its spiral. Add restrained copper-foil-style rules and tiny scientific engraving marks for a luxurious natural-history editorial character. Maintain generous negative space and a clear formal hierarchy. Include only this exact invitation copy, set in sophisticated high-contrast serif typography with small widely tracked capitals: “MIDNIGHT TIDE” at the top, “Opening Gala” beneath it, then “18 OCTOBER 2026 · 7 PM” and “NORTH COAST NATURAL HISTORY MUSEUM” near the bottom. Moody, ceremonial and tactile, with excellent print detail and legible lettering; no envelope, hands, table, frame, UI, logos, extra text or mockup presentation.",
  "resolution": "2K",
  "settings": {
    "quality": "low"
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/a2c727dd-69b3-41c1-bd48-ff73e6dab1ee.jpg",
      "https://assets.runware.ai/assets/inputs/80684144-f723-4693-98f5-c915f577bef4.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "ae37269f-4554-4077-b6f1-0944104a08e6",
  "imageUUID": "72d7250c-f26e-4b88-85fd-bd9af121cc23",
  "imageURL": "https://im.runware.ai/image/os/a04d20/ws/4/ii/72d7250c-f26e-4b88-85fd-bd9af121cc23.jpg",
  "seed": 2134973109,
  "cost": 0.08
}

reference-to-image

National Seed Curator Persona Portrait$0.08~22s
National Seed Curator Persona Portrait

Create a finished 3:4 environmental persona portrait for a national seed-bank public education campaign. Use reference image 1 as the definitive character identity: preserve the same facial structure, skin tone, close-cropped hair, tortoiseshell glasses, age, burgundy chore coat, and calm, quietly confident presence so this woman can remain recognizable across future campaign images. Use reference image 2 to define the workplace, color palette, lighting, and visual atmosphere: powder-blue archival seed drawers, stainless work surfaces, glass accession vials, cool cyan ambient light, and a warm amber inspection lamp. Show the curator waist-up at a seed examination table, facing the camera with composed authority, one hand resting beside several carefully arranged seed vials and the other lightly holding a small paper accession envelope. Authentic contemporary agricultural science, practical and human rather than futuristic. Refined medium-format editorial photography, subtle film grain, natural skin texture, crisp eyes, controlled depth of field, cool blue and burgundy palette with amber highlights. Vertical composition with modest breathing room around the head and enough environmental detail to establish her profession. No typography, logos, badges, legible labels, or additional people.

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: 'xai:grok-imagine@image-2.0',
  positivePrompt: 'Create a finished 3:4 environmental persona portrait for a national seed-bank public education campaign. Use reference image 1 as the definitive character identity: preserve the same facial structure, skin tone, close-cropped hair, tortoiseshell glasses, age, burgundy chore coat, and calm, quietly confident presence so this woman can remain recognizable across future campaign images. Use reference image 2 to define the workplace, color palette, lighting, and visual atmosphere: powder-blue archival seed drawers, stainless work surfaces, glass accession vials, cool cyan ambient light, and a warm amber inspection lamp. Show the curator waist-up at a seed examination table, facing the camera with composed authority, one hand resting beside several carefully arranged seed vials and the other lightly holding a small paper accession envelope. Authentic contemporary agricultural science, practical and human rather than futuristic. Refined medium-format editorial photography, subtle film grain, natural skin texture, crisp eyes, controlled depth of field, cool blue and burgundy palette with amber highlights. Vertical composition with modest breathing room around the head and enough environmental detail to establish her profession. No typography, logos, badges, legible labels, or additional people.',
  resolution: '2K',
  settings: {
    quality: 'low'
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/58ade791-3d5a-4a64-8bb7-fd1207d5021e.jpg',
      'https://assets.runware.ai/assets/inputs/8943b1f3-ed6e-44fe-bc75-03611bcbf67e.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": "xai:grok-imagine@image-2.0",
            "positivePrompt": "Create a finished 3:4 environmental persona portrait for a national seed-bank public education campaign. Use reference image 1 as the definitive character identity: preserve the same facial structure, skin tone, close-cropped hair, tortoiseshell glasses, age, burgundy chore coat, and calm, quietly confident presence so this woman can remain recognizable across future campaign images. Use reference image 2 to define the workplace, color palette, lighting, and visual atmosphere: powder-blue archival seed drawers, stainless work surfaces, glass accession vials, cool cyan ambient light, and a warm amber inspection lamp. Show the curator waist-up at a seed examination table, facing the camera with composed authority, one hand resting beside several carefully arranged seed vials and the other lightly holding a small paper accession envelope. Authentic contemporary agricultural science, practical and human rather than futuristic. Refined medium-format editorial photography, subtle film grain, natural skin texture, crisp eyes, controlled depth of field, cool blue and burgundy palette with amber highlights. Vertical composition with modest breathing room around the head and enough environmental detail to establish her profession. No typography, logos, badges, legible labels, or additional people.",
            "resolution": "2K",
            "settings": {
                "quality": "low"
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/58ade791-3d5a-4a64-8bb7-fd1207d5021e.jpg",
                    "https://assets.runware.ai/assets/inputs/8943b1f3-ed6e-44fe-bc75-03611bcbf67e.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": "b73f28af-b93c-4d2f-9b12-d42e5bd0436f",
      "model": "xai:grok-imagine@image-2.0",
      "positivePrompt": "Create a finished 3:4 environmental persona portrait for a national seed-bank public education campaign. Use reference image 1 as the definitive character identity: preserve the same facial structure, skin tone, close-cropped hair, tortoiseshell glasses, age, burgundy chore coat, and calm, quietly confident presence so this woman can remain recognizable across future campaign images. Use reference image 2 to define the workplace, color palette, lighting, and visual atmosphere: powder-blue archival seed drawers, stainless work surfaces, glass accession vials, cool cyan ambient light, and a warm amber inspection lamp. Show the curator waist-up at a seed examination table, facing the camera with composed authority, one hand resting beside several carefully arranged seed vials and the other lightly holding a small paper accession envelope. Authentic contemporary agricultural science, practical and human rather than futuristic. Refined medium-format editorial photography, subtle film grain, natural skin texture, crisp eyes, controlled depth of field, cool blue and burgundy palette with amber highlights. Vertical composition with modest breathing room around the head and enough environmental detail to establish her profession. No typography, logos, badges, legible labels, or additional people.",
      "resolution": "2K",
      "settings": {
        "quality": "low"
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/58ade791-3d5a-4a64-8bb7-fd1207d5021e.jpg",
          "https://assets.runware.ai/assets/inputs/8943b1f3-ed6e-44fe-bc75-03611bcbf67e.jpg"
        ]
      }
    }
  ]'
runware run xai:grok-imagine@image-2.0 \
  positivePrompt="Create a finished 3:4 environmental persona portrait for a national seed-bank public education campaign. Use reference image 1 as the definitive character identity: preserve the same facial structure, skin tone, close-cropped hair, tortoiseshell glasses, age, burgundy chore coat, and calm, quietly confident presence so this woman can remain recognizable across future campaign images. Use reference image 2 to define the workplace, color palette, lighting, and visual atmosphere: powder-blue archival seed drawers, stainless work surfaces, glass accession vials, cool cyan ambient light, and a warm amber inspection lamp. Show the curator waist-up at a seed examination table, facing the camera with composed authority, one hand resting beside several carefully arranged seed vials and the other lightly holding a small paper accession envelope. Authentic contemporary agricultural science, practical and human rather than futuristic. Refined medium-format editorial photography, subtle film grain, natural skin texture, crisp eyes, controlled depth of field, cool blue and burgundy palette with amber highlights. Vertical composition with modest breathing room around the head and enough environmental detail to establish her profession. No typography, logos, badges, legible labels, or additional people." \
  resolution=2K \
  settings.quality=low \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/58ade791-3d5a-4a64-8bb7-fd1207d5021e.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/8943b1f3-ed6e-44fe-bc75-03611bcbf67e.jpg
{
  "taskType": "imageInference",
  "taskUUID": "b73f28af-b93c-4d2f-9b12-d42e5bd0436f",
  "model": "xai:grok-imagine@image-2.0",
  "positivePrompt": "Create a finished 3:4 environmental persona portrait for a national seed-bank public education campaign. Use reference image 1 as the definitive character identity: preserve the same facial structure, skin tone, close-cropped hair, tortoiseshell glasses, age, burgundy chore coat, and calm, quietly confident presence so this woman can remain recognizable across future campaign images. Use reference image 2 to define the workplace, color palette, lighting, and visual atmosphere: powder-blue archival seed drawers, stainless work surfaces, glass accession vials, cool cyan ambient light, and a warm amber inspection lamp. Show the curator waist-up at a seed examination table, facing the camera with composed authority, one hand resting beside several carefully arranged seed vials and the other lightly holding a small paper accession envelope. Authentic contemporary agricultural science, practical and human rather than futuristic. Refined medium-format editorial photography, subtle film grain, natural skin texture, crisp eyes, controlled depth of field, cool blue and burgundy palette with amber highlights. Vertical composition with modest breathing room around the head and enough environmental detail to establish her profession. No typography, logos, badges, legible labels, or additional people.",
  "resolution": "2K",
  "settings": {
    "quality": "low"
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/58ade791-3d5a-4a64-8bb7-fd1207d5021e.jpg",
      "https://assets.runware.ai/assets/inputs/8943b1f3-ed6e-44fe-bc75-03611bcbf67e.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "b73f28af-b93c-4d2f-9b12-d42e5bd0436f",
  "imageUUID": "504732f9-9235-47b5-90b9-14076abddeb1",
  "imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/4/ii/504732f9-9235-47b5-90b9-14076abddeb1.jpg",
  "seed": 852782291,
  "cost": 0.08
}