P-Image-Ideogram

P-Image-Ideogram is a Pruna AI text-to-image model built in collaboration with Ideogram for fast, high-quality visual generation across product, people, and brand-oriented creative work. It offers four generation modes, from Very Low to High, so teams can choose the right balance of speed, cost, and image quality for each workflow while retaining strong prompt following and unusually capable text rendering. The model supports both natural-language prompting and more structured JSON-style prompting for tighter control over layout, color palettes, bounding boxes, and typography-heavy compositions.

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

Create a finished, print-ready square sticker sheet for CINDER CONE OBSERVATORY, an independent dark-sky observatory in the high desert. Arrange exactly eight distinct die-cut stickers with generous spacing and clean white cutline borders on a solid deep navy background. Include: 1) a large circular hero badge with a telescope silhouette, volcanic ridgeline, stars, and the exact words “CINDER CONE OBSERVATORY”; 2) a crescent moon sticker reading “NIGHT SHIFT”; 3) a red flashlight with the exact words “RED LIGHT ONLY”; 4) Saturn above a desert horizon; 5) a compact arched badge reading “DARK SKIES”; 6) a stylized meteor with a long tail; 7) an observatory dome under the Milky Way; 8) a small membership badge reading “STAR KEEPER”. Art direction: sophisticated 1970s American national park ephemera, limited screen-print palette of midnight navy, warm cream, rust orange, dusty turquoise, and muted gold; bold geometric shapes, subtle ink texture, crisp vector-like edges, cohesive line weight, highly legible vintage sans-serif lettering. Balanced retail-ready composition, no overlapping stickers, no extra text, no misspellings, no logos beyond the specified observatory identity, no hands, packaging, photography, shadows, perspective, or product mockup.
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:p-image@ideogram',
positivePrompt: 'Create a finished, print-ready square sticker sheet for CINDER CONE OBSERVATORY, an independent dark-sky observatory in the high desert. Arrange exactly eight distinct die-cut stickers with generous spacing and clean white cutline borders on a solid deep navy background. Include: 1) a large circular hero badge with a telescope silhouette, volcanic ridgeline, stars, and the exact words “CINDER CONE OBSERVATORY”; 2) a crescent moon sticker reading “NIGHT SHIFT”; 3) a red flashlight with the exact words “RED LIGHT ONLY”; 4) Saturn above a desert horizon; 5) a compact arched badge reading “DARK SKIES”; 6) a stylized meteor with a long tail; 7) an observatory dome under the Milky Way; 8) a small membership badge reading “STAR KEEPER”. Art direction: sophisticated 1970s American national park ephemera, limited screen-print palette of midnight navy, warm cream, rust orange, dusty turquoise, and muted gold; bold geometric shapes, subtle ink texture, crisp vector-like edges, cohesive line weight, highly legible vintage sans-serif lettering. Balanced retail-ready composition, no overlapping stickers, no extra text, no misspellings, no logos beyond the specified observatory identity, no hands, packaging, photography, shadows, perspective, or product mockup.',
width: 1536,
height: 1536,
seed: 1847026,
settings: {
enhancePrompt: false,
thinkingLevel: 'high'
}
})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:p-image@ideogram",
"positivePrompt": "Create a finished, print-ready square sticker sheet for CINDER CONE OBSERVATORY, an independent dark-sky observatory in the high desert. Arrange exactly eight distinct die-cut stickers with generous spacing and clean white cutline borders on a solid deep navy background. Include: 1) a large circular hero badge with a telescope silhouette, volcanic ridgeline, stars, and the exact words “CINDER CONE OBSERVATORY”; 2) a crescent moon sticker reading “NIGHT SHIFT”; 3) a red flashlight with the exact words “RED LIGHT ONLY”; 4) Saturn above a desert horizon; 5) a compact arched badge reading “DARK SKIES”; 6) a stylized meteor with a long tail; 7) an observatory dome under the Milky Way; 8) a small membership badge reading “STAR KEEPER”. Art direction: sophisticated 1970s American national park ephemera, limited screen-print palette of midnight navy, warm cream, rust orange, dusty turquoise, and muted gold; bold geometric shapes, subtle ink texture, crisp vector-like edges, cohesive line weight, highly legible vintage sans-serif lettering. Balanced retail-ready composition, no overlapping stickers, no extra text, no misspellings, no logos beyond the specified observatory identity, no hands, packaging, photography, shadows, perspective, or product mockup.",
"width": 1536,
"height": 1536,
"seed": 1847026,
"settings": {
"enhancePrompt": False,
"thinkingLevel": "high"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "e7f5ffa9-471a-4348-93a8-b0f07fafcb94",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished, print-ready square sticker sheet for CINDER CONE OBSERVATORY, an independent dark-sky observatory in the high desert. Arrange exactly eight distinct die-cut stickers with generous spacing and clean white cutline borders on a solid deep navy background. Include: 1) a large circular hero badge with a telescope silhouette, volcanic ridgeline, stars, and the exact words “CINDER CONE OBSERVATORY”; 2) a crescent moon sticker reading “NIGHT SHIFT”; 3) a red flashlight with the exact words “RED LIGHT ONLY”; 4) Saturn above a desert horizon; 5) a compact arched badge reading “DARK SKIES”; 6) a stylized meteor with a long tail; 7) an observatory dome under the Milky Way; 8) a small membership badge reading “STAR KEEPER”. Art direction: sophisticated 1970s American national park ephemera, limited screen-print palette of midnight navy, warm cream, rust orange, dusty turquoise, and muted gold; bold geometric shapes, subtle ink texture, crisp vector-like edges, cohesive line weight, highly legible vintage sans-serif lettering. Balanced retail-ready composition, no overlapping stickers, no extra text, no misspellings, no logos beyond the specified observatory identity, no hands, packaging, photography, shadows, perspective, or product mockup.",
"width": 1536,
"height": 1536,
"seed": 1847026,
"settings": {
"enhancePrompt": false,
"thinkingLevel": "high"
}
}
]'runware run prunaai:p-image@ideogram \
positivePrompt="Create a finished, print-ready square sticker sheet for CINDER CONE OBSERVATORY, an independent dark-sky observatory in the high desert. Arrange exactly eight distinct die-cut stickers with generous spacing and clean white cutline borders on a solid deep navy background. Include: 1) a large circular hero badge with a telescope silhouette, volcanic ridgeline, stars, and the exact words “CINDER CONE OBSERVATORY”; 2) a crescent moon sticker reading “NIGHT SHIFT”; 3) a red flashlight with the exact words “RED LIGHT ONLY”; 4) Saturn above a desert horizon; 5) a compact arched badge reading “DARK SKIES”; 6) a stylized meteor with a long tail; 7) an observatory dome under the Milky Way; 8) a small membership badge reading “STAR KEEPER”. Art direction: sophisticated 1970s American national park ephemera, limited screen-print palette of midnight navy, warm cream, rust orange, dusty turquoise, and muted gold; bold geometric shapes, subtle ink texture, crisp vector-like edges, cohesive line weight, highly legible vintage sans-serif lettering. Balanced retail-ready composition, no overlapping stickers, no extra text, no misspellings, no logos beyond the specified observatory identity, no hands, packaging, photography, shadows, perspective, or product mockup." \
width=1536 \
height=1536 \
seed=1847026 \
settings.enhancePrompt=false \
settings.thinkingLevel=high{
"taskType": "imageInference",
"taskUUID": "e7f5ffa9-471a-4348-93a8-b0f07fafcb94",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished, print-ready square sticker sheet for CINDER CONE OBSERVATORY, an independent dark-sky observatory in the high desert. Arrange exactly eight distinct die-cut stickers with generous spacing and clean white cutline borders on a solid deep navy background. Include: 1) a large circular hero badge with a telescope silhouette, volcanic ridgeline, stars, and the exact words “CINDER CONE OBSERVATORY”; 2) a crescent moon sticker reading “NIGHT SHIFT”; 3) a red flashlight with the exact words “RED LIGHT ONLY”; 4) Saturn above a desert horizon; 5) a compact arched badge reading “DARK SKIES”; 6) a stylized meteor with a long tail; 7) an observatory dome under the Milky Way; 8) a small membership badge reading “STAR KEEPER”. Art direction: sophisticated 1970s American national park ephemera, limited screen-print palette of midnight navy, warm cream, rust orange, dusty turquoise, and muted gold; bold geometric shapes, subtle ink texture, crisp vector-like edges, cohesive line weight, highly legible vintage sans-serif lettering. Balanced retail-ready composition, no overlapping stickers, no extra text, no misspellings, no logos beyond the specified observatory identity, no hands, packaging, photography, shadows, perspective, or product mockup.",
"width": 1536,
"height": 1536,
"seed": 1847026,
"settings": {
"enhancePrompt": false,
"thinkingLevel": "high"
}
}{
"taskType": "imageInference",
"taskUUID": "e7f5ffa9-471a-4348-93a8-b0f07fafcb94",
"imageUUID": "67563a39-8cce-4d46-8109-1db51ae09358",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/67563a39-8cce-4d46-8109-1db51ae09358.jpg",
"seed": 1847026,
"cost": 0.0225
}Modernist Oyster Species Wall Chart

Create a finished vertical 2:3 wall-art print celebrating six culinary oyster species, styled as a refined 1960s European natural-history chart reinterpreted with bold modernist screen-print graphics. Warm uncoated ivory paper background with subtle authentic fiber texture. Arrange six distinct, scientifically believable oyster shells in a precise two-column by three-row grid, each shown from above with simplified but richly observed ridges, fluting, asymmetry, and mineral texture. Use a limited palette of coral red, deep Atlantic blue, seaweed green, sand, charcoal, and ivory, with slightly imperfect ink registration and crisp screen-printed shapes. Label each specimen clearly beneath its illustration in elegant condensed uppercase sans-serif lettering, with these exact names and spellings: KUMAMOTO, BELON, OLYMPIA, MALPEQUE, BLUE POINT, and PACIFIC. At the top, include the exact title “THE OYSTER GUIDE” in large dark-blue geometric lettering, followed by the small subtitle “SIX CLASSIC VARIETIES” in coral. Add fine divider rules, restrained catalog numbers 01–06, generous margins, balanced negative space, and subtle print grain. Sophisticated restaurant decor, editorial precision, cheerful coastal character, flat front-facing artwork only. No frame, no room mockup, no people, no extra shells, no additional words, no logos, no watermark.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'prunaai:p-image@ideogram',
positivePrompt: 'Create a finished vertical 2:3 wall-art print celebrating six culinary oyster species, styled as a refined 1960s European natural-history chart reinterpreted with bold modernist screen-print graphics. Warm uncoated ivory paper background with subtle authentic fiber texture. Arrange six distinct, scientifically believable oyster shells in a precise two-column by three-row grid, each shown from above with simplified but richly observed ridges, fluting, asymmetry, and mineral texture. Use a limited palette of coral red, deep Atlantic blue, seaweed green, sand, charcoal, and ivory, with slightly imperfect ink registration and crisp screen-printed shapes. Label each specimen clearly beneath its illustration in elegant condensed uppercase sans-serif lettering, with these exact names and spellings: KUMAMOTO, BELON, OLYMPIA, MALPEQUE, BLUE POINT, and PACIFIC. At the top, include the exact title “THE OYSTER GUIDE” in large dark-blue geometric lettering, followed by the small subtitle “SIX CLASSIC VARIETIES” in coral. Add fine divider rules, restrained catalog numbers 01–06, generous margins, balanced negative space, and subtle print grain. Sophisticated restaurant decor, editorial precision, cheerful coastal character, flat front-facing artwork only. No frame, no room mockup, no people, no extra shells, no additional words, no logos, no watermark.',
width: 1600,
height: 2400,
seed: 18472639,
settings: {
enhancePrompt: true,
thinkingLevel: 'high'
}
})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:p-image@ideogram",
"positivePrompt": "Create a finished vertical 2:3 wall-art print celebrating six culinary oyster species, styled as a refined 1960s European natural-history chart reinterpreted with bold modernist screen-print graphics. Warm uncoated ivory paper background with subtle authentic fiber texture. Arrange six distinct, scientifically believable oyster shells in a precise two-column by three-row grid, each shown from above with simplified but richly observed ridges, fluting, asymmetry, and mineral texture. Use a limited palette of coral red, deep Atlantic blue, seaweed green, sand, charcoal, and ivory, with slightly imperfect ink registration and crisp screen-printed shapes. Label each specimen clearly beneath its illustration in elegant condensed uppercase sans-serif lettering, with these exact names and spellings: KUMAMOTO, BELON, OLYMPIA, MALPEQUE, BLUE POINT, and PACIFIC. At the top, include the exact title “THE OYSTER GUIDE” in large dark-blue geometric lettering, followed by the small subtitle “SIX CLASSIC VARIETIES” in coral. Add fine divider rules, restrained catalog numbers 01–06, generous margins, balanced negative space, and subtle print grain. Sophisticated restaurant decor, editorial precision, cheerful coastal character, flat front-facing artwork only. No frame, no room mockup, no people, no extra shells, no additional words, no logos, no watermark.",
"width": 1600,
"height": 2400,
"seed": 18472639,
"settings": {
"enhancePrompt": True,
"thinkingLevel": "high"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "2264e4ee-b89c-400f-b239-b17a415fac17",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished vertical 2:3 wall-art print celebrating six culinary oyster species, styled as a refined 1960s European natural-history chart reinterpreted with bold modernist screen-print graphics. Warm uncoated ivory paper background with subtle authentic fiber texture. Arrange six distinct, scientifically believable oyster shells in a precise two-column by three-row grid, each shown from above with simplified but richly observed ridges, fluting, asymmetry, and mineral texture. Use a limited palette of coral red, deep Atlantic blue, seaweed green, sand, charcoal, and ivory, with slightly imperfect ink registration and crisp screen-printed shapes. Label each specimen clearly beneath its illustration in elegant condensed uppercase sans-serif lettering, with these exact names and spellings: KUMAMOTO, BELON, OLYMPIA, MALPEQUE, BLUE POINT, and PACIFIC. At the top, include the exact title “THE OYSTER GUIDE” in large dark-blue geometric lettering, followed by the small subtitle “SIX CLASSIC VARIETIES” in coral. Add fine divider rules, restrained catalog numbers 01–06, generous margins, balanced negative space, and subtle print grain. Sophisticated restaurant decor, editorial precision, cheerful coastal character, flat front-facing artwork only. No frame, no room mockup, no people, no extra shells, no additional words, no logos, no watermark.",
"width": 1600,
"height": 2400,
"seed": 18472639,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}
]'runware run prunaai:p-image@ideogram \
positivePrompt="Create a finished vertical 2:3 wall-art print celebrating six culinary oyster species, styled as a refined 1960s European natural-history chart reinterpreted with bold modernist screen-print graphics. Warm uncoated ivory paper background with subtle authentic fiber texture. Arrange six distinct, scientifically believable oyster shells in a precise two-column by three-row grid, each shown from above with simplified but richly observed ridges, fluting, asymmetry, and mineral texture. Use a limited palette of coral red, deep Atlantic blue, seaweed green, sand, charcoal, and ivory, with slightly imperfect ink registration and crisp screen-printed shapes. Label each specimen clearly beneath its illustration in elegant condensed uppercase sans-serif lettering, with these exact names and spellings: KUMAMOTO, BELON, OLYMPIA, MALPEQUE, BLUE POINT, and PACIFIC. At the top, include the exact title “THE OYSTER GUIDE” in large dark-blue geometric lettering, followed by the small subtitle “SIX CLASSIC VARIETIES” in coral. Add fine divider rules, restrained catalog numbers 01–06, generous margins, balanced negative space, and subtle print grain. Sophisticated restaurant decor, editorial precision, cheerful coastal character, flat front-facing artwork only. No frame, no room mockup, no people, no extra shells, no additional words, no logos, no watermark." \
width=1600 \
height=2400 \
seed=18472639 \
settings.enhancePrompt=true \
settings.thinkingLevel=high{
"taskType": "imageInference",
"taskUUID": "2264e4ee-b89c-400f-b239-b17a415fac17",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished vertical 2:3 wall-art print celebrating six culinary oyster species, styled as a refined 1960s European natural-history chart reinterpreted with bold modernist screen-print graphics. Warm uncoated ivory paper background with subtle authentic fiber texture. Arrange six distinct, scientifically believable oyster shells in a precise two-column by three-row grid, each shown from above with simplified but richly observed ridges, fluting, asymmetry, and mineral texture. Use a limited palette of coral red, deep Atlantic blue, seaweed green, sand, charcoal, and ivory, with slightly imperfect ink registration and crisp screen-printed shapes. Label each specimen clearly beneath its illustration in elegant condensed uppercase sans-serif lettering, with these exact names and spellings: KUMAMOTO, BELON, OLYMPIA, MALPEQUE, BLUE POINT, and PACIFIC. At the top, include the exact title “THE OYSTER GUIDE” in large dark-blue geometric lettering, followed by the small subtitle “SIX CLASSIC VARIETIES” in coral. Add fine divider rules, restrained catalog numbers 01–06, generous margins, balanced negative space, and subtle print grain. Sophisticated restaurant decor, editorial precision, cheerful coastal character, flat front-facing artwork only. No frame, no room mockup, no people, no extra shells, no additional words, no logos, no watermark.",
"width": 1600,
"height": 2400,
"seed": 18472639,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}{
"taskType": "imageInference",
"taskUUID": "2264e4ee-b89c-400f-b239-b17a415fac17",
"imageUUID": "19c17aec-b72b-4991-9ec7-84538c3122b2",
"imageURL": "https://im.runware.ai/image/os/a02d21/ws/4/ii/19c17aec-b72b-4991-9ec7-84538c3122b2.jpg",
"seed": 18472639,
"cost": 0.0225
}Roller Rink Wedding Invitation

Create the finished front artwork for a vertical 5×7 wedding invitation, shown flat and filling the entire canvas—no envelope, mockup, hands, frame, shadows, or surrounding scene. Art direction: exuberant 1970s roller-rink screen print, chunky retro display serif typography, wavy borders, tiny starbursts, hearts, and a centered pair of cream roller skates with intertwined coral laces. Warmly nostalgic, stylish rather than childish. Limited ink palette of tangerine orange, deep chocolate brown, dusty lilac, buttercream, and small cobalt accents; subtle authentic screen-print texture and crisp registration. Balanced symmetrical composition with generous margins and a clear typographic hierarchy. Render this exact copy accurately and legibly, with no extra words: “LOVE ON A ROLL” at the top in large arched lettering; “MAYA + ELI” as the dominant headline; “invite you to celebrate their wedding”; “SATURDAY, SEPTEMBER 19, 2026”; “6:30 PM”; “STARLINE ROLLER HALL”; “1120 SUNSET AVENUE, LOS ANGELES”; “DINNER • DANCING • SKATING”; “RSVP BY AUGUST 15”; “MAYAANDELI.COM”. Premium editorial invitation design, print-ready appearance, all lettering correctly spelled and unobstructed.
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:p-image@ideogram',
positivePrompt: 'Create the finished front artwork for a vertical 5×7 wedding invitation, shown flat and filling the entire canvas—no envelope, mockup, hands, frame, shadows, or surrounding scene. Art direction: exuberant 1970s roller-rink screen print, chunky retro display serif typography, wavy borders, tiny starbursts, hearts, and a centered pair of cream roller skates with intertwined coral laces. Warmly nostalgic, stylish rather than childish. Limited ink palette of tangerine orange, deep chocolate brown, dusty lilac, buttercream, and small cobalt accents; subtle authentic screen-print texture and crisp registration. Balanced symmetrical composition with generous margins and a clear typographic hierarchy. Render this exact copy accurately and legibly, with no extra words: “LOVE ON A ROLL” at the top in large arched lettering; “MAYA + ELI” as the dominant headline; “invite you to celebrate their wedding”; “SATURDAY, SEPTEMBER 19, 2026”; “6:30 PM”; “STARLINE ROLLER HALL”; “1120 SUNSET AVENUE, LOS ANGELES”; “DINNER • DANCING • SKATING”; “RSVP BY AUGUST 15”; “MAYAANDELI.COM”. Premium editorial invitation design, print-ready appearance, all lettering correctly spelled and unobstructed.',
width: 1280,
height: 1792,
seed: 260919,
settings: {
enhancePrompt: false,
thinkingLevel: 'high'
}
})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:p-image@ideogram",
"positivePrompt": "Create the finished front artwork for a vertical 5×7 wedding invitation, shown flat and filling the entire canvas—no envelope, mockup, hands, frame, shadows, or surrounding scene. Art direction: exuberant 1970s roller-rink screen print, chunky retro display serif typography, wavy borders, tiny starbursts, hearts, and a centered pair of cream roller skates with intertwined coral laces. Warmly nostalgic, stylish rather than childish. Limited ink palette of tangerine orange, deep chocolate brown, dusty lilac, buttercream, and small cobalt accents; subtle authentic screen-print texture and crisp registration. Balanced symmetrical composition with generous margins and a clear typographic hierarchy. Render this exact copy accurately and legibly, with no extra words: “LOVE ON A ROLL” at the top in large arched lettering; “MAYA + ELI” as the dominant headline; “invite you to celebrate their wedding”; “SATURDAY, SEPTEMBER 19, 2026”; “6:30 PM”; “STARLINE ROLLER HALL”; “1120 SUNSET AVENUE, LOS ANGELES”; “DINNER • DANCING • SKATING”; “RSVP BY AUGUST 15”; “MAYAANDELI.COM”. Premium editorial invitation design, print-ready appearance, all lettering correctly spelled and unobstructed.",
"width": 1280,
"height": 1792,
"seed": 260919,
"settings": {
"enhancePrompt": False,
"thinkingLevel": "high"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "1a00e826-5a8a-491d-b02f-dc34f2b1a39d",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create the finished front artwork for a vertical 5×7 wedding invitation, shown flat and filling the entire canvas—no envelope, mockup, hands, frame, shadows, or surrounding scene. Art direction: exuberant 1970s roller-rink screen print, chunky retro display serif typography, wavy borders, tiny starbursts, hearts, and a centered pair of cream roller skates with intertwined coral laces. Warmly nostalgic, stylish rather than childish. Limited ink palette of tangerine orange, deep chocolate brown, dusty lilac, buttercream, and small cobalt accents; subtle authentic screen-print texture and crisp registration. Balanced symmetrical composition with generous margins and a clear typographic hierarchy. Render this exact copy accurately and legibly, with no extra words: “LOVE ON A ROLL” at the top in large arched lettering; “MAYA + ELI” as the dominant headline; “invite you to celebrate their wedding”; “SATURDAY, SEPTEMBER 19, 2026”; “6:30 PM”; “STARLINE ROLLER HALL”; “1120 SUNSET AVENUE, LOS ANGELES”; “DINNER • DANCING • SKATING”; “RSVP BY AUGUST 15”; “MAYAANDELI.COM”. Premium editorial invitation design, print-ready appearance, all lettering correctly spelled and unobstructed.",
"width": 1280,
"height": 1792,
"seed": 260919,
"settings": {
"enhancePrompt": false,
"thinkingLevel": "high"
}
}
]'runware run prunaai:p-image@ideogram \
positivePrompt="Create the finished front artwork for a vertical 5×7 wedding invitation, shown flat and filling the entire canvas—no envelope, mockup, hands, frame, shadows, or surrounding scene. Art direction: exuberant 1970s roller-rink screen print, chunky retro display serif typography, wavy borders, tiny starbursts, hearts, and a centered pair of cream roller skates with intertwined coral laces. Warmly nostalgic, stylish rather than childish. Limited ink palette of tangerine orange, deep chocolate brown, dusty lilac, buttercream, and small cobalt accents; subtle authentic screen-print texture and crisp registration. Balanced symmetrical composition with generous margins and a clear typographic hierarchy. Render this exact copy accurately and legibly, with no extra words: “LOVE ON A ROLL” at the top in large arched lettering; “MAYA + ELI” as the dominant headline; “invite you to celebrate their wedding”; “SATURDAY, SEPTEMBER 19, 2026”; “6:30 PM”; “STARLINE ROLLER HALL”; “1120 SUNSET AVENUE, LOS ANGELES”; “DINNER • DANCING • SKATING”; “RSVP BY AUGUST 15”; “MAYAANDELI.COM”. Premium editorial invitation design, print-ready appearance, all lettering correctly spelled and unobstructed." \
width=1280 \
height=1792 \
seed=260919 \
settings.enhancePrompt=false \
settings.thinkingLevel=high{
"taskType": "imageInference",
"taskUUID": "1a00e826-5a8a-491d-b02f-dc34f2b1a39d",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create the finished front artwork for a vertical 5×7 wedding invitation, shown flat and filling the entire canvas—no envelope, mockup, hands, frame, shadows, or surrounding scene. Art direction: exuberant 1970s roller-rink screen print, chunky retro display serif typography, wavy borders, tiny starbursts, hearts, and a centered pair of cream roller skates with intertwined coral laces. Warmly nostalgic, stylish rather than childish. Limited ink palette of tangerine orange, deep chocolate brown, dusty lilac, buttercream, and small cobalt accents; subtle authentic screen-print texture and crisp registration. Balanced symmetrical composition with generous margins and a clear typographic hierarchy. Render this exact copy accurately and legibly, with no extra words: “LOVE ON A ROLL” at the top in large arched lettering; “MAYA + ELI” as the dominant headline; “invite you to celebrate their wedding”; “SATURDAY, SEPTEMBER 19, 2026”; “6:30 PM”; “STARLINE ROLLER HALL”; “1120 SUNSET AVENUE, LOS ANGELES”; “DINNER • DANCING • SKATING”; “RSVP BY AUGUST 15”; “MAYAANDELI.COM”. Premium editorial invitation design, print-ready appearance, all lettering correctly spelled and unobstructed.",
"width": 1280,
"height": 1792,
"seed": 260919,
"settings": {
"enhancePrompt": false,
"thinkingLevel": "high"
}
}{
"taskType": "imageInference",
"taskUUID": "1a00e826-5a8a-491d-b02f-dc34f2b1a39d",
"imageUUID": "bc3b85dd-ed74-48b6-ac1b-f7247eaac447",
"imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/bc3b85dd-ed74-48b6-ac1b-f7247eaac447.jpg",
"seed": 260919,
"cost": 0.0225
}Medieval Finance History Book Cover

Create a finished, print-ready front cover for an intelligent narrative history book. Exact title: “THE SACRED LEDGER”. Exact subtitle: “How Medieval Monasteries Built the Machinery of Modern Finance”. Exact author name: “ELEANOR VALE”. Central concept: an austere cathedral arch constructed from enlarged medieval accounting columns, handwritten numerals, ruled ledger lines, and fragments of illuminated manuscript; within the arch, a single small brass counting token catches the light. Sophisticated editorial collage combining archival paper texture, precise geometric composition, blind embossing, and restrained gold-foil details. Palette of warm parchment, oxblood red, soot black, and antique gold. Strong hierarchy: large condensed serif title across the upper third, subtitle clean and highly legible beneath it, author name centered at the bottom. Historical without looking like fantasy fiction, scholarly but commercially compelling, subtle atmosphere of secrecy and discovery. Flat straight-on cover artwork filling the entire frame, crisp typography, generous margins, premium trade publishing design. Include only the specified title, subtitle, and author name; no other words, symbols resembling words, publisher marks, reviews, badges, borders, spine, book mockup, hands, or background scene.
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:p-image@ideogram',
positivePrompt: 'Create a finished, print-ready front cover for an intelligent narrative history book. Exact title: “THE SACRED LEDGER”. Exact subtitle: “How Medieval Monasteries Built the Machinery of Modern Finance”. Exact author name: “ELEANOR VALE”. Central concept: an austere cathedral arch constructed from enlarged medieval accounting columns, handwritten numerals, ruled ledger lines, and fragments of illuminated manuscript; within the arch, a single small brass counting token catches the light. Sophisticated editorial collage combining archival paper texture, precise geometric composition, blind embossing, and restrained gold-foil details. Palette of warm parchment, oxblood red, soot black, and antique gold. Strong hierarchy: large condensed serif title across the upper third, subtitle clean and highly legible beneath it, author name centered at the bottom. Historical without looking like fantasy fiction, scholarly but commercially compelling, subtle atmosphere of secrecy and discovery. Flat straight-on cover artwork filling the entire frame, crisp typography, generous margins, premium trade publishing design. Include only the specified title, subtitle, and author name; no other words, symbols resembling words, publisher marks, reviews, badges, borders, spine, book mockup, hands, or background scene.',
width: 1024,
height: 1536,
seed: 184729,
settings: {
enhancePrompt: true,
thinkingLevel: 'high'
}
})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:p-image@ideogram",
"positivePrompt": "Create a finished, print-ready front cover for an intelligent narrative history book. Exact title: “THE SACRED LEDGER”. Exact subtitle: “How Medieval Monasteries Built the Machinery of Modern Finance”. Exact author name: “ELEANOR VALE”. Central concept: an austere cathedral arch constructed from enlarged medieval accounting columns, handwritten numerals, ruled ledger lines, and fragments of illuminated manuscript; within the arch, a single small brass counting token catches the light. Sophisticated editorial collage combining archival paper texture, precise geometric composition, blind embossing, and restrained gold-foil details. Palette of warm parchment, oxblood red, soot black, and antique gold. Strong hierarchy: large condensed serif title across the upper third, subtitle clean and highly legible beneath it, author name centered at the bottom. Historical without looking like fantasy fiction, scholarly but commercially compelling, subtle atmosphere of secrecy and discovery. Flat straight-on cover artwork filling the entire frame, crisp typography, generous margins, premium trade publishing design. Include only the specified title, subtitle, and author name; no other words, symbols resembling words, publisher marks, reviews, badges, borders, spine, book mockup, hands, or background scene.",
"width": 1024,
"height": 1536,
"seed": 184729,
"settings": {
"enhancePrompt": True,
"thinkingLevel": "high"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "4720c250-aa1b-4f43-99be-f1a9cdfb7005",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished, print-ready front cover for an intelligent narrative history book. Exact title: “THE SACRED LEDGER”. Exact subtitle: “How Medieval Monasteries Built the Machinery of Modern Finance”. Exact author name: “ELEANOR VALE”. Central concept: an austere cathedral arch constructed from enlarged medieval accounting columns, handwritten numerals, ruled ledger lines, and fragments of illuminated manuscript; within the arch, a single small brass counting token catches the light. Sophisticated editorial collage combining archival paper texture, precise geometric composition, blind embossing, and restrained gold-foil details. Palette of warm parchment, oxblood red, soot black, and antique gold. Strong hierarchy: large condensed serif title across the upper third, subtitle clean and highly legible beneath it, author name centered at the bottom. Historical without looking like fantasy fiction, scholarly but commercially compelling, subtle atmosphere of secrecy and discovery. Flat straight-on cover artwork filling the entire frame, crisp typography, generous margins, premium trade publishing design. Include only the specified title, subtitle, and author name; no other words, symbols resembling words, publisher marks, reviews, badges, borders, spine, book mockup, hands, or background scene.",
"width": 1024,
"height": 1536,
"seed": 184729,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}
]'runware run prunaai:p-image@ideogram \
positivePrompt="Create a finished, print-ready front cover for an intelligent narrative history book. Exact title: “THE SACRED LEDGER”. Exact subtitle: “How Medieval Monasteries Built the Machinery of Modern Finance”. Exact author name: “ELEANOR VALE”. Central concept: an austere cathedral arch constructed from enlarged medieval accounting columns, handwritten numerals, ruled ledger lines, and fragments of illuminated manuscript; within the arch, a single small brass counting token catches the light. Sophisticated editorial collage combining archival paper texture, precise geometric composition, blind embossing, and restrained gold-foil details. Palette of warm parchment, oxblood red, soot black, and antique gold. Strong hierarchy: large condensed serif title across the upper third, subtitle clean and highly legible beneath it, author name centered at the bottom. Historical without looking like fantasy fiction, scholarly but commercially compelling, subtle atmosphere of secrecy and discovery. Flat straight-on cover artwork filling the entire frame, crisp typography, generous margins, premium trade publishing design. Include only the specified title, subtitle, and author name; no other words, symbols resembling words, publisher marks, reviews, badges, borders, spine, book mockup, hands, or background scene." \
width=1024 \
height=1536 \
seed=184729 \
settings.enhancePrompt=true \
settings.thinkingLevel=high{
"taskType": "imageInference",
"taskUUID": "4720c250-aa1b-4f43-99be-f1a9cdfb7005",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished, print-ready front cover for an intelligent narrative history book. Exact title: “THE SACRED LEDGER”. Exact subtitle: “How Medieval Monasteries Built the Machinery of Modern Finance”. Exact author name: “ELEANOR VALE”. Central concept: an austere cathedral arch constructed from enlarged medieval accounting columns, handwritten numerals, ruled ledger lines, and fragments of illuminated manuscript; within the arch, a single small brass counting token catches the light. Sophisticated editorial collage combining archival paper texture, precise geometric composition, blind embossing, and restrained gold-foil details. Palette of warm parchment, oxblood red, soot black, and antique gold. Strong hierarchy: large condensed serif title across the upper third, subtitle clean and highly legible beneath it, author name centered at the bottom. Historical without looking like fantasy fiction, scholarly but commercially compelling, subtle atmosphere of secrecy and discovery. Flat straight-on cover artwork filling the entire frame, crisp typography, generous margins, premium trade publishing design. Include only the specified title, subtitle, and author name; no other words, symbols resembling words, publisher marks, reviews, badges, borders, spine, book mockup, hands, or background scene.",
"width": 1024,
"height": 1536,
"seed": 184729,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}{
"taskType": "imageInference",
"taskUUID": "4720c250-aa1b-4f43-99be-f1a9cdfb7005",
"imageUUID": "15e1918f-e4aa-435a-947a-9408195b00b8",
"imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/15e1918f-e4aa-435a-947a-9408195b00b8.jpg",
"seed": 184729,
"cost": 0.0225
}Biofabrication Trade Magazine Cover

Create a finished, print-ready front cover for a premium materials and design trade magazine. Portrait format with a strict Swiss editorial grid. Hero image: an art-directed studio still life of mycelium composite samples—creamy molded packaging, a porous acoustic tile, and a small rust-colored biofabric swatch—stacked as precise geometric forms on a warm ivory surface. Show believable fibrous textures, subtle imperfections, crisp edges, and soft directional daylight casting long clean shadows. Add restrained cobalt-blue rules and one vermilion-red circular issue marker. Sophisticated, optimistic, tactile, contemporary industrial design photography; warm ivory, mushroom beige, cobalt blue, vermilion, and charcoal palette. Large masthead at the top in bold condensed charcoal sans serif, spelled exactly: “MATERIAL FUTURES”. Main feature headline in the lower third, large and perfectly legible, spelled exactly: “GROWN, NOT MADE”. Smaller uppercase deck beneath it, spelled exactly: “12 MATERIALS RESHAPING INTERIORS”. Vermilion issue marker text, spelled exactly: “THE MYCELIUM ISSUE”. Include only these specified words, with no additional copy, logos, barcode, mockup, border, hands, or background environment. Strong hierarchy, generous negative space, precise kerning, polished independent magazine art direction.
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:p-image@ideogram',
positivePrompt: 'Create a finished, print-ready front cover for a premium materials and design trade magazine. Portrait format with a strict Swiss editorial grid. Hero image: an art-directed studio still life of mycelium composite samples—creamy molded packaging, a porous acoustic tile, and a small rust-colored biofabric swatch—stacked as precise geometric forms on a warm ivory surface. Show believable fibrous textures, subtle imperfections, crisp edges, and soft directional daylight casting long clean shadows. Add restrained cobalt-blue rules and one vermilion-red circular issue marker. Sophisticated, optimistic, tactile, contemporary industrial design photography; warm ivory, mushroom beige, cobalt blue, vermilion, and charcoal palette. Large masthead at the top in bold condensed charcoal sans serif, spelled exactly: “MATERIAL FUTURES”. Main feature headline in the lower third, large and perfectly legible, spelled exactly: “GROWN, NOT MADE”. Smaller uppercase deck beneath it, spelled exactly: “12 MATERIALS RESHAPING INTERIORS”. Vermilion issue marker text, spelled exactly: “THE MYCELIUM ISSUE”. Include only these specified words, with no additional copy, logos, barcode, mockup, border, hands, or background environment. Strong hierarchy, generous negative space, precise kerning, polished independent magazine art direction.',
width: 1056,
height: 1360,
seed: 284731,
settings: {
enhancePrompt: false,
thinkingLevel: 'high'
}
})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:p-image@ideogram",
"positivePrompt": "Create a finished, print-ready front cover for a premium materials and design trade magazine. Portrait format with a strict Swiss editorial grid. Hero image: an art-directed studio still life of mycelium composite samples—creamy molded packaging, a porous acoustic tile, and a small rust-colored biofabric swatch—stacked as precise geometric forms on a warm ivory surface. Show believable fibrous textures, subtle imperfections, crisp edges, and soft directional daylight casting long clean shadows. Add restrained cobalt-blue rules and one vermilion-red circular issue marker. Sophisticated, optimistic, tactile, contemporary industrial design photography; warm ivory, mushroom beige, cobalt blue, vermilion, and charcoal palette. Large masthead at the top in bold condensed charcoal sans serif, spelled exactly: “MATERIAL FUTURES”. Main feature headline in the lower third, large and perfectly legible, spelled exactly: “GROWN, NOT MADE”. Smaller uppercase deck beneath it, spelled exactly: “12 MATERIALS RESHAPING INTERIORS”. Vermilion issue marker text, spelled exactly: “THE MYCELIUM ISSUE”. Include only these specified words, with no additional copy, logos, barcode, mockup, border, hands, or background environment. Strong hierarchy, generous negative space, precise kerning, polished independent magazine art direction.",
"width": 1056,
"height": 1360,
"seed": 284731,
"settings": {
"enhancePrompt": False,
"thinkingLevel": "high"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "83d3dae9-41cb-428c-bdf8-6523a3d6cc5e",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished, print-ready front cover for a premium materials and design trade magazine. Portrait format with a strict Swiss editorial grid. Hero image: an art-directed studio still life of mycelium composite samples—creamy molded packaging, a porous acoustic tile, and a small rust-colored biofabric swatch—stacked as precise geometric forms on a warm ivory surface. Show believable fibrous textures, subtle imperfections, crisp edges, and soft directional daylight casting long clean shadows. Add restrained cobalt-blue rules and one vermilion-red circular issue marker. Sophisticated, optimistic, tactile, contemporary industrial design photography; warm ivory, mushroom beige, cobalt blue, vermilion, and charcoal palette. Large masthead at the top in bold condensed charcoal sans serif, spelled exactly: “MATERIAL FUTURES”. Main feature headline in the lower third, large and perfectly legible, spelled exactly: “GROWN, NOT MADE”. Smaller uppercase deck beneath it, spelled exactly: “12 MATERIALS RESHAPING INTERIORS”. Vermilion issue marker text, spelled exactly: “THE MYCELIUM ISSUE”. Include only these specified words, with no additional copy, logos, barcode, mockup, border, hands, or background environment. Strong hierarchy, generous negative space, precise kerning, polished independent magazine art direction.",
"width": 1056,
"height": 1360,
"seed": 284731,
"settings": {
"enhancePrompt": false,
"thinkingLevel": "high"
}
}
]'runware run prunaai:p-image@ideogram \
positivePrompt="Create a finished, print-ready front cover for a premium materials and design trade magazine. Portrait format with a strict Swiss editorial grid. Hero image: an art-directed studio still life of mycelium composite samples—creamy molded packaging, a porous acoustic tile, and a small rust-colored biofabric swatch—stacked as precise geometric forms on a warm ivory surface. Show believable fibrous textures, subtle imperfections, crisp edges, and soft directional daylight casting long clean shadows. Add restrained cobalt-blue rules and one vermilion-red circular issue marker. Sophisticated, optimistic, tactile, contemporary industrial design photography; warm ivory, mushroom beige, cobalt blue, vermilion, and charcoal palette. Large masthead at the top in bold condensed charcoal sans serif, spelled exactly: “MATERIAL FUTURES”. Main feature headline in the lower third, large and perfectly legible, spelled exactly: “GROWN, NOT MADE”. Smaller uppercase deck beneath it, spelled exactly: “12 MATERIALS RESHAPING INTERIORS”. Vermilion issue marker text, spelled exactly: “THE MYCELIUM ISSUE”. Include only these specified words, with no additional copy, logos, barcode, mockup, border, hands, or background environment. Strong hierarchy, generous negative space, precise kerning, polished independent magazine art direction." \
width=1056 \
height=1360 \
seed=284731 \
settings.enhancePrompt=false \
settings.thinkingLevel=high{
"taskType": "imageInference",
"taskUUID": "83d3dae9-41cb-428c-bdf8-6523a3d6cc5e",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished, print-ready front cover for a premium materials and design trade magazine. Portrait format with a strict Swiss editorial grid. Hero image: an art-directed studio still life of mycelium composite samples—creamy molded packaging, a porous acoustic tile, and a small rust-colored biofabric swatch—stacked as precise geometric forms on a warm ivory surface. Show believable fibrous textures, subtle imperfections, crisp edges, and soft directional daylight casting long clean shadows. Add restrained cobalt-blue rules and one vermilion-red circular issue marker. Sophisticated, optimistic, tactile, contemporary industrial design photography; warm ivory, mushroom beige, cobalt blue, vermilion, and charcoal palette. Large masthead at the top in bold condensed charcoal sans serif, spelled exactly: “MATERIAL FUTURES”. Main feature headline in the lower third, large and perfectly legible, spelled exactly: “GROWN, NOT MADE”. Smaller uppercase deck beneath it, spelled exactly: “12 MATERIALS RESHAPING INTERIORS”. Vermilion issue marker text, spelled exactly: “THE MYCELIUM ISSUE”. Include only these specified words, with no additional copy, logos, barcode, mockup, border, hands, or background environment. Strong hierarchy, generous negative space, precise kerning, polished independent magazine art direction.",
"width": 1056,
"height": 1360,
"seed": 284731,
"settings": {
"enhancePrompt": false,
"thinkingLevel": "high"
}
}{
"taskType": "imageInference",
"taskUUID": "83d3dae9-41cb-428c-bdf8-6523a3d6cc5e",
"imageUUID": "9c3dfd2e-7924-466e-8eaf-4e33cf35b970",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/9c3dfd2e-7924-466e-8eaf-4e33cf35b970.jpg",
"seed": 284731,
"cost": 0.0225
}Food Waste Transit Shelter Ad

Create a finished vertical transit-shelter advertisement for a municipal food-waste collection campaign, shown as flat full-bleed artwork rather than an environmental mockup. Art direction: a sumptuous Dutch Golden Age still-life reimagined with contemporary kitchen scraps. Dramatically lit banana peels, coffee grounds, eggshells, carrot tops, wilted herbs, apple cores and lemon rinds are arranged elegantly on a dark stone table above a small mound of rich black compost. Tiny green shoots emerge from the compost, suggesting renewal. Deep near-black background, warm chiaroscuro, tactile painterly realism, restrained palette of umber, ochre and moss green, with one vivid chartreuse graphic accent. Premium museum-campaign sophistication, surprising but appetizing, never dirty or grotesque. Strong negative space at the top. Render the exact headline in large, crisp, condensed uppercase chartreuse lettering: "SCRAPS HAVE A SECOND ACT." At the bottom, render the exact supporting line in small clean cream sans serif: "TURN FOOD WASTE INTO CITY COMPOST." Include a minimal chartreuse food-scrap bin pictogram beside the supporting line. Precise editorial grid, highly legible typography, generous margins, print-ready advertising composition. No logos, no website, no buttons, no additional words, no frame, no bus shelter, no street scene.
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:p-image@ideogram',
positivePrompt: 'Create a finished vertical transit-shelter advertisement for a municipal food-waste collection campaign, shown as flat full-bleed artwork rather than an environmental mockup. Art direction: a sumptuous Dutch Golden Age still-life reimagined with contemporary kitchen scraps. Dramatically lit banana peels, coffee grounds, eggshells, carrot tops, wilted herbs, apple cores and lemon rinds are arranged elegantly on a dark stone table above a small mound of rich black compost. Tiny green shoots emerge from the compost, suggesting renewal. Deep near-black background, warm chiaroscuro, tactile painterly realism, restrained palette of umber, ochre and moss green, with one vivid chartreuse graphic accent. Premium museum-campaign sophistication, surprising but appetizing, never dirty or grotesque. Strong negative space at the top. Render the exact headline in large, crisp, condensed uppercase chartreuse lettering: "SCRAPS HAVE A SECOND ACT." At the bottom, render the exact supporting line in small clean cream sans serif: "TURN FOOD WASTE INTO CITY COMPOST." Include a minimal chartreuse food-scrap bin pictogram beside the supporting line. Precise editorial grid, highly legible typography, generous margins, print-ready advertising composition. No logos, no website, no buttons, no additional words, no frame, no bus shelter, no street scene.',
width: 1024,
height: 1536,
seed: 18473052,
settings: {
enhancePrompt: false,
thinkingLevel: 'high'
}
})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:p-image@ideogram",
"positivePrompt": "Create a finished vertical transit-shelter advertisement for a municipal food-waste collection campaign, shown as flat full-bleed artwork rather than an environmental mockup. Art direction: a sumptuous Dutch Golden Age still-life reimagined with contemporary kitchen scraps. Dramatically lit banana peels, coffee grounds, eggshells, carrot tops, wilted herbs, apple cores and lemon rinds are arranged elegantly on a dark stone table above a small mound of rich black compost. Tiny green shoots emerge from the compost, suggesting renewal. Deep near-black background, warm chiaroscuro, tactile painterly realism, restrained palette of umber, ochre and moss green, with one vivid chartreuse graphic accent. Premium museum-campaign sophistication, surprising but appetizing, never dirty or grotesque. Strong negative space at the top. Render the exact headline in large, crisp, condensed uppercase chartreuse lettering: \"SCRAPS HAVE A SECOND ACT.\" At the bottom, render the exact supporting line in small clean cream sans serif: \"TURN FOOD WASTE INTO CITY COMPOST.\" Include a minimal chartreuse food-scrap bin pictogram beside the supporting line. Precise editorial grid, highly legible typography, generous margins, print-ready advertising composition. No logos, no website, no buttons, no additional words, no frame, no bus shelter, no street scene.",
"width": 1024,
"height": 1536,
"seed": 18473052,
"settings": {
"enhancePrompt": False,
"thinkingLevel": "high"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "4e882ebf-8b5a-4717-a9a3-a76ad0f9e4b4",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished vertical transit-shelter advertisement for a municipal food-waste collection campaign, shown as flat full-bleed artwork rather than an environmental mockup. Art direction: a sumptuous Dutch Golden Age still-life reimagined with contemporary kitchen scraps. Dramatically lit banana peels, coffee grounds, eggshells, carrot tops, wilted herbs, apple cores and lemon rinds are arranged elegantly on a dark stone table above a small mound of rich black compost. Tiny green shoots emerge from the compost, suggesting renewal. Deep near-black background, warm chiaroscuro, tactile painterly realism, restrained palette of umber, ochre and moss green, with one vivid chartreuse graphic accent. Premium museum-campaign sophistication, surprising but appetizing, never dirty or grotesque. Strong negative space at the top. Render the exact headline in large, crisp, condensed uppercase chartreuse lettering: \"SCRAPS HAVE A SECOND ACT.\" At the bottom, render the exact supporting line in small clean cream sans serif: \"TURN FOOD WASTE INTO CITY COMPOST.\" Include a minimal chartreuse food-scrap bin pictogram beside the supporting line. Precise editorial grid, highly legible typography, generous margins, print-ready advertising composition. No logos, no website, no buttons, no additional words, no frame, no bus shelter, no street scene.",
"width": 1024,
"height": 1536,
"seed": 18473052,
"settings": {
"enhancePrompt": false,
"thinkingLevel": "high"
}
}
]'runware run prunaai:p-image@ideogram \
positivePrompt="Create a finished vertical transit-shelter advertisement for a municipal food-waste collection campaign, shown as flat full-bleed artwork rather than an environmental mockup. Art direction: a sumptuous Dutch Golden Age still-life reimagined with contemporary kitchen scraps. Dramatically lit banana peels, coffee grounds, eggshells, carrot tops, wilted herbs, apple cores and lemon rinds are arranged elegantly on a dark stone table above a small mound of rich black compost. Tiny green shoots emerge from the compost, suggesting renewal. Deep near-black background, warm chiaroscuro, tactile painterly realism, restrained palette of umber, ochre and moss green, with one vivid chartreuse graphic accent. Premium museum-campaign sophistication, surprising but appetizing, never dirty or grotesque. Strong negative space at the top. Render the exact headline in large, crisp, condensed uppercase chartreuse lettering: \"SCRAPS HAVE A SECOND ACT.\" At the bottom, render the exact supporting line in small clean cream sans serif: \"TURN FOOD WASTE INTO CITY COMPOST.\" Include a minimal chartreuse food-scrap bin pictogram beside the supporting line. Precise editorial grid, highly legible typography, generous margins, print-ready advertising composition. No logos, no website, no buttons, no additional words, no frame, no bus shelter, no street scene." \
width=1024 \
height=1536 \
seed=18473052 \
settings.enhancePrompt=false \
settings.thinkingLevel=high{
"taskType": "imageInference",
"taskUUID": "4e882ebf-8b5a-4717-a9a3-a76ad0f9e4b4",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished vertical transit-shelter advertisement for a municipal food-waste collection campaign, shown as flat full-bleed artwork rather than an environmental mockup. Art direction: a sumptuous Dutch Golden Age still-life reimagined with contemporary kitchen scraps. Dramatically lit banana peels, coffee grounds, eggshells, carrot tops, wilted herbs, apple cores and lemon rinds are arranged elegantly on a dark stone table above a small mound of rich black compost. Tiny green shoots emerge from the compost, suggesting renewal. Deep near-black background, warm chiaroscuro, tactile painterly realism, restrained palette of umber, ochre and moss green, with one vivid chartreuse graphic accent. Premium museum-campaign sophistication, surprising but appetizing, never dirty or grotesque. Strong negative space at the top. Render the exact headline in large, crisp, condensed uppercase chartreuse lettering: \"SCRAPS HAVE A SECOND ACT.\" At the bottom, render the exact supporting line in small clean cream sans serif: \"TURN FOOD WASTE INTO CITY COMPOST.\" Include a minimal chartreuse food-scrap bin pictogram beside the supporting line. Precise editorial grid, highly legible typography, generous margins, print-ready advertising composition. No logos, no website, no buttons, no additional words, no frame, no bus shelter, no street scene.",
"width": 1024,
"height": 1536,
"seed": 18473052,
"settings": {
"enhancePrompt": false,
"thinkingLevel": "high"
}
}{
"taskType": "imageInference",
"taskUUID": "4e882ebf-8b5a-4717-a9a3-a76ad0f9e4b4",
"imageUUID": "e6caf84e-8e3b-427b-bea0-43c63aaf34ba",
"imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/e6caf84e-8e3b-427b-bea0-43c63aaf34ba.jpg",
"seed": 18473052,
"cost": 0.0225
}Offshore Safety Manga Cover

Create a finished vertical front cover for a professional safety-training manga commissioned by the offshore wind industry. Dynamic low-angle illustration of a young female wind turbine technician in navy coveralls, white climbing helmet, clear safety glasses, gloves, and a bright safety-orange harness, securely clipped to the exterior ladder of an offshore turbine tower. She looks focused and capable while checking her locking carabiner with one hand. Far below, slate-blue waves break around the turbine foundation and a small crew transfer vessel approaches; additional turbines recede toward a dramatic storm front. Authentic fall-arrest equipment and believable industrial details. Contemporary seinen manga art direction: precise ink contours, expressive but realistic character design, bold cel shading, speed-line accents in the clouds and sea, restrained halftone textures, premium graphic-novel finish. Limited palette of deep navy, cold seafoam, safety orange, warm cream, and white. Strong diagonal composition with generous clear title space across the upper quarter. Render the exact large title “WIND SHIFT” in condensed cream block lettering with an orange inline, and the exact subtitle “OFFSHORE SAFETY HANDBOOK” directly beneath in small clean uppercase sans serif. Add no other words, logos, badges, borders, barcodes, or publisher marks. Flat print-ready cover artwork, not a book mockup, no spine, no 3D presentation.
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:p-image@ideogram',
positivePrompt: 'Create a finished vertical front cover for a professional safety-training manga commissioned by the offshore wind industry. Dynamic low-angle illustration of a young female wind turbine technician in navy coveralls, white climbing helmet, clear safety glasses, gloves, and a bright safety-orange harness, securely clipped to the exterior ladder of an offshore turbine tower. She looks focused and capable while checking her locking carabiner with one hand. Far below, slate-blue waves break around the turbine foundation and a small crew transfer vessel approaches; additional turbines recede toward a dramatic storm front. Authentic fall-arrest equipment and believable industrial details. Contemporary seinen manga art direction: precise ink contours, expressive but realistic character design, bold cel shading, speed-line accents in the clouds and sea, restrained halftone textures, premium graphic-novel finish. Limited palette of deep navy, cold seafoam, safety orange, warm cream, and white. Strong diagonal composition with generous clear title space across the upper quarter. Render the exact large title “WIND SHIFT” in condensed cream block lettering with an orange inline, and the exact subtitle “OFFSHORE SAFETY HANDBOOK” directly beneath in small clean uppercase sans serif. Add no other words, logos, badges, borders, barcodes, or publisher marks. Flat print-ready cover artwork, not a book mockup, no spine, no 3D presentation.',
width: 1024,
height: 1536,
seed: 2847319,
settings: {
enhancePrompt: true,
thinkingLevel: 'high'
}
})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:p-image@ideogram",
"positivePrompt": "Create a finished vertical front cover for a professional safety-training manga commissioned by the offshore wind industry. Dynamic low-angle illustration of a young female wind turbine technician in navy coveralls, white climbing helmet, clear safety glasses, gloves, and a bright safety-orange harness, securely clipped to the exterior ladder of an offshore turbine tower. She looks focused and capable while checking her locking carabiner with one hand. Far below, slate-blue waves break around the turbine foundation and a small crew transfer vessel approaches; additional turbines recede toward a dramatic storm front. Authentic fall-arrest equipment and believable industrial details. Contemporary seinen manga art direction: precise ink contours, expressive but realistic character design, bold cel shading, speed-line accents in the clouds and sea, restrained halftone textures, premium graphic-novel finish. Limited palette of deep navy, cold seafoam, safety orange, warm cream, and white. Strong diagonal composition with generous clear title space across the upper quarter. Render the exact large title “WIND SHIFT” in condensed cream block lettering with an orange inline, and the exact subtitle “OFFSHORE SAFETY HANDBOOK” directly beneath in small clean uppercase sans serif. Add no other words, logos, badges, borders, barcodes, or publisher marks. Flat print-ready cover artwork, not a book mockup, no spine, no 3D presentation.",
"width": 1024,
"height": 1536,
"seed": 2847319,
"settings": {
"enhancePrompt": True,
"thinkingLevel": "high"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "15a14359-9426-44c1-96da-91a5e4b0c99b",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished vertical front cover for a professional safety-training manga commissioned by the offshore wind industry. Dynamic low-angle illustration of a young female wind turbine technician in navy coveralls, white climbing helmet, clear safety glasses, gloves, and a bright safety-orange harness, securely clipped to the exterior ladder of an offshore turbine tower. She looks focused and capable while checking her locking carabiner with one hand. Far below, slate-blue waves break around the turbine foundation and a small crew transfer vessel approaches; additional turbines recede toward a dramatic storm front. Authentic fall-arrest equipment and believable industrial details. Contemporary seinen manga art direction: precise ink contours, expressive but realistic character design, bold cel shading, speed-line accents in the clouds and sea, restrained halftone textures, premium graphic-novel finish. Limited palette of deep navy, cold seafoam, safety orange, warm cream, and white. Strong diagonal composition with generous clear title space across the upper quarter. Render the exact large title “WIND SHIFT” in condensed cream block lettering with an orange inline, and the exact subtitle “OFFSHORE SAFETY HANDBOOK” directly beneath in small clean uppercase sans serif. Add no other words, logos, badges, borders, barcodes, or publisher marks. Flat print-ready cover artwork, not a book mockup, no spine, no 3D presentation.",
"width": 1024,
"height": 1536,
"seed": 2847319,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}
]'runware run prunaai:p-image@ideogram \
positivePrompt="Create a finished vertical front cover for a professional safety-training manga commissioned by the offshore wind industry. Dynamic low-angle illustration of a young female wind turbine technician in navy coveralls, white climbing helmet, clear safety glasses, gloves, and a bright safety-orange harness, securely clipped to the exterior ladder of an offshore turbine tower. She looks focused and capable while checking her locking carabiner with one hand. Far below, slate-blue waves break around the turbine foundation and a small crew transfer vessel approaches; additional turbines recede toward a dramatic storm front. Authentic fall-arrest equipment and believable industrial details. Contemporary seinen manga art direction: precise ink contours, expressive but realistic character design, bold cel shading, speed-line accents in the clouds and sea, restrained halftone textures, premium graphic-novel finish. Limited palette of deep navy, cold seafoam, safety orange, warm cream, and white. Strong diagonal composition with generous clear title space across the upper quarter. Render the exact large title “WIND SHIFT” in condensed cream block lettering with an orange inline, and the exact subtitle “OFFSHORE SAFETY HANDBOOK” directly beneath in small clean uppercase sans serif. Add no other words, logos, badges, borders, barcodes, or publisher marks. Flat print-ready cover artwork, not a book mockup, no spine, no 3D presentation." \
width=1024 \
height=1536 \
seed=2847319 \
settings.enhancePrompt=true \
settings.thinkingLevel=high{
"taskType": "imageInference",
"taskUUID": "15a14359-9426-44c1-96da-91a5e4b0c99b",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a finished vertical front cover for a professional safety-training manga commissioned by the offshore wind industry. Dynamic low-angle illustration of a young female wind turbine technician in navy coveralls, white climbing helmet, clear safety glasses, gloves, and a bright safety-orange harness, securely clipped to the exterior ladder of an offshore turbine tower. She looks focused and capable while checking her locking carabiner with one hand. Far below, slate-blue waves break around the turbine foundation and a small crew transfer vessel approaches; additional turbines recede toward a dramatic storm front. Authentic fall-arrest equipment and believable industrial details. Contemporary seinen manga art direction: precise ink contours, expressive but realistic character design, bold cel shading, speed-line accents in the clouds and sea, restrained halftone textures, premium graphic-novel finish. Limited palette of deep navy, cold seafoam, safety orange, warm cream, and white. Strong diagonal composition with generous clear title space across the upper quarter. Render the exact large title “WIND SHIFT” in condensed cream block lettering with an orange inline, and the exact subtitle “OFFSHORE SAFETY HANDBOOK” directly beneath in small clean uppercase sans serif. Add no other words, logos, badges, borders, barcodes, or publisher marks. Flat print-ready cover artwork, not a book mockup, no spine, no 3D presentation.",
"width": 1024,
"height": 1536,
"seed": 2847319,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}{
"taskType": "imageInference",
"taskUUID": "15a14359-9426-44c1-96da-91a5e4b0c99b",
"imageUUID": "a74971ba-89e3-4bf1-88ac-5ceb5fd57f96",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/a74971ba-89e3-4bf1-88ac-5ceb5fd57f96.jpg",
"seed": 2847319,
"cost": 0.0225
}Night Train Supper Menu Photograph

Vertical editorial food photograph commissioned as the full-bleed opener for a luxury night train's winter supper menu. On a compact linen-covered sleeper-car table: a refined plate of cedar-smoked trout with crushed warm potatoes, dill oil, shaved pickled cucumber, horseradish cream, and delicate rye crisps, accompanied by a cut-crystal glass of sparkling blackcurrant cordial with condensation. Brushed brass cutlery and a folded oxblood napkin, no logos. Rain-streaked train window in the background with soft lateral motion blur from passing snowy countryside. Intimate cinematic lighting: warm amber carriage lamps sculpting the food against deep cobalt-blue night, subtle reflections on brass and crystal. Premium hospitality photography, natural food texture, believable portioning, shallow depth of field, restrained composition, sophisticated Eastern European rail atmosphere. Leave calm darker space in the upper third for optional menu design placement, but include no lettering, labels, watermark, border, menu mockup, people, or hands. One finished standalone photograph.
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:p-image@ideogram',
positivePrompt: 'Vertical editorial food photograph commissioned as the full-bleed opener for a luxury night train\'s winter supper menu. On a compact linen-covered sleeper-car table: a refined plate of cedar-smoked trout with crushed warm potatoes, dill oil, shaved pickled cucumber, horseradish cream, and delicate rye crisps, accompanied by a cut-crystal glass of sparkling blackcurrant cordial with condensation. Brushed brass cutlery and a folded oxblood napkin, no logos. Rain-streaked train window in the background with soft lateral motion blur from passing snowy countryside. Intimate cinematic lighting: warm amber carriage lamps sculpting the food against deep cobalt-blue night, subtle reflections on brass and crystal. Premium hospitality photography, natural food texture, believable portioning, shallow depth of field, restrained composition, sophisticated Eastern European rail atmosphere. Leave calm darker space in the upper third for optional menu design placement, but include no lettering, labels, watermark, border, menu mockup, people, or hands. One finished standalone photograph.',
width: 1280,
height: 1600,
settings: {
enhancePrompt: true,
thinkingLevel: 'high'
}
})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:p-image@ideogram",
"positivePrompt": "Vertical editorial food photograph commissioned as the full-bleed opener for a luxury night train's winter supper menu. On a compact linen-covered sleeper-car table: a refined plate of cedar-smoked trout with crushed warm potatoes, dill oil, shaved pickled cucumber, horseradish cream, and delicate rye crisps, accompanied by a cut-crystal glass of sparkling blackcurrant cordial with condensation. Brushed brass cutlery and a folded oxblood napkin, no logos. Rain-streaked train window in the background with soft lateral motion blur from passing snowy countryside. Intimate cinematic lighting: warm amber carriage lamps sculpting the food against deep cobalt-blue night, subtle reflections on brass and crystal. Premium hospitality photography, natural food texture, believable portioning, shallow depth of field, restrained composition, sophisticated Eastern European rail atmosphere. Leave calm darker space in the upper third for optional menu design placement, but include no lettering, labels, watermark, border, menu mockup, people, or hands. One finished standalone photograph.",
"width": 1280,
"height": 1600,
"settings": {
"enhancePrompt": True,
"thinkingLevel": "high"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "8cd6e771-bf89-4816-9d6f-4df1ee5a95c2",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Vertical editorial food photograph commissioned as the full-bleed opener for a luxury night train's winter supper menu. On a compact linen-covered sleeper-car table: a refined plate of cedar-smoked trout with crushed warm potatoes, dill oil, shaved pickled cucumber, horseradish cream, and delicate rye crisps, accompanied by a cut-crystal glass of sparkling blackcurrant cordial with condensation. Brushed brass cutlery and a folded oxblood napkin, no logos. Rain-streaked train window in the background with soft lateral motion blur from passing snowy countryside. Intimate cinematic lighting: warm amber carriage lamps sculpting the food against deep cobalt-blue night, subtle reflections on brass and crystal. Premium hospitality photography, natural food texture, believable portioning, shallow depth of field, restrained composition, sophisticated Eastern European rail atmosphere. Leave calm darker space in the upper third for optional menu design placement, but include no lettering, labels, watermark, border, menu mockup, people, or hands. One finished standalone photograph.",
"width": 1280,
"height": 1600,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}
]'runware run prunaai:p-image@ideogram \
positivePrompt="Vertical editorial food photograph commissioned as the full-bleed opener for a luxury night train's winter supper menu. On a compact linen-covered sleeper-car table: a refined plate of cedar-smoked trout with crushed warm potatoes, dill oil, shaved pickled cucumber, horseradish cream, and delicate rye crisps, accompanied by a cut-crystal glass of sparkling blackcurrant cordial with condensation. Brushed brass cutlery and a folded oxblood napkin, no logos. Rain-streaked train window in the background with soft lateral motion blur from passing snowy countryside. Intimate cinematic lighting: warm amber carriage lamps sculpting the food against deep cobalt-blue night, subtle reflections on brass and crystal. Premium hospitality photography, natural food texture, believable portioning, shallow depth of field, restrained composition, sophisticated Eastern European rail atmosphere. Leave calm darker space in the upper third for optional menu design placement, but include no lettering, labels, watermark, border, menu mockup, people, or hands. One finished standalone photograph." \
width=1280 \
height=1600 \
settings.enhancePrompt=true \
settings.thinkingLevel=high{
"taskType": "imageInference",
"taskUUID": "8cd6e771-bf89-4816-9d6f-4df1ee5a95c2",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Vertical editorial food photograph commissioned as the full-bleed opener for a luxury night train's winter supper menu. On a compact linen-covered sleeper-car table: a refined plate of cedar-smoked trout with crushed warm potatoes, dill oil, shaved pickled cucumber, horseradish cream, and delicate rye crisps, accompanied by a cut-crystal glass of sparkling blackcurrant cordial with condensation. Brushed brass cutlery and a folded oxblood napkin, no logos. Rain-streaked train window in the background with soft lateral motion blur from passing snowy countryside. Intimate cinematic lighting: warm amber carriage lamps sculpting the food against deep cobalt-blue night, subtle reflections on brass and crystal. Premium hospitality photography, natural food texture, believable portioning, shallow depth of field, restrained composition, sophisticated Eastern European rail atmosphere. Leave calm darker space in the upper third for optional menu design placement, but include no lettering, labels, watermark, border, menu mockup, people, or hands. One finished standalone photograph.",
"width": 1280,
"height": 1600,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}{
"taskType": "imageInference",
"taskUUID": "8cd6e771-bf89-4816-9d6f-4df1ee5a95c2",
"imageUUID": "d3c9e7c3-6903-4579-974d-e775372f0f96",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/d3c9e7c3-6903-4579-974d-e775372f0f96.jpg",
"seed": 577418469,
"cost": 0.0225
}Urban Beekeeper Personal Branding Portrait

Create a photorealistic personal branding photoshoot portrait of a confident 58-year-old Black woman who runs an urban beekeeping consultancy. She stands beside painted wooden hives in a lush rooftop apiary, with a softly blurred city skyline and pollinator garden behind her. Style her in impeccably tailored deep-indigo work coveralls over a saffron silk shirt, sturdy leather gloves tucked into one hand, and a cream beekeeping veil pushed back like a sculptural hood so her face remains fully visible. Relaxed upright posture, direct warm gaze, subtle smile, quiet authority. Frame from mid-thigh upward in a vertical 4:5 composition, subject slightly off-center with natural negative space. Late-afternoon sunlight filtered through light cloud, soft golden rim light, gentle fill on the face, cobalt-blue shadows, honey-gold highlights, editorial color grading. Premium environmental portrait combining contemporary fashion photography with authentic documentary detail, medium-format camera character, 80mm lens, shallow depth of field, realistic skin texture, crisp eyes, natural hands, refined but not overly retouched. No text, logos, signage, watermark, extra people, or visible swarm.
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:p-image@ideogram',
positivePrompt: 'Create a photorealistic personal branding photoshoot portrait of a confident 58-year-old Black woman who runs an urban beekeeping consultancy. She stands beside painted wooden hives in a lush rooftop apiary, with a softly blurred city skyline and pollinator garden behind her. Style her in impeccably tailored deep-indigo work coveralls over a saffron silk shirt, sturdy leather gloves tucked into one hand, and a cream beekeeping veil pushed back like a sculptural hood so her face remains fully visible. Relaxed upright posture, direct warm gaze, subtle smile, quiet authority. Frame from mid-thigh upward in a vertical 4:5 composition, subject slightly off-center with natural negative space. Late-afternoon sunlight filtered through light cloud, soft golden rim light, gentle fill on the face, cobalt-blue shadows, honey-gold highlights, editorial color grading. Premium environmental portrait combining contemporary fashion photography with authentic documentary detail, medium-format camera character, 80mm lens, shallow depth of field, realistic skin texture, crisp eyes, natural hands, refined but not overly retouched. No text, logos, signage, watermark, extra people, or visible swarm.',
width: 1024,
height: 1280,
settings: {
enhancePrompt: true,
thinkingLevel: 'high'
}
})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:p-image@ideogram",
"positivePrompt": "Create a photorealistic personal branding photoshoot portrait of a confident 58-year-old Black woman who runs an urban beekeeping consultancy. She stands beside painted wooden hives in a lush rooftop apiary, with a softly blurred city skyline and pollinator garden behind her. Style her in impeccably tailored deep-indigo work coveralls over a saffron silk shirt, sturdy leather gloves tucked into one hand, and a cream beekeeping veil pushed back like a sculptural hood so her face remains fully visible. Relaxed upright posture, direct warm gaze, subtle smile, quiet authority. Frame from mid-thigh upward in a vertical 4:5 composition, subject slightly off-center with natural negative space. Late-afternoon sunlight filtered through light cloud, soft golden rim light, gentle fill on the face, cobalt-blue shadows, honey-gold highlights, editorial color grading. Premium environmental portrait combining contemporary fashion photography with authentic documentary detail, medium-format camera character, 80mm lens, shallow depth of field, realistic skin texture, crisp eyes, natural hands, refined but not overly retouched. No text, logos, signage, watermark, extra people, or visible swarm.",
"width": 1024,
"height": 1280,
"settings": {
"enhancePrompt": True,
"thinkingLevel": "high"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "8c7e9fde-fa29-40b1-8d6f-2330171c7e5f",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a photorealistic personal branding photoshoot portrait of a confident 58-year-old Black woman who runs an urban beekeeping consultancy. She stands beside painted wooden hives in a lush rooftop apiary, with a softly blurred city skyline and pollinator garden behind her. Style her in impeccably tailored deep-indigo work coveralls over a saffron silk shirt, sturdy leather gloves tucked into one hand, and a cream beekeeping veil pushed back like a sculptural hood so her face remains fully visible. Relaxed upright posture, direct warm gaze, subtle smile, quiet authority. Frame from mid-thigh upward in a vertical 4:5 composition, subject slightly off-center with natural negative space. Late-afternoon sunlight filtered through light cloud, soft golden rim light, gentle fill on the face, cobalt-blue shadows, honey-gold highlights, editorial color grading. Premium environmental portrait combining contemporary fashion photography with authentic documentary detail, medium-format camera character, 80mm lens, shallow depth of field, realistic skin texture, crisp eyes, natural hands, refined but not overly retouched. No text, logos, signage, watermark, extra people, or visible swarm.",
"width": 1024,
"height": 1280,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}
]'runware run prunaai:p-image@ideogram \
positivePrompt="Create a photorealistic personal branding photoshoot portrait of a confident 58-year-old Black woman who runs an urban beekeeping consultancy. She stands beside painted wooden hives in a lush rooftop apiary, with a softly blurred city skyline and pollinator garden behind her. Style her in impeccably tailored deep-indigo work coveralls over a saffron silk shirt, sturdy leather gloves tucked into one hand, and a cream beekeeping veil pushed back like a sculptural hood so her face remains fully visible. Relaxed upright posture, direct warm gaze, subtle smile, quiet authority. Frame from mid-thigh upward in a vertical 4:5 composition, subject slightly off-center with natural negative space. Late-afternoon sunlight filtered through light cloud, soft golden rim light, gentle fill on the face, cobalt-blue shadows, honey-gold highlights, editorial color grading. Premium environmental portrait combining contemporary fashion photography with authentic documentary detail, medium-format camera character, 80mm lens, shallow depth of field, realistic skin texture, crisp eyes, natural hands, refined but not overly retouched. No text, logos, signage, watermark, extra people, or visible swarm." \
width=1024 \
height=1280 \
settings.enhancePrompt=true \
settings.thinkingLevel=high{
"taskType": "imageInference",
"taskUUID": "8c7e9fde-fa29-40b1-8d6f-2330171c7e5f",
"model": "prunaai:p-image@ideogram",
"positivePrompt": "Create a photorealistic personal branding photoshoot portrait of a confident 58-year-old Black woman who runs an urban beekeeping consultancy. She stands beside painted wooden hives in a lush rooftop apiary, with a softly blurred city skyline and pollinator garden behind her. Style her in impeccably tailored deep-indigo work coveralls over a saffron silk shirt, sturdy leather gloves tucked into one hand, and a cream beekeeping veil pushed back like a sculptural hood so her face remains fully visible. Relaxed upright posture, direct warm gaze, subtle smile, quiet authority. Frame from mid-thigh upward in a vertical 4:5 composition, subject slightly off-center with natural negative space. Late-afternoon sunlight filtered through light cloud, soft golden rim light, gentle fill on the face, cobalt-blue shadows, honey-gold highlights, editorial color grading. Premium environmental portrait combining contemporary fashion photography with authentic documentary detail, medium-format camera character, 80mm lens, shallow depth of field, realistic skin texture, crisp eyes, natural hands, refined but not overly retouched. No text, logos, signage, watermark, extra people, or visible swarm.",
"width": 1024,
"height": 1280,
"settings": {
"enhancePrompt": true,
"thinkingLevel": "high"
}
}{
"taskType": "imageInference",
"taskUUID": "8c7e9fde-fa29-40b1-8d6f-2330171c7e5f",
"imageUUID": "ef64f2a0-022b-4354-8c49-5c9a74905be5",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/ef64f2a0-022b-4354-8c49-5c9a74905be5.jpg",
"seed": 205976812,
"cost": 0.0225
}