live
MODEL IDprunaai:1@1

P-Image

Pruna AI
by

P-Image is a real-time text-to-image model from Pruna. It delivers sub-second image generation with strong text rendering and tight prompt adherence. It targets production workloads that need fast inference, predictable output control, and efficient scaling through simple API integration.

P-Image

text-to-image

Cold Chain Failure Blog Hero$0.0044~3s
Cold Chain Failure Blog Hero

Square editorial hero image for an investigative cold-chain logistics article about a twenty-minute refrigeration failure. Show an isometric cutaway of a refrigerated shipping container filled with orderly stacks of raspberry crates. One rear door is slightly ajar, allowing a dramatic plume of warm air to curl through the chilled interior. Visualize temperature rather than ordinary color: frozen zones glow cyan and electric blue, the warm leak burns orange, coral and hot magenta, all against a deep midnight-navy background. A small logistics technician in insulated workwear stands beside the open door holding an infrared thermometer, providing scale. Combine precise technical 3D illustration, thermal-camera imagery and elegant scientific data-visualization aesthetics, with realistic container hardware, translucent airflow layers and crisp geometric edges. Strong diagonal flow, immediate focal point, clean negative space around the central container, premium business-publication art direction, sophisticated and urgent rather than apocalyptic. No lettering, numbers, labels, logos, interface elements or border. Finished standalone image, square composition, sharp at thumbnail size.

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: 'prunaai:1@1',
  positivePrompt: 'Square editorial hero image for an investigative cold-chain logistics article about a twenty-minute refrigeration failure. Show an isometric cutaway of a refrigerated shipping container filled with orderly stacks of raspberry crates. One rear door is slightly ajar, allowing a dramatic plume of warm air to curl through the chilled interior. Visualize temperature rather than ordinary color: frozen zones glow cyan and electric blue, the warm leak burns orange, coral and hot magenta, all against a deep midnight-navy background. A small logistics technician in insulated workwear stands beside the open door holding an infrared thermometer, providing scale. Combine precise technical 3D illustration, thermal-camera imagery and elegant scientific data-visualization aesthetics, with realistic container hardware, translucent airflow layers and crisp geometric edges. Strong diagonal flow, immediate focal point, clean negative space around the central container, premium business-publication art direction, sophisticated and urgent rather than apocalyptic. No lettering, numbers, labels, logos, interface elements or border. Finished standalone image, square composition, sharp at thumbnail size.',
  width: 1024,
  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": "prunaai:1@1",
            "positivePrompt": "Square editorial hero image for an investigative cold-chain logistics article about a twenty-minute refrigeration failure. Show an isometric cutaway of a refrigerated shipping container filled with orderly stacks of raspberry crates. One rear door is slightly ajar, allowing a dramatic plume of warm air to curl through the chilled interior. Visualize temperature rather than ordinary color: frozen zones glow cyan and electric blue, the warm leak burns orange, coral and hot magenta, all against a deep midnight-navy background. A small logistics technician in insulated workwear stands beside the open door holding an infrared thermometer, providing scale. Combine precise technical 3D illustration, thermal-camera imagery and elegant scientific data-visualization aesthetics, with realistic container hardware, translucent airflow layers and crisp geometric edges. Strong diagonal flow, immediate focal point, clean negative space around the central container, premium business-publication art direction, sophisticated and urgent rather than apocalyptic. No lettering, numbers, labels, logos, interface elements or border. Finished standalone image, square composition, sharp at thumbnail size.",
            "width": 1024,
            "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": "d54db932-68c6-4fe5-877f-11c1a076453f",
      "model": "prunaai:1@1",
      "positivePrompt": "Square editorial hero image for an investigative cold-chain logistics article about a twenty-minute refrigeration failure. Show an isometric cutaway of a refrigerated shipping container filled with orderly stacks of raspberry crates. One rear door is slightly ajar, allowing a dramatic plume of warm air to curl through the chilled interior. Visualize temperature rather than ordinary color: frozen zones glow cyan and electric blue, the warm leak burns orange, coral and hot magenta, all against a deep midnight-navy background. A small logistics technician in insulated workwear stands beside the open door holding an infrared thermometer, providing scale. Combine precise technical 3D illustration, thermal-camera imagery and elegant scientific data-visualization aesthetics, with realistic container hardware, translucent airflow layers and crisp geometric edges. Strong diagonal flow, immediate focal point, clean negative space around the central container, premium business-publication art direction, sophisticated and urgent rather than apocalyptic. No lettering, numbers, labels, logos, interface elements or border. Finished standalone image, square composition, sharp at thumbnail size.",
      "width": 1024,
      "height": 1024
    }
  ]'
runware run prunaai:1@1 \
  positivePrompt="Square editorial hero image for an investigative cold-chain logistics article about a twenty-minute refrigeration failure. Show an isometric cutaway of a refrigerated shipping container filled with orderly stacks of raspberry crates. One rear door is slightly ajar, allowing a dramatic plume of warm air to curl through the chilled interior. Visualize temperature rather than ordinary color: frozen zones glow cyan and electric blue, the warm leak burns orange, coral and hot magenta, all against a deep midnight-navy background. A small logistics technician in insulated workwear stands beside the open door holding an infrared thermometer, providing scale. Combine precise technical 3D illustration, thermal-camera imagery and elegant scientific data-visualization aesthetics, with realistic container hardware, translucent airflow layers and crisp geometric edges. Strong diagonal flow, immediate focal point, clean negative space around the central container, premium business-publication art direction, sophisticated and urgent rather than apocalyptic. No lettering, numbers, labels, logos, interface elements or border. Finished standalone image, square composition, sharp at thumbnail size." \
  width=1024 \
  height=1024
{
  "taskType": "imageInference",
  "taskUUID": "d54db932-68c6-4fe5-877f-11c1a076453f",
  "model": "prunaai:1@1",
  "positivePrompt": "Square editorial hero image for an investigative cold-chain logistics article about a twenty-minute refrigeration failure. Show an isometric cutaway of a refrigerated shipping container filled with orderly stacks of raspberry crates. One rear door is slightly ajar, allowing a dramatic plume of warm air to curl through the chilled interior. Visualize temperature rather than ordinary color: frozen zones glow cyan and electric blue, the warm leak burns orange, coral and hot magenta, all against a deep midnight-navy background. A small logistics technician in insulated workwear stands beside the open door holding an infrared thermometer, providing scale. Combine precise technical 3D illustration, thermal-camera imagery and elegant scientific data-visualization aesthetics, with realistic container hardware, translucent airflow layers and crisp geometric edges. Strong diagonal flow, immediate focal point, clean negative space around the central container, premium business-publication art direction, sophisticated and urgent rather than apocalyptic. No lettering, numbers, labels, logos, interface elements or border. Finished standalone image, square composition, sharp at thumbnail size.",
  "width": 1024,
  "height": 1024
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "d54db932-68c6-4fe5-877f-11c1a076453f",
  "imageUUID": "548696e6-b903-4b11-9676-26aebd4e309f",
  "imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/548696e6-b903-4b11-9676-26aebd4e309f.jpg",
  "seed": 554046276,
  "cost": 0.0044
}

text-to-image

Pigeon Racing Docuseries Key Art$0.0044~5s
Pigeon Racing Docuseries Key Art

Finished square streaming-series poster for a prestige documentary about working-class pigeon racing in northern England. Bold editorial photomontage: a weathered male pigeon fancier in his late sixties, flat cap and navy work jacket, shown in stern three-quarter profile from the chest up; a silver-blue racing pigeon with iridescent green neck feathers fills the opposite foreground, sharply focused and dignified. Behind them, tiny terraced rooftops, wooden lofts, and a flock crossing a vast overcast sky. Graphic screen-printed treatment combining documentary photography, coarse halftone grain, torn-paper edges, registration offsets, and angular blocks suggesting flight paths and timing charts. Restricted palette of warm cream, saturated vermilion, deep navy, and flashes of cyan. Gritty, intimate, competitive mood; strong silhouettes and premium festival-documentary art direction. Balanced square composition with clean hierarchy and generous negative space. Prominent condensed sans-serif title reads exactly: “THE LONG WAY HOME”. Smaller line beneath reads exactly: “A DOCUMENTARY SERIES”. Crisp, correctly spelled lettering integrated into the design. No platform logo, no awards, no billing block, no interface, no mockup, no frame.

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: 'prunaai:1@1',
  positivePrompt: 'Finished square streaming-series poster for a prestige documentary about working-class pigeon racing in northern England. Bold editorial photomontage: a weathered male pigeon fancier in his late sixties, flat cap and navy work jacket, shown in stern three-quarter profile from the chest up; a silver-blue racing pigeon with iridescent green neck feathers fills the opposite foreground, sharply focused and dignified. Behind them, tiny terraced rooftops, wooden lofts, and a flock crossing a vast overcast sky. Graphic screen-printed treatment combining documentary photography, coarse halftone grain, torn-paper edges, registration offsets, and angular blocks suggesting flight paths and timing charts. Restricted palette of warm cream, saturated vermilion, deep navy, and flashes of cyan. Gritty, intimate, competitive mood; strong silhouettes and premium festival-documentary art direction. Balanced square composition with clean hierarchy and generous negative space. Prominent condensed sans-serif title reads exactly: “THE LONG WAY HOME”. Smaller line beneath reads exactly: “A DOCUMENTARY SERIES”. Crisp, correctly spelled lettering integrated into the design. No platform logo, no awards, no billing block, no interface, no mockup, no frame.',
  width: 1024,
  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": "prunaai:1@1",
            "positivePrompt": "Finished square streaming-series poster for a prestige documentary about working-class pigeon racing in northern England. Bold editorial photomontage: a weathered male pigeon fancier in his late sixties, flat cap and navy work jacket, shown in stern three-quarter profile from the chest up; a silver-blue racing pigeon with iridescent green neck feathers fills the opposite foreground, sharply focused and dignified. Behind them, tiny terraced rooftops, wooden lofts, and a flock crossing a vast overcast sky. Graphic screen-printed treatment combining documentary photography, coarse halftone grain, torn-paper edges, registration offsets, and angular blocks suggesting flight paths and timing charts. Restricted palette of warm cream, saturated vermilion, deep navy, and flashes of cyan. Gritty, intimate, competitive mood; strong silhouettes and premium festival-documentary art direction. Balanced square composition with clean hierarchy and generous negative space. Prominent condensed sans-serif title reads exactly: “THE LONG WAY HOME”. Smaller line beneath reads exactly: “A DOCUMENTARY SERIES”. Crisp, correctly spelled lettering integrated into the design. No platform logo, no awards, no billing block, no interface, no mockup, no frame.",
            "width": 1024,
            "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": "232bd8b2-c040-4ac3-9470-71084eaec3ca",
      "model": "prunaai:1@1",
      "positivePrompt": "Finished square streaming-series poster for a prestige documentary about working-class pigeon racing in northern England. Bold editorial photomontage: a weathered male pigeon fancier in his late sixties, flat cap and navy work jacket, shown in stern three-quarter profile from the chest up; a silver-blue racing pigeon with iridescent green neck feathers fills the opposite foreground, sharply focused and dignified. Behind them, tiny terraced rooftops, wooden lofts, and a flock crossing a vast overcast sky. Graphic screen-printed treatment combining documentary photography, coarse halftone grain, torn-paper edges, registration offsets, and angular blocks suggesting flight paths and timing charts. Restricted palette of warm cream, saturated vermilion, deep navy, and flashes of cyan. Gritty, intimate, competitive mood; strong silhouettes and premium festival-documentary art direction. Balanced square composition with clean hierarchy and generous negative space. Prominent condensed sans-serif title reads exactly: “THE LONG WAY HOME”. Smaller line beneath reads exactly: “A DOCUMENTARY SERIES”. Crisp, correctly spelled lettering integrated into the design. No platform logo, no awards, no billing block, no interface, no mockup, no frame.",
      "width": 1024,
      "height": 1024
    }
  ]'
runware run prunaai:1@1 \
  positivePrompt="Finished square streaming-series poster for a prestige documentary about working-class pigeon racing in northern England. Bold editorial photomontage: a weathered male pigeon fancier in his late sixties, flat cap and navy work jacket, shown in stern three-quarter profile from the chest up; a silver-blue racing pigeon with iridescent green neck feathers fills the opposite foreground, sharply focused and dignified. Behind them, tiny terraced rooftops, wooden lofts, and a flock crossing a vast overcast sky. Graphic screen-printed treatment combining documentary photography, coarse halftone grain, torn-paper edges, registration offsets, and angular blocks suggesting flight paths and timing charts. Restricted palette of warm cream, saturated vermilion, deep navy, and flashes of cyan. Gritty, intimate, competitive mood; strong silhouettes and premium festival-documentary art direction. Balanced square composition with clean hierarchy and generous negative space. Prominent condensed sans-serif title reads exactly: “THE LONG WAY HOME”. Smaller line beneath reads exactly: “A DOCUMENTARY SERIES”. Crisp, correctly spelled lettering integrated into the design. No platform logo, no awards, no billing block, no interface, no mockup, no frame." \
  width=1024 \
  height=1024
{
  "taskType": "imageInference",
  "taskUUID": "232bd8b2-c040-4ac3-9470-71084eaec3ca",
  "model": "prunaai:1@1",
  "positivePrompt": "Finished square streaming-series poster for a prestige documentary about working-class pigeon racing in northern England. Bold editorial photomontage: a weathered male pigeon fancier in his late sixties, flat cap and navy work jacket, shown in stern three-quarter profile from the chest up; a silver-blue racing pigeon with iridescent green neck feathers fills the opposite foreground, sharply focused and dignified. Behind them, tiny terraced rooftops, wooden lofts, and a flock crossing a vast overcast sky. Graphic screen-printed treatment combining documentary photography, coarse halftone grain, torn-paper edges, registration offsets, and angular blocks suggesting flight paths and timing charts. Restricted palette of warm cream, saturated vermilion, deep navy, and flashes of cyan. Gritty, intimate, competitive mood; strong silhouettes and premium festival-documentary art direction. Balanced square composition with clean hierarchy and generous negative space. Prominent condensed sans-serif title reads exactly: “THE LONG WAY HOME”. Smaller line beneath reads exactly: “A DOCUMENTARY SERIES”. Crisp, correctly spelled lettering integrated into the design. No platform logo, no awards, no billing block, no interface, no mockup, no frame.",
  "width": 1024,
  "height": 1024
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "232bd8b2-c040-4ac3-9470-71084eaec3ca",
  "imageUUID": "2dc71910-8f29-4fe3-bf82-384f5e30186e",
  "imageURL": "https://im.runware.ai/image/os/a04d20/ws/3/ii/2dc71910-8f29-4fe3-bf82-384f5e30186e.jpg",
  "seed": 1220381836,
  "cost": 0.0044
}

text-to-image

Waterlogged Ship Timber Conservation Infographic$0.0044~4s
Waterlogged Ship Timber Conservation Infographic

Create a finished square educational infographic for a maritime archaeology museum titled “SAVING A SHIPWRECK’S TIMBERS”. Explain why centuries-old waterlogged wood cannot simply be left to air-dry. Art direction: precise Swiss modernist information design combined with tactile screen-printed textures, crisp vector geometry, warm ivory paper, deep navy, oxidized copper green, vivid safety orange, and pale aqua. Centerpiece: a large clean cutaway illustration of an ancient oak ship timber, half submerged, showing water filling the weakened cellular structure. Arrange four numbered stages clockwise around it with bold headings, concise labels, arrows, and small technical diagrams. Exact stage copy: “1 RECOVER — Keep timber wet”; “2 DESALT — Fresh-water baths remove salts”; “3 STABILIZE — PEG supports weakened cells”; “4 FREEZE-DRY — Ice leaves as vapor”. Add a prominent orange warning panel: “AIR-DRYING CAUSES SHRINKAGE + CRACKS”. Include a small before-and-after wood-cell diagram labeled “WATERLOGGED” and “STABILIZED”, plus a bottom outcome caption: “READY FOR CONTROLLED MUSEUM DISPLAY”. Strong typographic hierarchy, highly legible uppercase sans-serif lettering, generous margins, orderly grid, accurate arrows, restrained iconography, subtle halftone grain. Flat orthographic scientific illustration, no photorealism, no people, no logos, no mockup, no interface, no extraneous text. Make the information understandable at a glance while retaining the character of a premium museum exhibition graphic.

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: 'prunaai:1@1',
  positivePrompt: 'Create a finished square educational infographic for a maritime archaeology museum titled “SAVING A SHIPWRECK’S TIMBERS”. Explain why centuries-old waterlogged wood cannot simply be left to air-dry. Art direction: precise Swiss modernist information design combined with tactile screen-printed textures, crisp vector geometry, warm ivory paper, deep navy, oxidized copper green, vivid safety orange, and pale aqua. Centerpiece: a large clean cutaway illustration of an ancient oak ship timber, half submerged, showing water filling the weakened cellular structure. Arrange four numbered stages clockwise around it with bold headings, concise labels, arrows, and small technical diagrams. Exact stage copy: “1  RECOVER — Keep timber wet”; “2  DESALT — Fresh-water baths remove salts”; “3  STABILIZE — PEG supports weakened cells”; “4  FREEZE-DRY — Ice leaves as vapor”. Add a prominent orange warning panel: “AIR-DRYING CAUSES SHRINKAGE + CRACKS”. Include a small before-and-after wood-cell diagram labeled “WATERLOGGED” and “STABILIZED”, plus a bottom outcome caption: “READY FOR CONTROLLED MUSEUM DISPLAY”. Strong typographic hierarchy, highly legible uppercase sans-serif lettering, generous margins, orderly grid, accurate arrows, restrained iconography, subtle halftone grain. Flat orthographic scientific illustration, no photorealism, no people, no logos, no mockup, no interface, no extraneous text. Make the information understandable at a glance while retaining the character of a premium museum exhibition graphic.',
  width: 1024,
  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": "prunaai:1@1",
            "positivePrompt": "Create a finished square educational infographic for a maritime archaeology museum titled “SAVING A SHIPWRECK’S TIMBERS”. Explain why centuries-old waterlogged wood cannot simply be left to air-dry. Art direction: precise Swiss modernist information design combined with tactile screen-printed textures, crisp vector geometry, warm ivory paper, deep navy, oxidized copper green, vivid safety orange, and pale aqua. Centerpiece: a large clean cutaway illustration of an ancient oak ship timber, half submerged, showing water filling the weakened cellular structure. Arrange four numbered stages clockwise around it with bold headings, concise labels, arrows, and small technical diagrams. Exact stage copy: “1  RECOVER — Keep timber wet”; “2  DESALT — Fresh-water baths remove salts”; “3  STABILIZE — PEG supports weakened cells”; “4  FREEZE-DRY — Ice leaves as vapor”. Add a prominent orange warning panel: “AIR-DRYING CAUSES SHRINKAGE + CRACKS”. Include a small before-and-after wood-cell diagram labeled “WATERLOGGED” and “STABILIZED”, plus a bottom outcome caption: “READY FOR CONTROLLED MUSEUM DISPLAY”. Strong typographic hierarchy, highly legible uppercase sans-serif lettering, generous margins, orderly grid, accurate arrows, restrained iconography, subtle halftone grain. Flat orthographic scientific illustration, no photorealism, no people, no logos, no mockup, no interface, no extraneous text. Make the information understandable at a glance while retaining the character of a premium museum exhibition graphic.",
            "width": 1024,
            "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": "fabfd5e8-d6f3-4bf0-a655-4b1ba616a1a4",
      "model": "prunaai:1@1",
      "positivePrompt": "Create a finished square educational infographic for a maritime archaeology museum titled “SAVING A SHIPWRECK’S TIMBERS”. Explain why centuries-old waterlogged wood cannot simply be left to air-dry. Art direction: precise Swiss modernist information design combined with tactile screen-printed textures, crisp vector geometry, warm ivory paper, deep navy, oxidized copper green, vivid safety orange, and pale aqua. Centerpiece: a large clean cutaway illustration of an ancient oak ship timber, half submerged, showing water filling the weakened cellular structure. Arrange four numbered stages clockwise around it with bold headings, concise labels, arrows, and small technical diagrams. Exact stage copy: “1  RECOVER — Keep timber wet”; “2  DESALT — Fresh-water baths remove salts”; “3  STABILIZE — PEG supports weakened cells”; “4  FREEZE-DRY — Ice leaves as vapor”. Add a prominent orange warning panel: “AIR-DRYING CAUSES SHRINKAGE + CRACKS”. Include a small before-and-after wood-cell diagram labeled “WATERLOGGED” and “STABILIZED”, plus a bottom outcome caption: “READY FOR CONTROLLED MUSEUM DISPLAY”. Strong typographic hierarchy, highly legible uppercase sans-serif lettering, generous margins, orderly grid, accurate arrows, restrained iconography, subtle halftone grain. Flat orthographic scientific illustration, no photorealism, no people, no logos, no mockup, no interface, no extraneous text. Make the information understandable at a glance while retaining the character of a premium museum exhibition graphic.",
      "width": 1024,
      "height": 1024
    }
  ]'
runware run prunaai:1@1 \
  positivePrompt="Create a finished square educational infographic for a maritime archaeology museum titled “SAVING A SHIPWRECK’S TIMBERS”. Explain why centuries-old waterlogged wood cannot simply be left to air-dry. Art direction: precise Swiss modernist information design combined with tactile screen-printed textures, crisp vector geometry, warm ivory paper, deep navy, oxidized copper green, vivid safety orange, and pale aqua. Centerpiece: a large clean cutaway illustration of an ancient oak ship timber, half submerged, showing water filling the weakened cellular structure. Arrange four numbered stages clockwise around it with bold headings, concise labels, arrows, and small technical diagrams. Exact stage copy: “1  RECOVER — Keep timber wet”; “2  DESALT — Fresh-water baths remove salts”; “3  STABILIZE — PEG supports weakened cells”; “4  FREEZE-DRY — Ice leaves as vapor”. Add a prominent orange warning panel: “AIR-DRYING CAUSES SHRINKAGE + CRACKS”. Include a small before-and-after wood-cell diagram labeled “WATERLOGGED” and “STABILIZED”, plus a bottom outcome caption: “READY FOR CONTROLLED MUSEUM DISPLAY”. Strong typographic hierarchy, highly legible uppercase sans-serif lettering, generous margins, orderly grid, accurate arrows, restrained iconography, subtle halftone grain. Flat orthographic scientific illustration, no photorealism, no people, no logos, no mockup, no interface, no extraneous text. Make the information understandable at a glance while retaining the character of a premium museum exhibition graphic." \
  width=1024 \
  height=1024
{
  "taskType": "imageInference",
  "taskUUID": "fabfd5e8-d6f3-4bf0-a655-4b1ba616a1a4",
  "model": "prunaai:1@1",
  "positivePrompt": "Create a finished square educational infographic for a maritime archaeology museum titled “SAVING A SHIPWRECK’S TIMBERS”. Explain why centuries-old waterlogged wood cannot simply be left to air-dry. Art direction: precise Swiss modernist information design combined with tactile screen-printed textures, crisp vector geometry, warm ivory paper, deep navy, oxidized copper green, vivid safety orange, and pale aqua. Centerpiece: a large clean cutaway illustration of an ancient oak ship timber, half submerged, showing water filling the weakened cellular structure. Arrange four numbered stages clockwise around it with bold headings, concise labels, arrows, and small technical diagrams. Exact stage copy: “1  RECOVER — Keep timber wet”; “2  DESALT — Fresh-water baths remove salts”; “3  STABILIZE — PEG supports weakened cells”; “4  FREEZE-DRY — Ice leaves as vapor”. Add a prominent orange warning panel: “AIR-DRYING CAUSES SHRINKAGE + CRACKS”. Include a small before-and-after wood-cell diagram labeled “WATERLOGGED” and “STABILIZED”, plus a bottom outcome caption: “READY FOR CONTROLLED MUSEUM DISPLAY”. Strong typographic hierarchy, highly legible uppercase sans-serif lettering, generous margins, orderly grid, accurate arrows, restrained iconography, subtle halftone grain. Flat orthographic scientific illustration, no photorealism, no people, no logos, no mockup, no interface, no extraneous text. Make the information understandable at a glance while retaining the character of a premium museum exhibition graphic.",
  "width": 1024,
  "height": 1024
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "fabfd5e8-d6f3-4bf0-a655-4b1ba616a1a4",
  "imageUUID": "adcf241f-0123-434d-b6d2-8fc025a95504",
  "imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/3/ii/adcf241f-0123-434d-b6d2-8fc025a95504.jpg",
  "seed": 180264537,
  "cost": 0.0044
}

text-to-image

Counterfeit Saffron Documentary Thumbnail$0.0044~5s
Counterfeit Saffron Documentary Thumbnail

Finished square editorial video thumbnail for an investigative documentary about counterfeit saffron. A dramatic macro still life: a black nitrile-gloved hand holds a small evidence vial of vivid crimson saffron threads above an open antique brass spice scale; beside it, a torn paper packet spills suspicious orange-red powder, with a few genuine crocus stigmas arranged like forensic evidence. Hard ultraviolet inspection light creates electric cyan highlights and deep black shadows, while the saffron glows intense vermilion and burnt orange. Art direction combines premium food photography, forensic evidence imagery, and bold 1970s investigative-magazine halftone texture. Strong diagonal composition, tactile grain, razor-sharp central objects, ominous high contrast, no faces. Reserve the upper-left quadrant for large condensed sans-serif headline text reading exactly: “THE SAFFRON FRAUD” in warm ivory, stacked on three lines, highly legible at thumbnail size. Add a thin acid-chartreuse underline as the only graphic accent. Clean safe margins, immediate visual hierarchy, polished documentary journalism aesthetic, no logos, no interface, no extra words, 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: 'prunaai:1@1',
  positivePrompt: 'Finished square editorial video thumbnail for an investigative documentary about counterfeit saffron. A dramatic macro still life: a black nitrile-gloved hand holds a small evidence vial of vivid crimson saffron threads above an open antique brass spice scale; beside it, a torn paper packet spills suspicious orange-red powder, with a few genuine crocus stigmas arranged like forensic evidence. Hard ultraviolet inspection light creates electric cyan highlights and deep black shadows, while the saffron glows intense vermilion and burnt orange. Art direction combines premium food photography, forensic evidence imagery, and bold 1970s investigative-magazine halftone texture. Strong diagonal composition, tactile grain, razor-sharp central objects, ominous high contrast, no faces. Reserve the upper-left quadrant for large condensed sans-serif headline text reading exactly: “THE SAFFRON FRAUD” in warm ivory, stacked on three lines, highly legible at thumbnail size. Add a thin acid-chartreuse underline as the only graphic accent. Clean safe margins, immediate visual hierarchy, polished documentary journalism aesthetic, no logos, no interface, no extra words, no watermark.',
  width: 1024,
  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": "prunaai:1@1",
            "positivePrompt": "Finished square editorial video thumbnail for an investigative documentary about counterfeit saffron. A dramatic macro still life: a black nitrile-gloved hand holds a small evidence vial of vivid crimson saffron threads above an open antique brass spice scale; beside it, a torn paper packet spills suspicious orange-red powder, with a few genuine crocus stigmas arranged like forensic evidence. Hard ultraviolet inspection light creates electric cyan highlights and deep black shadows, while the saffron glows intense vermilion and burnt orange. Art direction combines premium food photography, forensic evidence imagery, and bold 1970s investigative-magazine halftone texture. Strong diagonal composition, tactile grain, razor-sharp central objects, ominous high contrast, no faces. Reserve the upper-left quadrant for large condensed sans-serif headline text reading exactly: “THE SAFFRON FRAUD” in warm ivory, stacked on three lines, highly legible at thumbnail size. Add a thin acid-chartreuse underline as the only graphic accent. Clean safe margins, immediate visual hierarchy, polished documentary journalism aesthetic, no logos, no interface, no extra words, no watermark.",
            "width": 1024,
            "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": "7aa10374-5338-4ac5-bab2-bbff290f8433",
      "model": "prunaai:1@1",
      "positivePrompt": "Finished square editorial video thumbnail for an investigative documentary about counterfeit saffron. A dramatic macro still life: a black nitrile-gloved hand holds a small evidence vial of vivid crimson saffron threads above an open antique brass spice scale; beside it, a torn paper packet spills suspicious orange-red powder, with a few genuine crocus stigmas arranged like forensic evidence. Hard ultraviolet inspection light creates electric cyan highlights and deep black shadows, while the saffron glows intense vermilion and burnt orange. Art direction combines premium food photography, forensic evidence imagery, and bold 1970s investigative-magazine halftone texture. Strong diagonal composition, tactile grain, razor-sharp central objects, ominous high contrast, no faces. Reserve the upper-left quadrant for large condensed sans-serif headline text reading exactly: “THE SAFFRON FRAUD” in warm ivory, stacked on three lines, highly legible at thumbnail size. Add a thin acid-chartreuse underline as the only graphic accent. Clean safe margins, immediate visual hierarchy, polished documentary journalism aesthetic, no logos, no interface, no extra words, no watermark.",
      "width": 1024,
      "height": 1024
    }
  ]'
runware run prunaai:1@1 \
  positivePrompt="Finished square editorial video thumbnail for an investigative documentary about counterfeit saffron. A dramatic macro still life: a black nitrile-gloved hand holds a small evidence vial of vivid crimson saffron threads above an open antique brass spice scale; beside it, a torn paper packet spills suspicious orange-red powder, with a few genuine crocus stigmas arranged like forensic evidence. Hard ultraviolet inspection light creates electric cyan highlights and deep black shadows, while the saffron glows intense vermilion and burnt orange. Art direction combines premium food photography, forensic evidence imagery, and bold 1970s investigative-magazine halftone texture. Strong diagonal composition, tactile grain, razor-sharp central objects, ominous high contrast, no faces. Reserve the upper-left quadrant for large condensed sans-serif headline text reading exactly: “THE SAFFRON FRAUD” in warm ivory, stacked on three lines, highly legible at thumbnail size. Add a thin acid-chartreuse underline as the only graphic accent. Clean safe margins, immediate visual hierarchy, polished documentary journalism aesthetic, no logos, no interface, no extra words, no watermark." \
  width=1024 \
  height=1024
{
  "taskType": "imageInference",
  "taskUUID": "7aa10374-5338-4ac5-bab2-bbff290f8433",
  "model": "prunaai:1@1",
  "positivePrompt": "Finished square editorial video thumbnail for an investigative documentary about counterfeit saffron. A dramatic macro still life: a black nitrile-gloved hand holds a small evidence vial of vivid crimson saffron threads above an open antique brass spice scale; beside it, a torn paper packet spills suspicious orange-red powder, with a few genuine crocus stigmas arranged like forensic evidence. Hard ultraviolet inspection light creates electric cyan highlights and deep black shadows, while the saffron glows intense vermilion and burnt orange. Art direction combines premium food photography, forensic evidence imagery, and bold 1970s investigative-magazine halftone texture. Strong diagonal composition, tactile grain, razor-sharp central objects, ominous high contrast, no faces. Reserve the upper-left quadrant for large condensed sans-serif headline text reading exactly: “THE SAFFRON FRAUD” in warm ivory, stacked on three lines, highly legible at thumbnail size. Add a thin acid-chartreuse underline as the only graphic accent. Clean safe margins, immediate visual hierarchy, polished documentary journalism aesthetic, no logos, no interface, no extra words, no watermark.",
  "width": 1024,
  "height": 1024
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "7aa10374-5338-4ac5-bab2-bbff290f8433",
  "imageUUID": "2f46fa29-afa1-4c9c-a062-ba042b9e7340",
  "imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/3/ii/2f46fa29-afa1-4c9c-a062-ba042b9e7340.jpg",
  "seed": 1125998750,
  "cost": 0.0044
}