Ideogram 4.0

Ideogram 4.0 is Ideogram's most capable text-to-image model for design-heavy image generation. It is built for frontier text rendering across languages, structured prompt control through natural language or JSON, bounding-box layout control, transparent background generation, and high-fidelity 2K output. It is well suited to posters, branded graphics, packaging, product visuals, typography-led compositions, and other workflows where design precision matters as much as visual quality.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
Step-by-step tutorials for advanced use cases
text-to-image
Municipal Sewer Crew Sticker Pack$0.06~25s
Create a finished, print-ready landscape sticker sheet for a municipal sewer inspection crew, shown straight-on as clean standalone artwork rather than a product mockup. Arrange ten distinct kiss-cut decals in a balanced grid with generous spacing and thick white die-cut borders. The hero sticker must render the exact phrase “FLOW KNOWS” in large, perfectly legible condensed block lettering, integrated with a simplified underground pipe cross-section. Surround it with bold pictogram stickers depicting a robotic pipe-crawler camera, an open manhole with radiating scan lines, a high-pressure jet nozzle, a gas detector, crossed valve keys, a rubber safety boot, a utility map pin, a traffic cone, and a friendly water droplet wearing a hard hat. Use a visually distinctive late-1990s public-works safety manual aesthetic: crisp flat vector shapes, technical diagram details, chunky outlines, small halftone shadows, fluorescent chartreuse, cobalt blue, safety orange, white, and near-black. Energetic, competent, slightly playful, and highly legible at small sizes. Keep every icon stylistically consistent and fully contained within its own sticker silhouette. Dark navy sticker-sheet background. No logos, no brand names, no additional words, no packaging, no hands, no desk, no perspective distortion.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
positivePrompt: 'Create a finished, print-ready landscape sticker sheet for a municipal sewer inspection crew, shown straight-on as clean standalone artwork rather than a product mockup. Arrange ten distinct kiss-cut decals in a balanced grid with generous spacing and thick white die-cut borders. The hero sticker must render the exact phrase “FLOW KNOWS” in large, perfectly legible condensed block lettering, integrated with a simplified underground pipe cross-section. Surround it with bold pictogram stickers depicting a robotic pipe-crawler camera, an open manhole with radiating scan lines, a high-pressure jet nozzle, a gas detector, crossed valve keys, a rubber safety boot, a utility map pin, a traffic cone, and a friendly water droplet wearing a hard hat. Use a visually distinctive late-1990s public-works safety manual aesthetic: crisp flat vector shapes, technical diagram details, chunky outlines, small halftone shadows, fluorescent chartreuse, cobalt blue, safety orange, white, and near-black. Energetic, competent, slightly playful, and highly legible at small sizes. Keep every icon stylistically consistent and fully contained within its own sticker silhouette. Dark navy sticker-sheet background. No logos, no brand names, no additional words, no packaging, no hands, no desk, no perspective distortion.',
width: 2560,
height: 1440,
settings: {
renderingSpeed: 'DEFAULT'
}
})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": "ideogram:4@0",
"positivePrompt": "Create a finished, print-ready landscape sticker sheet for a municipal sewer inspection crew, shown straight-on as clean standalone artwork rather than a product mockup. Arrange ten distinct kiss-cut decals in a balanced grid with generous spacing and thick white die-cut borders. The hero sticker must render the exact phrase “FLOW KNOWS” in large, perfectly legible condensed block lettering, integrated with a simplified underground pipe cross-section. Surround it with bold pictogram stickers depicting a robotic pipe-crawler camera, an open manhole with radiating scan lines, a high-pressure jet nozzle, a gas detector, crossed valve keys, a rubber safety boot, a utility map pin, a traffic cone, and a friendly water droplet wearing a hard hat. Use a visually distinctive late-1990s public-works safety manual aesthetic: crisp flat vector shapes, technical diagram details, chunky outlines, small halftone shadows, fluorescent chartreuse, cobalt blue, safety orange, white, and near-black. Energetic, competent, slightly playful, and highly legible at small sizes. Keep every icon stylistically consistent and fully contained within its own sticker silhouette. Dark navy sticker-sheet background. No logos, no brand names, no additional words, no packaging, no hands, no desk, no perspective distortion.",
"width": 2560,
"height": 1440,
"settings": {
"renderingSpeed": "DEFAULT"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "9ccbb280-edc4-4e20-9e3f-e2c86da6b206",
"model": "ideogram:4@0",
"positivePrompt": "Create a finished, print-ready landscape sticker sheet for a municipal sewer inspection crew, shown straight-on as clean standalone artwork rather than a product mockup. Arrange ten distinct kiss-cut decals in a balanced grid with generous spacing and thick white die-cut borders. The hero sticker must render the exact phrase “FLOW KNOWS” in large, perfectly legible condensed block lettering, integrated with a simplified underground pipe cross-section. Surround it with bold pictogram stickers depicting a robotic pipe-crawler camera, an open manhole with radiating scan lines, a high-pressure jet nozzle, a gas detector, crossed valve keys, a rubber safety boot, a utility map pin, a traffic cone, and a friendly water droplet wearing a hard hat. Use a visually distinctive late-1990s public-works safety manual aesthetic: crisp flat vector shapes, technical diagram details, chunky outlines, small halftone shadows, fluorescent chartreuse, cobalt blue, safety orange, white, and near-black. Energetic, competent, slightly playful, and highly legible at small sizes. Keep every icon stylistically consistent and fully contained within its own sticker silhouette. Dark navy sticker-sheet background. No logos, no brand names, no additional words, no packaging, no hands, no desk, no perspective distortion.",
"width": 2560,
"height": 1440,
"settings": {
"renderingSpeed": "DEFAULT"
}
}
]'runware run ideogram:4@0 \
positivePrompt="Create a finished, print-ready landscape sticker sheet for a municipal sewer inspection crew, shown straight-on as clean standalone artwork rather than a product mockup. Arrange ten distinct kiss-cut decals in a balanced grid with generous spacing and thick white die-cut borders. The hero sticker must render the exact phrase “FLOW KNOWS” in large, perfectly legible condensed block lettering, integrated with a simplified underground pipe cross-section. Surround it with bold pictogram stickers depicting a robotic pipe-crawler camera, an open manhole with radiating scan lines, a high-pressure jet nozzle, a gas detector, crossed valve keys, a rubber safety boot, a utility map pin, a traffic cone, and a friendly water droplet wearing a hard hat. Use a visually distinctive late-1990s public-works safety manual aesthetic: crisp flat vector shapes, technical diagram details, chunky outlines, small halftone shadows, fluorescent chartreuse, cobalt blue, safety orange, white, and near-black. Energetic, competent, slightly playful, and highly legible at small sizes. Keep every icon stylistically consistent and fully contained within its own sticker silhouette. Dark navy sticker-sheet background. No logos, no brand names, no additional words, no packaging, no hands, no desk, no perspective distortion." \
width=2560 \
height=1440 \
settings.renderingSpeed=DEFAULT{
"taskType": "imageInference",
"taskUUID": "9ccbb280-edc4-4e20-9e3f-e2c86da6b206",
"model": "ideogram:4@0",
"positivePrompt": "Create a finished, print-ready landscape sticker sheet for a municipal sewer inspection crew, shown straight-on as clean standalone artwork rather than a product mockup. Arrange ten distinct kiss-cut decals in a balanced grid with generous spacing and thick white die-cut borders. The hero sticker must render the exact phrase “FLOW KNOWS” in large, perfectly legible condensed block lettering, integrated with a simplified underground pipe cross-section. Surround it with bold pictogram stickers depicting a robotic pipe-crawler camera, an open manhole with radiating scan lines, a high-pressure jet nozzle, a gas detector, crossed valve keys, a rubber safety boot, a utility map pin, a traffic cone, and a friendly water droplet wearing a hard hat. Use a visually distinctive late-1990s public-works safety manual aesthetic: crisp flat vector shapes, technical diagram details, chunky outlines, small halftone shadows, fluorescent chartreuse, cobalt blue, safety orange, white, and near-black. Energetic, competent, slightly playful, and highly legible at small sizes. Keep every icon stylistically consistent and fully contained within its own sticker silhouette. Dark navy sticker-sheet background. No logos, no brand names, no additional words, no packaging, no hands, no desk, no perspective distortion.",
"width": 2560,
"height": 1440,
"settings": {
"renderingSpeed": "DEFAULT"
}
}Response
{
"taskType": "imageInference",
"taskUUID": "9ccbb280-edc4-4e20-9e3f-e2c86da6b206",
"imageUUID": "37150982-5562-4f35-b6cc-b38fcd0f7e8d",
"imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/4/ii/37150982-5562-4f35-b6cc-b38fcd0f7e8d.jpg",
"seed": 266405619,
"cost": 0.06,
"structuredPrompt": {
"high_level_description": "A print-ready landscape sticker sheet for a municipal sewer inspection crew in late-1990s public-works safety manual style, featuring ten kiss-cut decals on a dark navy background with a hero 'FLOW KNOWS' pipe cross-section decal centered among nine supporting pictograms in a loose three-by-three grid.",
"compositional_deconstruction": {
"background": "Dark navy flat field filling the entire sticker sheet edge-to-edge, with subtle halftone dot shadows beneath each decal for slight depth. Late-1990s public-works safety manual aesthetic throughout — crisp flat vector shapes, chunky black outlines of consistent weight, no perspective, no mockup, straight-on flat artwork. Palette strictly limited to fluorescent chartreuse, cobalt blue, safety orange, white, and near-black.",
"elements": [
{
"type": "obj",
"desc": "Hero kiss-cut decal centered on the sheet, the largest piece. Simplified underground pipe cross-section: horizontal pipe cutaway in chartreuse and cobalt blue showing flowing water arrows inside, soil layers above and below rendered as stacked horizontal bands. Thick white die-cut border outlines the silhouette. Chunky black outlines throughout."
},
{
"type": "obj",
"desc": "Robotic pipe-crawler camera pictogram in the upper-left area. Cylindrical cobalt blue body with four small black wheels underneath, forward-facing lens dome at the front, trailing cable curling behind. Contained within its own rounded silhouette with thick white die-cut border and chunky black outline."
},
{
"type": "obj",
"desc": "Open manhole pictogram in the upper-right area. Circular grate lifted at an angle revealing a dark shaft below, radiating scan lines fanning outward from the opening in chartreuse. Thick white die-cut border around the rounded silhouette, chunky black outline."
},
{
"type": "obj",
"desc": "High-pressure jet nozzle pictogram in the upper-center-left area. Angled lance in near-black with a conical spray burst of cobalt blue water droplets shooting from the tip. Thick white die-cut border outlining the silhouette, chunky black outline."
},
{
"type": "obj",
"desc": "Gas detector pictogram in the upper-center-right area. Handheld rectangular unit in safety orange with a small white digital readout window, antenna nub on top, single indicator light. Thick white die-cut border, chunky black outline."
},
{
"type": "obj",
"desc": "Crossed valve keys pictogram in the lower-left area. Two long wrench-style keys in chartreuse crossed in an X formation with hexagonal heads. Thick white die-cut border around the silhouette, chunky black outline."
},
{
"type": "obj",
"desc": "Rubber safety boot pictogram in the lower-center-left area. Tall yellow boot in side profile with thick treaded sole and reinforced toe cap. Thick white die-cut border outlining the silhouette, chunky black outline."
},
{
"type": "obj",
"desc": "Utility map pin pictogram in the lower-center-right area. Teardrop pin shape in safety orange with a small cobalt blue pipe-junction symbol inside the head. Thick white die-cut border, chunky black outline."
},
{
"type": "obj",
"desc": "Traffic cone pictogram in the lower-right area. Classic orange cone with two white reflective bands and a square base. Thick white die-cut border around the silhouette, chunky black outline."
},
{
"type": "obj",
"desc": "Friendly water droplet character in the upper-center area. Cobalt blue droplet body wearing a small safety orange hard hat, simple smiling face with two dot eyes and a curved smile. Thick white die-cut border around the silhouette, chunky black outline."
},
{
"type": "text",
"text": "FLOW\nKNOWS",
"desc": "Headline-sized display lettering occupying the central hero decal, stacked across two lines integrated into the pipe cross-section artwork. Condensed block-letter sans-serif, bold weight, safety orange against the chartreuse-and-cobalt pipe background for maximum contrast. Horizontal, centered alignment within the decal."
}
]
}
}
}text-to-image
Alpine Survival Game Key Art$0.06~18s
Finished 16:9 landscape key art for a premium narrative survival video game. A weather-beaten orange cable-car maintenance gondola hangs above an immense glacial ravine during a violent whiteout. On its icy roof, a solitary alpine engineer in a charcoal insulated suit and safety harness reaches toward a sparking pulley assembly, dwarfed by the landscape. Thick cables sweep diagonally from the foreground into fog-shrouded mountain pylons, creating strong depth and visual tension. Wind drives ribbons of snow across the frame; faint amber work lights glow through the storm. Cinematic painterly realism fused with bold European mountain-rescue poster design and subtle technical linework. Restricted palette of snow white, deep cobalt blue, graphite black, and vivid safety orange. Place the exact title “CABLE ZERO” large and clearly legible in the upper-left quadrant, set in a heavy condensed industrial sans-serif with crisp geometric letterforms and slight wind-scoured distressing. Keep generous clear space around the title. Dramatic, austere, dangerous, highly polished commercial game key art; no characters facing the viewer, no logos, no interface, no borders, and no other readable text.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
positivePrompt: 'Finished 16:9 landscape key art for a premium narrative survival video game. A weather-beaten orange cable-car maintenance gondola hangs above an immense glacial ravine during a violent whiteout. On its icy roof, a solitary alpine engineer in a charcoal insulated suit and safety harness reaches toward a sparking pulley assembly, dwarfed by the landscape. Thick cables sweep diagonally from the foreground into fog-shrouded mountain pylons, creating strong depth and visual tension. Wind drives ribbons of snow across the frame; faint amber work lights glow through the storm. Cinematic painterly realism fused with bold European mountain-rescue poster design and subtle technical linework. Restricted palette of snow white, deep cobalt blue, graphite black, and vivid safety orange. Place the exact title “CABLE ZERO” large and clearly legible in the upper-left quadrant, set in a heavy condensed industrial sans-serif with crisp geometric letterforms and slight wind-scoured distressing. Keep generous clear space around the title. Dramatic, austere, dangerous, highly polished commercial game key art; no characters facing the viewer, no logos, no interface, no borders, and no other readable text.',
width: 2560,
height: 1440,
settings: {
renderingSpeed: 'DEFAULT'
}
})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": "ideogram:4@0",
"positivePrompt": "Finished 16:9 landscape key art for a premium narrative survival video game. A weather-beaten orange cable-car maintenance gondola hangs above an immense glacial ravine during a violent whiteout. On its icy roof, a solitary alpine engineer in a charcoal insulated suit and safety harness reaches toward a sparking pulley assembly, dwarfed by the landscape. Thick cables sweep diagonally from the foreground into fog-shrouded mountain pylons, creating strong depth and visual tension. Wind drives ribbons of snow across the frame; faint amber work lights glow through the storm. Cinematic painterly realism fused with bold European mountain-rescue poster design and subtle technical linework. Restricted palette of snow white, deep cobalt blue, graphite black, and vivid safety orange. Place the exact title “CABLE ZERO” large and clearly legible in the upper-left quadrant, set in a heavy condensed industrial sans-serif with crisp geometric letterforms and slight wind-scoured distressing. Keep generous clear space around the title. Dramatic, austere, dangerous, highly polished commercial game key art; no characters facing the viewer, no logos, no interface, no borders, and no other readable text.",
"width": 2560,
"height": 1440,
"settings": {
"renderingSpeed": "DEFAULT"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "42539d1c-a04a-4581-9e96-6bc41940c485",
"model": "ideogram:4@0",
"positivePrompt": "Finished 16:9 landscape key art for a premium narrative survival video game. A weather-beaten orange cable-car maintenance gondola hangs above an immense glacial ravine during a violent whiteout. On its icy roof, a solitary alpine engineer in a charcoal insulated suit and safety harness reaches toward a sparking pulley assembly, dwarfed by the landscape. Thick cables sweep diagonally from the foreground into fog-shrouded mountain pylons, creating strong depth and visual tension. Wind drives ribbons of snow across the frame; faint amber work lights glow through the storm. Cinematic painterly realism fused with bold European mountain-rescue poster design and subtle technical linework. Restricted palette of snow white, deep cobalt blue, graphite black, and vivid safety orange. Place the exact title “CABLE ZERO” large and clearly legible in the upper-left quadrant, set in a heavy condensed industrial sans-serif with crisp geometric letterforms and slight wind-scoured distressing. Keep generous clear space around the title. Dramatic, austere, dangerous, highly polished commercial game key art; no characters facing the viewer, no logos, no interface, no borders, and no other readable text.",
"width": 2560,
"height": 1440,
"settings": {
"renderingSpeed": "DEFAULT"
}
}
]'runware run ideogram:4@0 \
positivePrompt="Finished 16:9 landscape key art for a premium narrative survival video game. A weather-beaten orange cable-car maintenance gondola hangs above an immense glacial ravine during a violent whiteout. On its icy roof, a solitary alpine engineer in a charcoal insulated suit and safety harness reaches toward a sparking pulley assembly, dwarfed by the landscape. Thick cables sweep diagonally from the foreground into fog-shrouded mountain pylons, creating strong depth and visual tension. Wind drives ribbons of snow across the frame; faint amber work lights glow through the storm. Cinematic painterly realism fused with bold European mountain-rescue poster design and subtle technical linework. Restricted palette of snow white, deep cobalt blue, graphite black, and vivid safety orange. Place the exact title “CABLE ZERO” large and clearly legible in the upper-left quadrant, set in a heavy condensed industrial sans-serif with crisp geometric letterforms and slight wind-scoured distressing. Keep generous clear space around the title. Dramatic, austere, dangerous, highly polished commercial game key art; no characters facing the viewer, no logos, no interface, no borders, and no other readable text." \
width=2560 \
height=1440 \
settings.renderingSpeed=DEFAULT{
"taskType": "imageInference",
"taskUUID": "42539d1c-a04a-4581-9e96-6bc41940c485",
"model": "ideogram:4@0",
"positivePrompt": "Finished 16:9 landscape key art for a premium narrative survival video game. A weather-beaten orange cable-car maintenance gondola hangs above an immense glacial ravine during a violent whiteout. On its icy roof, a solitary alpine engineer in a charcoal insulated suit and safety harness reaches toward a sparking pulley assembly, dwarfed by the landscape. Thick cables sweep diagonally from the foreground into fog-shrouded mountain pylons, creating strong depth and visual tension. Wind drives ribbons of snow across the frame; faint amber work lights glow through the storm. Cinematic painterly realism fused with bold European mountain-rescue poster design and subtle technical linework. Restricted palette of snow white, deep cobalt blue, graphite black, and vivid safety orange. Place the exact title “CABLE ZERO” large and clearly legible in the upper-left quadrant, set in a heavy condensed industrial sans-serif with crisp geometric letterforms and slight wind-scoured distressing. Keep generous clear space around the title. Dramatic, austere, dangerous, highly polished commercial game key art; no characters facing the viewer, no logos, no interface, no borders, and no other readable text.",
"width": 2560,
"height": 1440,
"settings": {
"renderingSpeed": "DEFAULT"
}
}Response
{
"taskType": "imageInference",
"taskUUID": "42539d1c-a04a-4581-9e96-6bc41940c485",
"imageUUID": "ee8d4e01-d497-4f3e-bb36-24e021201a2e",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/ee8d4e01-d497-4f3e-bb36-24e021201a2e.jpg",
"seed": 171965295,
"cost": 0.06,
"structuredPrompt": {
"high_level_description": "A cinematic key art poster of a lone alpine engineer crouched on an orange cable-car gondola mid-ravine, fighting a violent whiteout storm over an immense glacial chasm, with thick cables sweeping diagonally toward fog-shrouded pylons and the headline 'CABLE ZERO' in safety orange.",
"compositional_deconstruction": {
"background": "A violent whiteout storm fills the frame with wind-driven ribbons of snow streaking horizontally at multiple depths, snow white dominating the atmosphere. Immense glacial ravine walls of layered blue-white ice and dark cobalt rock flank both sides, disappearing into whiteout haze. Deep cobalt blue dominates the ice and shadowed rock; graphite black anchors the deepest ravine shadows. Distant mountain pylons recede into the fog-shrouded background along the cable line. Dramatic low-angle perspective looking up past the gondola toward the vanishing pylons. Painterly realism fused with bold European mountain-rescue poster design, restricted palette of snow white, deep cobalt blue, graphite black, and vivid safety orange.",
"elements": [
{
"type": "obj",
"desc": "Distant secondary cable-car gondola far down the line in the upper-right midground, barely visible as a small orange speck half-swallowed by the whiteout storm, dwarfed by scale."
},
{
"type": "obj",
"desc": "Thick braided steel cables sweeping diagonally from the lower-right foreground up into the upper-left background, graphite black silhouettes against the whiteout, creating strong depth and visual tension. Subtle technical linework accents along the cable strands."
},
{
"type": "obj",
"desc": "Weather-beaten orange cable-car maintenance gondola suspended mid-ravine in the center of the frame, riveted steel hull streaked with ice and rust, vivid safety orange paint scoured by wind. Single amber work lamp glowing through the storm on its underside, casting a faint local amber pool."
},
{
"type": "obj",
"desc": "Solitary alpine engineer crouched on the gondola's icy roof, body angled away from camera in three-quarter back view, dwarfed by the surrounding scale. Charcoal insulated suit with vivid safety-orange reflective stripes across the shoulders and back, full harness clipped to a roof anchor. Gloved right hand reaching toward a sparking pulley assembly on the roof, faint amber sparks local to the contact point. Gaze directed at the pulley."
},
{
"type": "obj",
"desc": "Foreground ice shard and frozen cable debris slicing in from the lower-left edge, slightly out of focus. Jagged blue-white ice fragments and dark cable remnants catching cold light."
},
{
"type": "text",
"text": "CABLE\nZERO",
"desc": "Headline-sized display lettering occupying the upper-left quadrant, spanning roughly 45% of the frame width. Heavy condensed industrial sans-serif in vivid safety orange with slight wind-scoured distressing along the edges. Left-aligned, horizontal, generous clear space around it."
}
]
}
}
}text-to-image
Thermal Battery Video Thumbnail$0.06~18s
Create a finished 16:9 YouTube documentary thumbnail about an underground thermal battery beneath a city. Show a dramatic cutaway landscape: a compact modern city and district-heating plant at street level, with the earth sliced open below to reveal a vast glowing cylindrical reservoir of hot sand, insulated pipes, heat arrows, and geological strata. Use a bold editorial screen-print aesthetic with crisp geometric forms, subtle halftone grain, and a limited palette of midnight navy, warm cream, electric orange, and signal red. Compose for immediate readability at small thumbnail size: place the underground reservoir prominently on the right, the tiny city silhouette across the upper horizon, and a clean dark area on the left for typography. Render the exact phrase “HEAT UNDERFOOT” in very large, legible, condensed uppercase cream lettering on two lines at left. High contrast, intelligent science-journalism mood, visually accurate engineering cues, strong depth and scale, no logos, no extra words, no interface elements, no border.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
positivePrompt: 'Create a finished 16:9 YouTube documentary thumbnail about an underground thermal battery beneath a city. Show a dramatic cutaway landscape: a compact modern city and district-heating plant at street level, with the earth sliced open below to reveal a vast glowing cylindrical reservoir of hot sand, insulated pipes, heat arrows, and geological strata. Use a bold editorial screen-print aesthetic with crisp geometric forms, subtle halftone grain, and a limited palette of midnight navy, warm cream, electric orange, and signal red. Compose for immediate readability at small thumbnail size: place the underground reservoir prominently on the right, the tiny city silhouette across the upper horizon, and a clean dark area on the left for typography. Render the exact phrase “HEAT UNDERFOOT” in very large, legible, condensed uppercase cream lettering on two lines at left. High contrast, intelligent science-journalism mood, visually accurate engineering cues, strong depth and scale, no logos, no extra words, no interface elements, no border.',
width: 2560,
height: 1440,
settings: {
renderingSpeed: 'DEFAULT'
}
})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": "ideogram:4@0",
"positivePrompt": "Create a finished 16:9 YouTube documentary thumbnail about an underground thermal battery beneath a city. Show a dramatic cutaway landscape: a compact modern city and district-heating plant at street level, with the earth sliced open below to reveal a vast glowing cylindrical reservoir of hot sand, insulated pipes, heat arrows, and geological strata. Use a bold editorial screen-print aesthetic with crisp geometric forms, subtle halftone grain, and a limited palette of midnight navy, warm cream, electric orange, and signal red. Compose for immediate readability at small thumbnail size: place the underground reservoir prominently on the right, the tiny city silhouette across the upper horizon, and a clean dark area on the left for typography. Render the exact phrase “HEAT UNDERFOOT” in very large, legible, condensed uppercase cream lettering on two lines at left. High contrast, intelligent science-journalism mood, visually accurate engineering cues, strong depth and scale, no logos, no extra words, no interface elements, no border.",
"width": 2560,
"height": 1440,
"settings": {
"renderingSpeed": "DEFAULT"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "2945bd8d-43ef-4c8a-9c92-23e92ca0217a",
"model": "ideogram:4@0",
"positivePrompt": "Create a finished 16:9 YouTube documentary thumbnail about an underground thermal battery beneath a city. Show a dramatic cutaway landscape: a compact modern city and district-heating plant at street level, with the earth sliced open below to reveal a vast glowing cylindrical reservoir of hot sand, insulated pipes, heat arrows, and geological strata. Use a bold editorial screen-print aesthetic with crisp geometric forms, subtle halftone grain, and a limited palette of midnight navy, warm cream, electric orange, and signal red. Compose for immediate readability at small thumbnail size: place the underground reservoir prominently on the right, the tiny city silhouette across the upper horizon, and a clean dark area on the left for typography. Render the exact phrase “HEAT UNDERFOOT” in very large, legible, condensed uppercase cream lettering on two lines at left. High contrast, intelligent science-journalism mood, visually accurate engineering cues, strong depth and scale, no logos, no extra words, no interface elements, no border.",
"width": 2560,
"height": 1440,
"settings": {
"renderingSpeed": "DEFAULT"
}
}
]'runware run ideogram:4@0 \
positivePrompt="Create a finished 16:9 YouTube documentary thumbnail about an underground thermal battery beneath a city. Show a dramatic cutaway landscape: a compact modern city and district-heating plant at street level, with the earth sliced open below to reveal a vast glowing cylindrical reservoir of hot sand, insulated pipes, heat arrows, and geological strata. Use a bold editorial screen-print aesthetic with crisp geometric forms, subtle halftone grain, and a limited palette of midnight navy, warm cream, electric orange, and signal red. Compose for immediate readability at small thumbnail size: place the underground reservoir prominently on the right, the tiny city silhouette across the upper horizon, and a clean dark area on the left for typography. Render the exact phrase “HEAT UNDERFOOT” in very large, legible, condensed uppercase cream lettering on two lines at left. High contrast, intelligent science-journalism mood, visually accurate engineering cues, strong depth and scale, no logos, no extra words, no interface elements, no border." \
width=2560 \
height=1440 \
settings.renderingSpeed=DEFAULT{
"taskType": "imageInference",
"taskUUID": "2945bd8d-43ef-4c8a-9c92-23e92ca0217a",
"model": "ideogram:4@0",
"positivePrompt": "Create a finished 16:9 YouTube documentary thumbnail about an underground thermal battery beneath a city. Show a dramatic cutaway landscape: a compact modern city and district-heating plant at street level, with the earth sliced open below to reveal a vast glowing cylindrical reservoir of hot sand, insulated pipes, heat arrows, and geological strata. Use a bold editorial screen-print aesthetic with crisp geometric forms, subtle halftone grain, and a limited palette of midnight navy, warm cream, electric orange, and signal red. Compose for immediate readability at small thumbnail size: place the underground reservoir prominently on the right, the tiny city silhouette across the upper horizon, and a clean dark area on the left for typography. Render the exact phrase “HEAT UNDERFOOT” in very large, legible, condensed uppercase cream lettering on two lines at left. High contrast, intelligent science-journalism mood, visually accurate engineering cues, strong depth and scale, no logos, no extra words, no interface elements, no border.",
"width": 2560,
"height": 1440,
"settings": {
"renderingSpeed": "DEFAULT"
}
}Response
{
"taskType": "imageInference",
"taskUUID": "2945bd8d-43ef-4c8a-9c92-23e92ca0217a",
"imageUUID": "8ea42278-13c0-403f-8597-069035cbbfce",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/8ea42278-13c0-403f-8597-069035cbbfce.jpg",
"seed": 1600195280,
"cost": 0.06,
"structuredPrompt": {
"high_level_description": "A 16:9 YouTube documentary thumbnail in bold editorial screen-print style, showing a dramatic cutaway of an underground thermal battery beneath a tiny city silhouette, with a glowing cylindrical sand reservoir dominating the lower right and large cream headline 'HEAT UNDERFOOT' on the left.",
"compositional_deconstruction": {
"background": "Full-bleed midnight navy #0E1A2B ground filling the entire frame, with subtle halftone grain throughout. The composition splits roughly one-third left / two-thirds right — the left third is a clean dark navy field reserved for the headline, the right two-thirds carries the cutaway. Limited four-color palette: midnight navy, warm cream #F2E8D5, electric orange #FF6B1A, signal red #E63027. High-contrast science-journalism mood, no border.",
"elements": [
{
"type": "obj",
"desc": "Tiny compact city silhouette across the upper horizon line of the right two-thirds, rendered as flat cream shapes against the navy. Clustered mid-rise blocks with a few taller towers, anchored just left of center is a small district-heating plant with a low rectangular footprint and two short exhaust stacks. Crisp geometric screen-print forms."
},
{
"type": "obj",
"desc": "Geological strata bands slicing horizontally across the cutaway area, layered cream, navy, and orange-banded earth strata with subtle halftone texture. Bands run edge-to-edge across the right two-thirds, suggesting depth beneath the city."
},
{
"type": "obj",
"desc": "Vast glowing cylindrical reservoir of hot sand dominating the right two-thirds of the lower frame, cutaway view. Molten-orange #FF6B1A core radiating outward through concentric insulation layers in cream and navy rings. Massive scale relative to the city above."
},
{
"type": "obj",
"desc": "Insulated pipe network descending from the district-heating plant down into the reservoir, drawn as crisp geometric cream lines with signal-red #E63027 heat arrows flowing along their length toward the reservoir."
},
{
"type": "obj",
"desc": "Small heat-arrow glyphs rising from the reservoir back up toward the plant, indicating the return loop. Signal-red #E63027 arrow marks along parallel pipe lines."
},
{
"type": "obj",
"desc": "Faint grid of depth markers along the left edge of the cutaway, thin cream tick marks and small numeric labels suggesting scale, running vertically."
},
{
"type": "text",
"text": "HEAT\nUNDERFOOT",
"desc": "Very large condensed uppercase sans-serif lettering stacked on two lines, occupying the dark navy field of the left third. Warm cream #F2E8D5 color, tight tracking, left-aligned, horizontal."
}
]
}
}
}
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
width: 2048,
height: 2048,
settings: {
renderingSpeed: 'QUALITY',
structuredPrompt: {
high_level_description: 'A premium fictional postal stamp sheet for a paper courier service called ORI POST, featuring folded paper animal messengers moving across a tidy city map. The composition should feel like a polished collectible print with exact type placement, perforation marks, micro-copy, and clean brand hierarchy.',
style_description: {
medium: 'vector-inflected editorial print design with subtle paper grain',
aesthetics: 'minimal, clever, refined, highly organized, collectible stationery quality',
color_palette: [
'#F8F1DF',
'#18213A',
'#E85D3F',
'#2E8C7A',
'#F2B84B',
'#6E77A8'
],
lighting: 'soft even studio light, gentle shadows from raised paper folds, crisp edges'
},
compositional_deconstruction: {
background: 'Square off-white stamp sheet on a clean flat surface, faint pale-blue city map lines beneath the stamp grid, tiny registration marks, neat margins, subtle paper texture, centered orthographic product-view framing.',
elements: [
{
type: 'text',
bbox: [
45,
80,
125,
920
],
text: 'ORI POST',
desc: 'Large bold uppercase header, custom geometric sans lettering, dark navy ink, perfectly centered with generous tracking.',
color_palette: [
'#18213A'
]
},
{
type: 'text',
bbox: [
130,
210,
170,
790
],
text: 'FOLD • FLY • DELIVER',
desc: 'Small uppercase motto below the header, crisp centered type, orange dot separators.',
color_palette: [
'#E85D3F',
'#18213A'
]
},
{
type: 'obj',
bbox: [
205,
80,
845,
920
],
desc: 'A 3 by 4 grid of collectible stamps with rounded perforated edges, each stamp separated by precise dotted cut lines. The stamp cells contain small illustrated courier routes, arrows, parcel icons, and folded paper animal messengers.',
color_palette: [
'#F8F1DF',
'#18213A',
'#2E8C7A',
'#E85D3F',
'#F2B84B'
]
},
{
type: 'obj',
bbox: [
250,
115,
420,
335
],
desc: 'Folded paper crane carrying a tiny envelope in its beak, teal route line curving behind it, delicate crease shadows.',
color_palette: [
'#F8F1DF',
'#2E8C7A',
'#18213A'
]
},
{
type: 'text',
bbox: [
430,
125,
468,
330
],
text: 'AIR ROUTE 04',
desc: 'Tiny but legible stamp caption, uppercase condensed type, aligned to the lower edge of the first stamp.',
color_palette: [
'#18213A'
]
},
{
type: 'obj',
bbox: [
250,
390,
420,
610
],
desc: 'Folded paper fox with a miniature satchel, orange inner folds, standing on a simplified street-loop diagram.',
color_palette: [
'#E85D3F',
'#F8F1DF',
'#18213A'
]
},
{
type: 'text',
bbox: [
430,
400,
468,
600
],
text: 'CITY LOOP 09',
desc: 'Small stamp caption with clean spacing and sharp print edges.',
color_palette: [
'#18213A'
]
},
{
type: 'obj',
bbox: [
250,
665,
420,
885
],
desc: 'Folded paper rabbit pushing a tiny parcel cart, golden route pins, playful but precise geometry.',
color_palette: [
'#F2B84B',
'#F8F1DF',
'#18213A'
]
},
{
type: 'text',
bbox: [
430,
675,
468,
875
],
text: 'PARCEL HOP 12',
desc: 'Compact legible stamp caption beneath the rabbit stamp.',
color_palette: [
'#18213A'
]
},
{
type: 'text',
bbox: [
875,
100,
915,
400
],
text: '12 LOCAL STAMPS',
desc: 'Bottom-left issue information, small uppercase type, aligned with the stamp grid.',
color_palette: [
'#18213A'
]
},
{
type: 'text',
bbox: [
875,
600,
915,
900
],
text: '折便 ORI BIN',
desc: 'Bottom-right multilingual brand detail, Japanese characters and roman letters rendered cleanly.',
color_palette: [
'#2E8C7A',
'#18213A'
]
},
{
type: 'text',
bbox: [
930,
185,
965,
815
],
text: 'ISSUE No. 14476 — PAPER COURIER SERVICE',
desc: 'Fine micro-copy along the lower margin, perfectly straight baseline, realistic offset print finish.',
color_palette: [
'#6E77A8'
]
}
]
}
}
}
})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": "ideogram:4@0",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"structuredPrompt": {
"high_level_description": "A premium fictional postal stamp sheet for a paper courier service called ORI POST, featuring folded paper animal messengers moving across a tidy city map. The composition should feel like a polished collectible print with exact type placement, perforation marks, micro-copy, and clean brand hierarchy.",
"style_description": {
"medium": "vector-inflected editorial print design with subtle paper grain",
"aesthetics": "minimal, clever, refined, highly organized, collectible stationery quality",
"color_palette": [
"#F8F1DF",
"#18213A",
"#E85D3F",
"#2E8C7A",
"#F2B84B",
"#6E77A8"
],
"lighting": "soft even studio light, gentle shadows from raised paper folds, crisp edges"
},
"compositional_deconstruction": {
"background": "Square off-white stamp sheet on a clean flat surface, faint pale-blue city map lines beneath the stamp grid, tiny registration marks, neat margins, subtle paper texture, centered orthographic product-view framing.",
"elements": [
{
"type": "text",
"bbox": [
45,
80,
125,
920
],
"text": "ORI POST",
"desc": "Large bold uppercase header, custom geometric sans lettering, dark navy ink, perfectly centered with generous tracking.",
"color_palette": [
"#18213A"
]
},
{
"type": "text",
"bbox": [
130,
210,
170,
790
],
"text": "FOLD • FLY • DELIVER",
"desc": "Small uppercase motto below the header, crisp centered type, orange dot separators.",
"color_palette": [
"#E85D3F",
"#18213A"
]
},
{
"type": "obj",
"bbox": [
205,
80,
845,
920
],
"desc": "A 3 by 4 grid of collectible stamps with rounded perforated edges, each stamp separated by precise dotted cut lines. The stamp cells contain small illustrated courier routes, arrows, parcel icons, and folded paper animal messengers.",
"color_palette": [
"#F8F1DF",
"#18213A",
"#2E8C7A",
"#E85D3F",
"#F2B84B"
]
},
{
"type": "obj",
"bbox": [
250,
115,
420,
335
],
"desc": "Folded paper crane carrying a tiny envelope in its beak, teal route line curving behind it, delicate crease shadows.",
"color_palette": [
"#F8F1DF",
"#2E8C7A",
"#18213A"
]
},
{
"type": "text",
"bbox": [
430,
125,
468,
330
],
"text": "AIR ROUTE 04",
"desc": "Tiny but legible stamp caption, uppercase condensed type, aligned to the lower edge of the first stamp.",
"color_palette": [
"#18213A"
]
},
{
"type": "obj",
"bbox": [
250,
390,
420,
610
],
"desc": "Folded paper fox with a miniature satchel, orange inner folds, standing on a simplified street-loop diagram.",
"color_palette": [
"#E85D3F",
"#F8F1DF",
"#18213A"
]
},
{
"type": "text",
"bbox": [
430,
400,
468,
600
],
"text": "CITY LOOP 09",
"desc": "Small stamp caption with clean spacing and sharp print edges.",
"color_palette": [
"#18213A"
]
},
{
"type": "obj",
"bbox": [
250,
665,
420,
885
],
"desc": "Folded paper rabbit pushing a tiny parcel cart, golden route pins, playful but precise geometry.",
"color_palette": [
"#F2B84B",
"#F8F1DF",
"#18213A"
]
},
{
"type": "text",
"bbox": [
430,
675,
468,
875
],
"text": "PARCEL HOP 12",
"desc": "Compact legible stamp caption beneath the rabbit stamp.",
"color_palette": [
"#18213A"
]
},
{
"type": "text",
"bbox": [
875,
100,
915,
400
],
"text": "12 LOCAL STAMPS",
"desc": "Bottom-left issue information, small uppercase type, aligned with the stamp grid.",
"color_palette": [
"#18213A"
]
},
{
"type": "text",
"bbox": [
875,
600,
915,
900
],
"text": "折便 ORI BIN",
"desc": "Bottom-right multilingual brand detail, Japanese characters and roman letters rendered cleanly.",
"color_palette": [
"#2E8C7A",
"#18213A"
]
},
{
"type": "text",
"bbox": [
930,
185,
965,
815
],
"text": "ISSUE No. 14476 — PAPER COURIER SERVICE",
"desc": "Fine micro-copy along the lower margin, perfectly straight baseline, realistic offset print finish.",
"color_palette": [
"#6E77A8"
]
}
]
}
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "0d4ecaa6-1269-4d50-9ace-a59da05a972a",
"model": "ideogram:4@0",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"structuredPrompt": {
"high_level_description": "A premium fictional postal stamp sheet for a paper courier service called ORI POST, featuring folded paper animal messengers moving across a tidy city map. The composition should feel like a polished collectible print with exact type placement, perforation marks, micro-copy, and clean brand hierarchy.",
"style_description": {
"medium": "vector-inflected editorial print design with subtle paper grain",
"aesthetics": "minimal, clever, refined, highly organized, collectible stationery quality",
"color_palette": [
"#F8F1DF",
"#18213A",
"#E85D3F",
"#2E8C7A",
"#F2B84B",
"#6E77A8"
],
"lighting": "soft even studio light, gentle shadows from raised paper folds, crisp edges"
},
"compositional_deconstruction": {
"background": "Square off-white stamp sheet on a clean flat surface, faint pale-blue city map lines beneath the stamp grid, tiny registration marks, neat margins, subtle paper texture, centered orthographic product-view framing.",
"elements": [
{
"type": "text",
"bbox": [
45,
80,
125,
920
],
"text": "ORI POST",
"desc": "Large bold uppercase header, custom geometric sans lettering, dark navy ink, perfectly centered with generous tracking.",
"color_palette": [
"#18213A"
]
},
{
"type": "text",
"bbox": [
130,
210,
170,
790
],
"text": "FOLD • FLY • DELIVER",
"desc": "Small uppercase motto below the header, crisp centered type, orange dot separators.",
"color_palette": [
"#E85D3F",
"#18213A"
]
},
{
"type": "obj",
"bbox": [
205,
80,
845,
920
],
"desc": "A 3 by 4 grid of collectible stamps with rounded perforated edges, each stamp separated by precise dotted cut lines. The stamp cells contain small illustrated courier routes, arrows, parcel icons, and folded paper animal messengers.",
"color_palette": [
"#F8F1DF",
"#18213A",
"#2E8C7A",
"#E85D3F",
"#F2B84B"
]
},
{
"type": "obj",
"bbox": [
250,
115,
420,
335
],
"desc": "Folded paper crane carrying a tiny envelope in its beak, teal route line curving behind it, delicate crease shadows.",
"color_palette": [
"#F8F1DF",
"#2E8C7A",
"#18213A"
]
},
{
"type": "text",
"bbox": [
430,
125,
468,
330
],
"text": "AIR ROUTE 04",
"desc": "Tiny but legible stamp caption, uppercase condensed type, aligned to the lower edge of the first stamp.",
"color_palette": [
"#18213A"
]
},
{
"type": "obj",
"bbox": [
250,
390,
420,
610
],
"desc": "Folded paper fox with a miniature satchel, orange inner folds, standing on a simplified street-loop diagram.",
"color_palette": [
"#E85D3F",
"#F8F1DF",
"#18213A"
]
},
{
"type": "text",
"bbox": [
430,
400,
468,
600
],
"text": "CITY LOOP 09",
"desc": "Small stamp caption with clean spacing and sharp print edges.",
"color_palette": [
"#18213A"
]
},
{
"type": "obj",
"bbox": [
250,
665,
420,
885
],
"desc": "Folded paper rabbit pushing a tiny parcel cart, golden route pins, playful but precise geometry.",
"color_palette": [
"#F2B84B",
"#F8F1DF",
"#18213A"
]
},
{
"type": "text",
"bbox": [
430,
675,
468,
875
],
"text": "PARCEL HOP 12",
"desc": "Compact legible stamp caption beneath the rabbit stamp.",
"color_palette": [
"#18213A"
]
},
{
"type": "text",
"bbox": [
875,
100,
915,
400
],
"text": "12 LOCAL STAMPS",
"desc": "Bottom-left issue information, small uppercase type, aligned with the stamp grid.",
"color_palette": [
"#18213A"
]
},
{
"type": "text",
"bbox": [
875,
600,
915,
900
],
"text": "折便 ORI BIN",
"desc": "Bottom-right multilingual brand detail, Japanese characters and roman letters rendered cleanly.",
"color_palette": [
"#2E8C7A",
"#18213A"
]
},
{
"type": "text",
"bbox": [
930,
185,
965,
815
],
"text": "ISSUE No. 14476 — PAPER COURIER SERVICE",
"desc": "Fine micro-copy along the lower margin, perfectly straight baseline, realistic offset print finish.",
"color_palette": [
"#6E77A8"
]
}
]
}
}
}
}
]'runware run ideogram:4@0 \
width=2048 \
height=2048 \
settings.renderingSpeed=QUALITY \
settings.structuredPrompt.high_level_description="A premium fictional postal stamp sheet for a paper courier service called ORI POST, featuring folded paper animal messengers moving across a tidy city map. The composition should feel like a polished collectible print with exact type placement, perforation marks, micro-copy, and clean brand hierarchy." \
settings.structuredPrompt.style_description.medium="vector-inflected editorial print design with subtle paper grain" \
settings.structuredPrompt.style_description.aesthetics="minimal, clever, refined, highly organized, collectible stationery quality" \
settings.structuredPrompt.style_description.color_palette.0="#F8F1DF" \
settings.structuredPrompt.style_description.color_palette.1="#18213A" \
settings.structuredPrompt.style_description.color_palette.2="#E85D3F" \
settings.structuredPrompt.style_description.color_palette.3="#2E8C7A" \
settings.structuredPrompt.style_description.color_palette.4="#F2B84B" \
settings.structuredPrompt.style_description.color_palette.5="#6E77A8" \
settings.structuredPrompt.style_description.lighting="soft even studio light, gentle shadows from raised paper folds, crisp edges" \
settings.structuredPrompt.compositional_deconstruction.background="Square off-white stamp sheet on a clean flat surface, faint pale-blue city map lines beneath the stamp grid, tiny registration marks, neat margins, subtle paper texture, centered orthographic product-view framing." \
settings.structuredPrompt.compositional_deconstruction.elements.0.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.0=45 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.1=80 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.2=125 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.3=920 \
settings.structuredPrompt.compositional_deconstruction.elements.0.text="ORI POST" \
settings.structuredPrompt.compositional_deconstruction.elements.0.desc="Large bold uppercase header, custom geometric sans lettering, dark navy ink, perfectly centered with generous tracking." \
settings.structuredPrompt.compositional_deconstruction.elements.0.color_palette.0="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.1.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.0=130 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.1=210 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.2=170 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.3=790 \
settings.structuredPrompt.compositional_deconstruction.elements.1.text="FOLD • FLY • DELIVER" \
settings.structuredPrompt.compositional_deconstruction.elements.1.desc="Small uppercase motto below the header, crisp centered type, orange dot separators." \
settings.structuredPrompt.compositional_deconstruction.elements.1.color_palette.0="#E85D3F" \
settings.structuredPrompt.compositional_deconstruction.elements.1.color_palette.1="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.2.type=obj \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.0=205 \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.1=80 \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.2=845 \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.3=920 \
settings.structuredPrompt.compositional_deconstruction.elements.2.desc="A 3 by 4 grid of collectible stamps with rounded perforated edges, each stamp separated by precise dotted cut lines. The stamp cells contain small illustrated courier routes, arrows, parcel icons, and folded paper animal messengers." \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.0="#F8F1DF" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.1="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.2="#2E8C7A" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.3="#E85D3F" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.4="#F2B84B" \
settings.structuredPrompt.compositional_deconstruction.elements.3.type=obj \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.0=250 \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.1=115 \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.2=420 \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.3=335 \
settings.structuredPrompt.compositional_deconstruction.elements.3.desc="Folded paper crane carrying a tiny envelope in its beak, teal route line curving behind it, delicate crease shadows." \
settings.structuredPrompt.compositional_deconstruction.elements.3.color_palette.0="#F8F1DF" \
settings.structuredPrompt.compositional_deconstruction.elements.3.color_palette.1="#2E8C7A" \
settings.structuredPrompt.compositional_deconstruction.elements.3.color_palette.2="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.4.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.0=430 \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.1=125 \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.2=468 \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.3=330 \
settings.structuredPrompt.compositional_deconstruction.elements.4.text="AIR ROUTE 04" \
settings.structuredPrompt.compositional_deconstruction.elements.4.desc="Tiny but legible stamp caption, uppercase condensed type, aligned to the lower edge of the first stamp." \
settings.structuredPrompt.compositional_deconstruction.elements.4.color_palette.0="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.5.type=obj \
settings.structuredPrompt.compositional_deconstruction.elements.5.bbox.0=250 \
settings.structuredPrompt.compositional_deconstruction.elements.5.bbox.1=390 \
settings.structuredPrompt.compositional_deconstruction.elements.5.bbox.2=420 \
settings.structuredPrompt.compositional_deconstruction.elements.5.bbox.3=610 \
settings.structuredPrompt.compositional_deconstruction.elements.5.desc="Folded paper fox with a miniature satchel, orange inner folds, standing on a simplified street-loop diagram." \
settings.structuredPrompt.compositional_deconstruction.elements.5.color_palette.0="#E85D3F" \
settings.structuredPrompt.compositional_deconstruction.elements.5.color_palette.1="#F8F1DF" \
settings.structuredPrompt.compositional_deconstruction.elements.5.color_palette.2="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.6.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.6.bbox.0=430 \
settings.structuredPrompt.compositional_deconstruction.elements.6.bbox.1=400 \
settings.structuredPrompt.compositional_deconstruction.elements.6.bbox.2=468 \
settings.structuredPrompt.compositional_deconstruction.elements.6.bbox.3=600 \
settings.structuredPrompt.compositional_deconstruction.elements.6.text="CITY LOOP 09" \
settings.structuredPrompt.compositional_deconstruction.elements.6.desc="Small stamp caption with clean spacing and sharp print edges." \
settings.structuredPrompt.compositional_deconstruction.elements.6.color_palette.0="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.7.type=obj \
settings.structuredPrompt.compositional_deconstruction.elements.7.bbox.0=250 \
settings.structuredPrompt.compositional_deconstruction.elements.7.bbox.1=665 \
settings.structuredPrompt.compositional_deconstruction.elements.7.bbox.2=420 \
settings.structuredPrompt.compositional_deconstruction.elements.7.bbox.3=885 \
settings.structuredPrompt.compositional_deconstruction.elements.7.desc="Folded paper rabbit pushing a tiny parcel cart, golden route pins, playful but precise geometry." \
settings.structuredPrompt.compositional_deconstruction.elements.7.color_palette.0="#F2B84B" \
settings.structuredPrompt.compositional_deconstruction.elements.7.color_palette.1="#F8F1DF" \
settings.structuredPrompt.compositional_deconstruction.elements.7.color_palette.2="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.8.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.8.bbox.0=430 \
settings.structuredPrompt.compositional_deconstruction.elements.8.bbox.1=675 \
settings.structuredPrompt.compositional_deconstruction.elements.8.bbox.2=468 \
settings.structuredPrompt.compositional_deconstruction.elements.8.bbox.3=875 \
settings.structuredPrompt.compositional_deconstruction.elements.8.text="PARCEL HOP 12" \
settings.structuredPrompt.compositional_deconstruction.elements.8.desc="Compact legible stamp caption beneath the rabbit stamp." \
settings.structuredPrompt.compositional_deconstruction.elements.8.color_palette.0="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.9.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.9.bbox.0=875 \
settings.structuredPrompt.compositional_deconstruction.elements.9.bbox.1=100 \
settings.structuredPrompt.compositional_deconstruction.elements.9.bbox.2=915 \
settings.structuredPrompt.compositional_deconstruction.elements.9.bbox.3=400 \
settings.structuredPrompt.compositional_deconstruction.elements.9.text="12 LOCAL STAMPS" \
settings.structuredPrompt.compositional_deconstruction.elements.9.desc="Bottom-left issue information, small uppercase type, aligned with the stamp grid." \
settings.structuredPrompt.compositional_deconstruction.elements.9.color_palette.0="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.10.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.10.bbox.0=875 \
settings.structuredPrompt.compositional_deconstruction.elements.10.bbox.1=600 \
settings.structuredPrompt.compositional_deconstruction.elements.10.bbox.2=915 \
settings.structuredPrompt.compositional_deconstruction.elements.10.bbox.3=900 \
settings.structuredPrompt.compositional_deconstruction.elements.10.text="折便 ORI BIN" \
settings.structuredPrompt.compositional_deconstruction.elements.10.desc="Bottom-right multilingual brand detail, Japanese characters and roman letters rendered cleanly." \
settings.structuredPrompt.compositional_deconstruction.elements.10.color_palette.0="#2E8C7A" \
settings.structuredPrompt.compositional_deconstruction.elements.10.color_palette.1="#18213A" \
settings.structuredPrompt.compositional_deconstruction.elements.11.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.11.bbox.0=930 \
settings.structuredPrompt.compositional_deconstruction.elements.11.bbox.1=185 \
settings.structuredPrompt.compositional_deconstruction.elements.11.bbox.2=965 \
settings.structuredPrompt.compositional_deconstruction.elements.11.bbox.3=815 \
settings.structuredPrompt.compositional_deconstruction.elements.11.text="ISSUE No. 14476 — PAPER COURIER SERVICE" \
settings.structuredPrompt.compositional_deconstruction.elements.11.desc="Fine micro-copy along the lower margin, perfectly straight baseline, realistic offset print finish." \
settings.structuredPrompt.compositional_deconstruction.elements.11.color_palette.0="#6E77A8"{
"taskType": "imageInference",
"taskUUID": "0d4ecaa6-1269-4d50-9ace-a59da05a972a",
"model": "ideogram:4@0",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"structuredPrompt": {
"high_level_description": "A premium fictional postal stamp sheet for a paper courier service called ORI POST, featuring folded paper animal messengers moving across a tidy city map. The composition should feel like a polished collectible print with exact type placement, perforation marks, micro-copy, and clean brand hierarchy.",
"style_description": {
"medium": "vector-inflected editorial print design with subtle paper grain",
"aesthetics": "minimal, clever, refined, highly organized, collectible stationery quality",
"color_palette": [
"#F8F1DF",
"#18213A",
"#E85D3F",
"#2E8C7A",
"#F2B84B",
"#6E77A8"
],
"lighting": "soft even studio light, gentle shadows from raised paper folds, crisp edges"
},
"compositional_deconstruction": {
"background": "Square off-white stamp sheet on a clean flat surface, faint pale-blue city map lines beneath the stamp grid, tiny registration marks, neat margins, subtle paper texture, centered orthographic product-view framing.",
"elements": [
{
"type": "text",
"bbox": [
45,
80,
125,
920
],
"text": "ORI POST",
"desc": "Large bold uppercase header, custom geometric sans lettering, dark navy ink, perfectly centered with generous tracking.",
"color_palette": [
"#18213A"
]
},
{
"type": "text",
"bbox": [
130,
210,
170,
790
],
"text": "FOLD • FLY • DELIVER",
"desc": "Small uppercase motto below the header, crisp centered type, orange dot separators.",
"color_palette": [
"#E85D3F",
"#18213A"
]
},
{
"type": "obj",
"bbox": [
205,
80,
845,
920
],
"desc": "A 3 by 4 grid of collectible stamps with rounded perforated edges, each stamp separated by precise dotted cut lines. The stamp cells contain small illustrated courier routes, arrows, parcel icons, and folded paper animal messengers.",
"color_palette": [
"#F8F1DF",
"#18213A",
"#2E8C7A",
"#E85D3F",
"#F2B84B"
]
},
{
"type": "obj",
"bbox": [
250,
115,
420,
335
],
"desc": "Folded paper crane carrying a tiny envelope in its beak, teal route line curving behind it, delicate crease shadows.",
"color_palette": [
"#F8F1DF",
"#2E8C7A",
"#18213A"
]
},
{
"type": "text",
"bbox": [
430,
125,
468,
330
],
"text": "AIR ROUTE 04",
"desc": "Tiny but legible stamp caption, uppercase condensed type, aligned to the lower edge of the first stamp.",
"color_palette": [
"#18213A"
]
},
{
"type": "obj",
"bbox": [
250,
390,
420,
610
],
"desc": "Folded paper fox with a miniature satchel, orange inner folds, standing on a simplified street-loop diagram.",
"color_palette": [
"#E85D3F",
"#F8F1DF",
"#18213A"
]
},
{
"type": "text",
"bbox": [
430,
400,
468,
600
],
"text": "CITY LOOP 09",
"desc": "Small stamp caption with clean spacing and sharp print edges.",
"color_palette": [
"#18213A"
]
},
{
"type": "obj",
"bbox": [
250,
665,
420,
885
],
"desc": "Folded paper rabbit pushing a tiny parcel cart, golden route pins, playful but precise geometry.",
"color_palette": [
"#F2B84B",
"#F8F1DF",
"#18213A"
]
},
{
"type": "text",
"bbox": [
430,
675,
468,
875
],
"text": "PARCEL HOP 12",
"desc": "Compact legible stamp caption beneath the rabbit stamp.",
"color_palette": [
"#18213A"
]
},
{
"type": "text",
"bbox": [
875,
100,
915,
400
],
"text": "12 LOCAL STAMPS",
"desc": "Bottom-left issue information, small uppercase type, aligned with the stamp grid.",
"color_palette": [
"#18213A"
]
},
{
"type": "text",
"bbox": [
875,
600,
915,
900
],
"text": "折便 ORI BIN",
"desc": "Bottom-right multilingual brand detail, Japanese characters and roman letters rendered cleanly.",
"color_palette": [
"#2E8C7A",
"#18213A"
]
},
{
"type": "text",
"bbox": [
930,
185,
965,
815
],
"text": "ISSUE No. 14476 — PAPER COURIER SERVICE",
"desc": "Fine micro-copy along the lower margin, perfectly straight baseline, realistic offset print finish.",
"color_palette": [
"#6E77A8"
]
}
]
}
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "0d4ecaa6-1269-4d50-9ace-a59da05a972a",
"imageUUID": "869a7d52-11bd-4add-a63b-db9ae86cd9bb",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/869a7d52-11bd-4add-a63b-db9ae86cd9bb.jpg",
"seed": 1727640150,
"cost": 0.1,
"outputs": {
"structuredPrompt": {
"high_level_description": "A premium fictional postal stamp sheet for a paper courier service called ORI POST, featuring folded paper animal messengers moving across a tidy city map. The composition should feel like a polished collectible print with exact type placement, perforation marks, micro-copy, and clean brand hierarchy.",
"compositional_deconstruction": {
"background": "Square off-white stamp sheet on a clean flat surface, faint pale-blue city map lines beneath the stamp grid, tiny registration marks, neat margins, subtle paper texture, centered orthographic product-view framing.",
"elements": [
{
"type": "text",
"bbox": [
45,
80,
125,
920
],
"text": "ORI POST",
"desc": "Large bold uppercase header, custom geometric sans lettering, dark navy ink, perfectly centered with generous tracking."
},
{
"type": "text",
"bbox": [
130,
210,
170,
790
],
"text": "FOLD • FLY • DELIVER",
"desc": "Small uppercase motto below the header, crisp centered type, orange dot separators."
},
{
"type": "obj",
"bbox": [
205,
80,
845,
920
],
"desc": "A 3 by 4 grid of collectible stamps with rounded perforated edges, each stamp separated by precise dotted cut lines. The stamp cells contain small illustrated courier routes, arrows, parcel icons, and folded paper animal messengers."
},
{
"type": "obj",
"bbox": [
250,
115,
420,
335
],
"desc": "Folded paper crane carrying a tiny envelope in its beak, teal route line curving behind it, delicate crease shadows."
},
{
"type": "text",
"bbox": [
430,
125,
468,
330
],
"text": "AIR ROUTE 04",
"desc": "Tiny but legible stamp caption, uppercase condensed type, aligned to the lower edge of the first stamp."
},
{
"type": "obj",
"bbox": [
250,
390,
420,
610
],
"desc": "Folded paper fox with a miniature satchel, orange inner folds, standing on a simplified street-loop diagram."
},
{
"type": "text",
"bbox": [
430,
400,
468,
600
],
"text": "CITY LOOP 09",
"desc": "Small stamp caption with clean spacing and sharp print edges."
},
{
"type": "obj",
"bbox": [
250,
665,
420,
885
],
"desc": "Folded paper rabbit pushing a tiny parcel cart, golden route pins, playful but precise geometry."
},
{
"type": "text",
"bbox": [
430,
675,
468,
875
],
"text": "PARCEL HOP 12",
"desc": "Compact legible stamp caption beneath the rabbit stamp."
},
{
"type": "text",
"bbox": [
875,
100,
915,
400
],
"text": "12 LOCAL STAMPS",
"desc": "Bottom-left issue information, small uppercase type, aligned with the stamp grid."
},
{
"type": "text",
"bbox": [
875,
600,
915,
900
],
"text": "折便 ORI BIN",
"desc": "Bottom-right multilingual brand detail, Japanese characters and roman letters rendered cleanly."
},
{
"type": "text",
"bbox": [
930,
185,
965,
815
],
"text": "ISSUE No. 14476 — PAPER COURIER SERVICE",
"desc": "Fine micro-copy along the lower margin, perfectly straight baseline, realistic offset print finish."
}
]
}
}
}
}
Create a premium vertical field-guide poster with crisp, accurate typography and a tactile letterpress print feel. Subject: four highly detailed illustrated mushroom specimens arranged in a clean 2x2 botanical plate layout on warm ivory paper, with fine ink texture, subtle registration marks, specimen arrows, and delicate measurement ticks. Exact main title at top: "FUNGI OF THE HIGH MEADOW". Subtitle beneath: "Plate 07 • Autumn Survey". Each specimen must have a clean label in small caps: "CHANTERELLE AURORA", "MOREL PINEA", "AMETHYST DECEIVER", "CITRINE BOLETE". Add a bottom caption exactly: "Collected notes, spore marks, and habitat sketches". Use elegant serif typography paired with precise technical annotation lines. Color palette: ochre, chestnut, moss green, muted violet, graphite black. Composition should feel like a museum-quality natural history print, symmetrical, refined, design-forward, with all text sharp and readable, no misspellings, no extra words.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
positivePrompt: 'Create a premium vertical field-guide poster with crisp, accurate typography and a tactile letterpress print feel. Subject: four highly detailed illustrated mushroom specimens arranged in a clean 2x2 botanical plate layout on warm ivory paper, with fine ink texture, subtle registration marks, specimen arrows, and delicate measurement ticks. Exact main title at top: "FUNGI OF THE HIGH MEADOW". Subtitle beneath: "Plate 07 • Autumn Survey". Each specimen must have a clean label in small caps: "CHANTERELLE AURORA", "MOREL PINEA", "AMETHYST DECEIVER", "CITRINE BOLETE". Add a bottom caption exactly: "Collected notes, spore marks, and habitat sketches". Use elegant serif typography paired with precise technical annotation lines. Color palette: ochre, chestnut, moss green, muted violet, graphite black. Composition should feel like a museum-quality natural history print, symmetrical, refined, design-forward, with all text sharp and readable, no misspellings, no extra words.',
width: 1664,
height: 2496,
settings: {
renderingSpeed: 'QUALITY',
copyrightDetection: false
}
})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": "ideogram:4@0",
"positivePrompt": "Create a premium vertical field-guide poster with crisp, accurate typography and a tactile letterpress print feel. Subject: four highly detailed illustrated mushroom specimens arranged in a clean 2x2 botanical plate layout on warm ivory paper, with fine ink texture, subtle registration marks, specimen arrows, and delicate measurement ticks. Exact main title at top: \"FUNGI OF THE HIGH MEADOW\". Subtitle beneath: \"Plate 07 • Autumn Survey\". Each specimen must have a clean label in small caps: \"CHANTERELLE AURORA\", \"MOREL PINEA\", \"AMETHYST DECEIVER\", \"CITRINE BOLETE\". Add a bottom caption exactly: \"Collected notes, spore marks, and habitat sketches\". Use elegant serif typography paired with precise technical annotation lines. Color palette: ochre, chestnut, moss green, muted violet, graphite black. Composition should feel like a museum-quality natural history print, symmetrical, refined, design-forward, with all text sharp and readable, no misspellings, no extra words.",
"width": 1664,
"height": 2496,
"settings": {
"renderingSpeed": "QUALITY",
"copyrightDetection": False
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "f98587a5-41c5-4177-b78e-6ed7b2976682",
"model": "ideogram:4@0",
"positivePrompt": "Create a premium vertical field-guide poster with crisp, accurate typography and a tactile letterpress print feel. Subject: four highly detailed illustrated mushroom specimens arranged in a clean 2x2 botanical plate layout on warm ivory paper, with fine ink texture, subtle registration marks, specimen arrows, and delicate measurement ticks. Exact main title at top: \"FUNGI OF THE HIGH MEADOW\". Subtitle beneath: \"Plate 07 • Autumn Survey\". Each specimen must have a clean label in small caps: \"CHANTERELLE AURORA\", \"MOREL PINEA\", \"AMETHYST DECEIVER\", \"CITRINE BOLETE\". Add a bottom caption exactly: \"Collected notes, spore marks, and habitat sketches\". Use elegant serif typography paired with precise technical annotation lines. Color palette: ochre, chestnut, moss green, muted violet, graphite black. Composition should feel like a museum-quality natural history print, symmetrical, refined, design-forward, with all text sharp and readable, no misspellings, no extra words.",
"width": 1664,
"height": 2496,
"settings": {
"renderingSpeed": "QUALITY",
"copyrightDetection": false
}
}
]'runware run ideogram:4@0 \
positivePrompt="Create a premium vertical field-guide poster with crisp, accurate typography and a tactile letterpress print feel. Subject: four highly detailed illustrated mushroom specimens arranged in a clean 2x2 botanical plate layout on warm ivory paper, with fine ink texture, subtle registration marks, specimen arrows, and delicate measurement ticks. Exact main title at top: \"FUNGI OF THE HIGH MEADOW\". Subtitle beneath: \"Plate 07 • Autumn Survey\". Each specimen must have a clean label in small caps: \"CHANTERELLE AURORA\", \"MOREL PINEA\", \"AMETHYST DECEIVER\", \"CITRINE BOLETE\". Add a bottom caption exactly: \"Collected notes, spore marks, and habitat sketches\". Use elegant serif typography paired with precise technical annotation lines. Color palette: ochre, chestnut, moss green, muted violet, graphite black. Composition should feel like a museum-quality natural history print, symmetrical, refined, design-forward, with all text sharp and readable, no misspellings, no extra words." \
width=1664 \
height=2496 \
settings.renderingSpeed=QUALITY \
settings.copyrightDetection=false{
"taskType": "imageInference",
"taskUUID": "f98587a5-41c5-4177-b78e-6ed7b2976682",
"model": "ideogram:4@0",
"positivePrompt": "Create a premium vertical field-guide poster with crisp, accurate typography and a tactile letterpress print feel. Subject: four highly detailed illustrated mushroom specimens arranged in a clean 2x2 botanical plate layout on warm ivory paper, with fine ink texture, subtle registration marks, specimen arrows, and delicate measurement ticks. Exact main title at top: \"FUNGI OF THE HIGH MEADOW\". Subtitle beneath: \"Plate 07 • Autumn Survey\". Each specimen must have a clean label in small caps: \"CHANTERELLE AURORA\", \"MOREL PINEA\", \"AMETHYST DECEIVER\", \"CITRINE BOLETE\". Add a bottom caption exactly: \"Collected notes, spore marks, and habitat sketches\". Use elegant serif typography paired with precise technical annotation lines. Color palette: ochre, chestnut, moss green, muted violet, graphite black. Composition should feel like a museum-quality natural history print, symmetrical, refined, design-forward, with all text sharp and readable, no misspellings, no extra words.",
"width": 1664,
"height": 2496,
"settings": {
"renderingSpeed": "QUALITY",
"copyrightDetection": false
}
}Response
{
"taskType": "imageInference",
"taskUUID": "f98587a5-41c5-4177-b78e-6ed7b2976682",
"imageUUID": "fed7b2aa-7294-4bb1-a8ad-fee80a8efb69",
"imageURL": "https://im.runware.ai/image/os/a01d21/ws/4/ii/fed7b2aa-7294-4bb1-a8ad-fee80a8efb69.jpg",
"seed": 116233945,
"cost": 0.1
}structured-prompt
Community Radio Host Campaign Portrait$0.10~18s
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
width: 1792,
height: 2240,
settings: {
structuredPrompt: {
high_level_description: 'An elegant vertical exhibition poster for a nocturnal botanical event, combining luminous flowers with polished editorial typography.',
compositional_deconstruction: {
background: 'A deep midnight botanical garden with soft mist, dramatic moonlight, and open negative space around the central title.',
elements: [
{
type: 'text',
bbox: [
90,
120,
300,
880
],
color_palette: [
'#F4EBD0',
'#D8A7B1'
],
desc: 'Large elegant editorial title with crisp, highly legible lettering.',
text: 'NIGHT BLOOM'
},
{
type: 'obj',
bbox: [
320,
100,
900,
900
],
color_palette: [
'#111827',
'#355E3B',
'#8B5CF6',
'#F4EBD0'
],
desc: 'Luminous nocturnal flowers and curling leaves arranged as a refined botanical centerpiece.'
}
]
},
style_description: {
aesthetics: 'Sophisticated, atmospheric, luxurious, and uncluttered.',
art_style: 'Contemporary botanical poster illustration.',
color_palette: [
'#111827',
'#355E3B',
'#8B5CF6',
'#D8A7B1',
'#F4EBD0'
],
lighting: 'Soft moonlight with subtle floral glow.',
medium: 'High-end digital editorial illustration.'
}
},
renderingSpeed: 'QUALITY'
}
})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": "ideogram:4@0",
"width": 1792,
"height": 2240,
"settings": {
"structuredPrompt": {
"high_level_description": "An elegant vertical exhibition poster for a nocturnal botanical event, combining luminous flowers with polished editorial typography.",
"compositional_deconstruction": {
"background": "A deep midnight botanical garden with soft mist, dramatic moonlight, and open negative space around the central title.",
"elements": [
{
"type": "text",
"bbox": [
90,
120,
300,
880
],
"color_palette": [
"#F4EBD0",
"#D8A7B1"
],
"desc": "Large elegant editorial title with crisp, highly legible lettering.",
"text": "NIGHT BLOOM"
},
{
"type": "obj",
"bbox": [
320,
100,
900,
900
],
"color_palette": [
"#111827",
"#355E3B",
"#8B5CF6",
"#F4EBD0"
],
"desc": "Luminous nocturnal flowers and curling leaves arranged as a refined botanical centerpiece."
}
]
},
"style_description": {
"aesthetics": "Sophisticated, atmospheric, luxurious, and uncluttered.",
"art_style": "Contemporary botanical poster illustration.",
"color_palette": [
"#111827",
"#355E3B",
"#8B5CF6",
"#D8A7B1",
"#F4EBD0"
],
"lighting": "Soft moonlight with subtle floral glow.",
"medium": "High-end digital editorial illustration."
}
},
"renderingSpeed": "QUALITY"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "f64afb42-4511-4882-b596-626bb01544cf",
"model": "ideogram:4@0",
"width": 1792,
"height": 2240,
"settings": {
"structuredPrompt": {
"high_level_description": "An elegant vertical exhibition poster for a nocturnal botanical event, combining luminous flowers with polished editorial typography.",
"compositional_deconstruction": {
"background": "A deep midnight botanical garden with soft mist, dramatic moonlight, and open negative space around the central title.",
"elements": [
{
"type": "text",
"bbox": [
90,
120,
300,
880
],
"color_palette": [
"#F4EBD0",
"#D8A7B1"
],
"desc": "Large elegant editorial title with crisp, highly legible lettering.",
"text": "NIGHT BLOOM"
},
{
"type": "obj",
"bbox": [
320,
100,
900,
900
],
"color_palette": [
"#111827",
"#355E3B",
"#8B5CF6",
"#F4EBD0"
],
"desc": "Luminous nocturnal flowers and curling leaves arranged as a refined botanical centerpiece."
}
]
},
"style_description": {
"aesthetics": "Sophisticated, atmospheric, luxurious, and uncluttered.",
"art_style": "Contemporary botanical poster illustration.",
"color_palette": [
"#111827",
"#355E3B",
"#8B5CF6",
"#D8A7B1",
"#F4EBD0"
],
"lighting": "Soft moonlight with subtle floral glow.",
"medium": "High-end digital editorial illustration."
}
},
"renderingSpeed": "QUALITY"
}
}
]'runware run ideogram:4@0 \
width=1792 \
height=2240 \
settings.structuredPrompt.high_level_description="An elegant vertical exhibition poster for a nocturnal botanical event, combining luminous flowers with polished editorial typography." \
settings.structuredPrompt.compositional_deconstruction.background="A deep midnight botanical garden with soft mist, dramatic moonlight, and open negative space around the central title." \
settings.structuredPrompt.compositional_deconstruction.elements.0.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.0=90 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.1=120 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.2=300 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.3=880 \
settings.structuredPrompt.compositional_deconstruction.elements.0.color_palette.0="#F4EBD0" \
settings.structuredPrompt.compositional_deconstruction.elements.0.color_palette.1="#D8A7B1" \
settings.structuredPrompt.compositional_deconstruction.elements.0.desc="Large elegant editorial title with crisp, highly legible lettering." \
settings.structuredPrompt.compositional_deconstruction.elements.0.text="NIGHT BLOOM" \
settings.structuredPrompt.compositional_deconstruction.elements.1.type=obj \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.0=320 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.1=100 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.2=900 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.3=900 \
settings.structuredPrompt.compositional_deconstruction.elements.1.color_palette.0="#111827" \
settings.structuredPrompt.compositional_deconstruction.elements.1.color_palette.1="#355E3B" \
settings.structuredPrompt.compositional_deconstruction.elements.1.color_palette.2="#8B5CF6" \
settings.structuredPrompt.compositional_deconstruction.elements.1.color_palette.3="#F4EBD0" \
settings.structuredPrompt.compositional_deconstruction.elements.1.desc="Luminous nocturnal flowers and curling leaves arranged as a refined botanical centerpiece." \
settings.structuredPrompt.style_description.aesthetics="Sophisticated, atmospheric, luxurious, and uncluttered." \
settings.structuredPrompt.style_description.art_style="Contemporary botanical poster illustration." \
settings.structuredPrompt.style_description.color_palette.0="#111827" \
settings.structuredPrompt.style_description.color_palette.1="#355E3B" \
settings.structuredPrompt.style_description.color_palette.2="#8B5CF6" \
settings.structuredPrompt.style_description.color_palette.3="#D8A7B1" \
settings.structuredPrompt.style_description.color_palette.4="#F4EBD0" \
settings.structuredPrompt.style_description.lighting="Soft moonlight with subtle floral glow." \
settings.structuredPrompt.style_description.medium="High-end digital editorial illustration." \
settings.renderingSpeed=QUALITY{
"taskType": "imageInference",
"taskUUID": "f64afb42-4511-4882-b596-626bb01544cf",
"model": "ideogram:4@0",
"width": 1792,
"height": 2240,
"settings": {
"structuredPrompt": {
"high_level_description": "An elegant vertical exhibition poster for a nocturnal botanical event, combining luminous flowers with polished editorial typography.",
"compositional_deconstruction": {
"background": "A deep midnight botanical garden with soft mist, dramatic moonlight, and open negative space around the central title.",
"elements": [
{
"type": "text",
"bbox": [
90,
120,
300,
880
],
"color_palette": [
"#F4EBD0",
"#D8A7B1"
],
"desc": "Large elegant editorial title with crisp, highly legible lettering.",
"text": "NIGHT BLOOM"
},
{
"type": "obj",
"bbox": [
320,
100,
900,
900
],
"color_palette": [
"#111827",
"#355E3B",
"#8B5CF6",
"#F4EBD0"
],
"desc": "Luminous nocturnal flowers and curling leaves arranged as a refined botanical centerpiece."
}
]
},
"style_description": {
"aesthetics": "Sophisticated, atmospheric, luxurious, and uncluttered.",
"art_style": "Contemporary botanical poster illustration.",
"color_palette": [
"#111827",
"#355E3B",
"#8B5CF6",
"#D8A7B1",
"#F4EBD0"
],
"lighting": "Soft moonlight with subtle floral glow.",
"medium": "High-end digital editorial illustration."
}
},
"renderingSpeed": "QUALITY"
}
}Response
{
"taskType": "imageInference",
"taskUUID": "f64afb42-4511-4882-b596-626bb01544cf",
"imageUUID": "e770aac2-7263-40da-9f9a-b8fbd56aea86",
"imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/4/ii/e770aac2-7263-40da-9f9a-b8fbd56aea86.jpg",
"seed": 2082965995,
"cost": 0.1,
"structuredPrompt": {
"high_level_description": "An elegant vertical exhibition poster for a nocturnal botanical event, combining luminous flowers with polished editorial typography.",
"style_description": {
"aesthetics": "Sophisticated, atmospheric, luxurious, and uncluttered.",
"art_style": "Contemporary botanical poster illustration.",
"lighting": "Soft moonlight with subtle floral glow.",
"medium": "High-end digital editorial illustration.",
"color_palette": [
"#111827",
"#355E3B",
"#8B5CF6",
"#D8A7B1",
"#F4EBD0"
]
},
"compositional_deconstruction": {
"background": "A deep midnight botanical garden with soft mist, dramatic moonlight, and open negative space around the central title.",
"elements": [
{
"type": "text",
"bbox": [
90,
120,
300,
880
],
"text": "NIGHT BLOOM",
"desc": "Large elegant editorial title with crisp, highly legible lettering.",
"color_palette": [
"#F4EBD0",
"#D8A7B1"
]
},
{
"type": "obj",
"bbox": [
320,
100,
900,
900
],
"desc": "Luminous nocturnal flowers and curling leaves arranged as a refined botanical centerpiece.",
"color_palette": [
"#111827",
"#355E3B",
"#8B5CF6",
"#F4EBD0"
]
}
]
}
}
}
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
width: 2048,
height: 2048,
settings: {
renderingSpeed: 'QUALITY',
structuredPrompt: {
high_level_description: 'A square retro-futuristic promotional poster for a cosmic self-service laundry brand, centered on a chrome washer shaped like a particle accelerator with orbiting socks and detergent capsules. The layout emphasizes crisp readable typography, clean label hierarchy, and precise object placement.',
style_description: {
aesthetics: 'Playful premium appliance advertising, Swiss grid discipline mixed with 1980s sci-fi catalog energy, sharp edges, generous negative space, polished finish.',
medium: 'High-resolution vector-like digital illustration with realistic chrome shading and subtle screen-print speckle texture.',
lighting: 'Clean studio glow with cyan rim highlights and warm cream headline contrast.',
color_palette: [
'#101A3D',
'#65E4FF',
'#F7F0D8',
'#FF4F6D',
'#B7C2D8',
'#1F2D5C'
]
},
compositional_deconstruction: {
background: 'Flat deep indigo backdrop with subtle halftone dots, pale cyan circular orbit lines, faint isometric tile floor at the bottom, no scenery beyond the graphic poster surface.',
elements: [
{
type: 'text',
bbox: [
58,
95,
190,
905
],
text: 'NEUTRINO WASH',
desc: 'Top headline in large condensed cream sans-serif letters, perfectly spelled, centered, slight cyan offset shadow.',
color_palette: [
'#F7F0D8',
'#65E4FF'
]
},
{
type: 'text',
bbox: [
195,
205,
265,
795
],
text: 'CLEAN UNTIL TOMORROW',
desc: 'Secondary slogan in smaller uppercase lettering with wide tracking, centered under the headline.',
color_palette: [
'#65E4FF'
]
},
{
type: 'obj',
bbox: [
280,
210,
760,
790
],
desc: 'Central chrome front-loading washer with a circular accelerator-ring door, tiny stars in the porthole, soap bubbles as small planets, two red socks following orbital paths, crisp edges and premium packaging-ad look.',
color_palette: [
'#B7C2D8',
'#65E4FF',
'#FF4F6D',
'#F7F0D8'
]
},
{
type: 'text',
bbox: [
770,
125,
845,
875
],
text: 'CYCLE 56385',
desc: 'Bold badge text inside a rounded capsule label, centered and very readable.',
color_palette: [
'#101A3D',
'#F7F0D8'
]
},
{
type: 'text',
bbox: [
858,
150,
918,
850
],
text: 'WARP-FREE GARMENTS • NO SOCK LEFT BEHIND',
desc: 'Fine-print feature line in crisp uppercase letters across the lower band, evenly spaced.',
color_palette: [
'#F7F0D8'
]
}
]
}
}
}
})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": "ideogram:4@0",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"structuredPrompt": {
"high_level_description": "A square retro-futuristic promotional poster for a cosmic self-service laundry brand, centered on a chrome washer shaped like a particle accelerator with orbiting socks and detergent capsules. The layout emphasizes crisp readable typography, clean label hierarchy, and precise object placement.",
"style_description": {
"aesthetics": "Playful premium appliance advertising, Swiss grid discipline mixed with 1980s sci-fi catalog energy, sharp edges, generous negative space, polished finish.",
"medium": "High-resolution vector-like digital illustration with realistic chrome shading and subtle screen-print speckle texture.",
"lighting": "Clean studio glow with cyan rim highlights and warm cream headline contrast.",
"color_palette": [
"#101A3D",
"#65E4FF",
"#F7F0D8",
"#FF4F6D",
"#B7C2D8",
"#1F2D5C"
]
},
"compositional_deconstruction": {
"background": "Flat deep indigo backdrop with subtle halftone dots, pale cyan circular orbit lines, faint isometric tile floor at the bottom, no scenery beyond the graphic poster surface.",
"elements": [
{
"type": "text",
"bbox": [
58,
95,
190,
905
],
"text": "NEUTRINO WASH",
"desc": "Top headline in large condensed cream sans-serif letters, perfectly spelled, centered, slight cyan offset shadow.",
"color_palette": [
"#F7F0D8",
"#65E4FF"
]
},
{
"type": "text",
"bbox": [
195,
205,
265,
795
],
"text": "CLEAN UNTIL TOMORROW",
"desc": "Secondary slogan in smaller uppercase lettering with wide tracking, centered under the headline.",
"color_palette": [
"#65E4FF"
]
},
{
"type": "obj",
"bbox": [
280,
210,
760,
790
],
"desc": "Central chrome front-loading washer with a circular accelerator-ring door, tiny stars in the porthole, soap bubbles as small planets, two red socks following orbital paths, crisp edges and premium packaging-ad look.",
"color_palette": [
"#B7C2D8",
"#65E4FF",
"#FF4F6D",
"#F7F0D8"
]
},
{
"type": "text",
"bbox": [
770,
125,
845,
875
],
"text": "CYCLE 56385",
"desc": "Bold badge text inside a rounded capsule label, centered and very readable.",
"color_palette": [
"#101A3D",
"#F7F0D8"
]
},
{
"type": "text",
"bbox": [
858,
150,
918,
850
],
"text": "WARP-FREE GARMENTS • NO SOCK LEFT BEHIND",
"desc": "Fine-print feature line in crisp uppercase letters across the lower band, evenly spaced.",
"color_palette": [
"#F7F0D8"
]
}
]
}
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "e0e85c24-cea0-4618-80df-b06c49e8237c",
"model": "ideogram:4@0",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"structuredPrompt": {
"high_level_description": "A square retro-futuristic promotional poster for a cosmic self-service laundry brand, centered on a chrome washer shaped like a particle accelerator with orbiting socks and detergent capsules. The layout emphasizes crisp readable typography, clean label hierarchy, and precise object placement.",
"style_description": {
"aesthetics": "Playful premium appliance advertising, Swiss grid discipline mixed with 1980s sci-fi catalog energy, sharp edges, generous negative space, polished finish.",
"medium": "High-resolution vector-like digital illustration with realistic chrome shading and subtle screen-print speckle texture.",
"lighting": "Clean studio glow with cyan rim highlights and warm cream headline contrast.",
"color_palette": [
"#101A3D",
"#65E4FF",
"#F7F0D8",
"#FF4F6D",
"#B7C2D8",
"#1F2D5C"
]
},
"compositional_deconstruction": {
"background": "Flat deep indigo backdrop with subtle halftone dots, pale cyan circular orbit lines, faint isometric tile floor at the bottom, no scenery beyond the graphic poster surface.",
"elements": [
{
"type": "text",
"bbox": [
58,
95,
190,
905
],
"text": "NEUTRINO WASH",
"desc": "Top headline in large condensed cream sans-serif letters, perfectly spelled, centered, slight cyan offset shadow.",
"color_palette": [
"#F7F0D8",
"#65E4FF"
]
},
{
"type": "text",
"bbox": [
195,
205,
265,
795
],
"text": "CLEAN UNTIL TOMORROW",
"desc": "Secondary slogan in smaller uppercase lettering with wide tracking, centered under the headline.",
"color_palette": [
"#65E4FF"
]
},
{
"type": "obj",
"bbox": [
280,
210,
760,
790
],
"desc": "Central chrome front-loading washer with a circular accelerator-ring door, tiny stars in the porthole, soap bubbles as small planets, two red socks following orbital paths, crisp edges and premium packaging-ad look.",
"color_palette": [
"#B7C2D8",
"#65E4FF",
"#FF4F6D",
"#F7F0D8"
]
},
{
"type": "text",
"bbox": [
770,
125,
845,
875
],
"text": "CYCLE 56385",
"desc": "Bold badge text inside a rounded capsule label, centered and very readable.",
"color_palette": [
"#101A3D",
"#F7F0D8"
]
},
{
"type": "text",
"bbox": [
858,
150,
918,
850
],
"text": "WARP-FREE GARMENTS • NO SOCK LEFT BEHIND",
"desc": "Fine-print feature line in crisp uppercase letters across the lower band, evenly spaced.",
"color_palette": [
"#F7F0D8"
]
}
]
}
}
}
}
]'runware run ideogram:4@0 \
width=2048 \
height=2048 \
settings.renderingSpeed=QUALITY \
settings.structuredPrompt.high_level_description="A square retro-futuristic promotional poster for a cosmic self-service laundry brand, centered on a chrome washer shaped like a particle accelerator with orbiting socks and detergent capsules. The layout emphasizes crisp readable typography, clean label hierarchy, and precise object placement." \
settings.structuredPrompt.style_description.aesthetics="Playful premium appliance advertising, Swiss grid discipline mixed with 1980s sci-fi catalog energy, sharp edges, generous negative space, polished finish." \
settings.structuredPrompt.style_description.medium="High-resolution vector-like digital illustration with realistic chrome shading and subtle screen-print speckle texture." \
settings.structuredPrompt.style_description.lighting="Clean studio glow with cyan rim highlights and warm cream headline contrast." \
settings.structuredPrompt.style_description.color_palette.0="#101A3D" \
settings.structuredPrompt.style_description.color_palette.1="#65E4FF" \
settings.structuredPrompt.style_description.color_palette.2="#F7F0D8" \
settings.structuredPrompt.style_description.color_palette.3="#FF4F6D" \
settings.structuredPrompt.style_description.color_palette.4="#B7C2D8" \
settings.structuredPrompt.style_description.color_palette.5="#1F2D5C" \
settings.structuredPrompt.compositional_deconstruction.background="Flat deep indigo backdrop with subtle halftone dots, pale cyan circular orbit lines, faint isometric tile floor at the bottom, no scenery beyond the graphic poster surface." \
settings.structuredPrompt.compositional_deconstruction.elements.0.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.0=58 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.1=95 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.2=190 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.3=905 \
settings.structuredPrompt.compositional_deconstruction.elements.0.text="NEUTRINO WASH" \
settings.structuredPrompt.compositional_deconstruction.elements.0.desc="Top headline in large condensed cream sans-serif letters, perfectly spelled, centered, slight cyan offset shadow." \
settings.structuredPrompt.compositional_deconstruction.elements.0.color_palette.0="#F7F0D8" \
settings.structuredPrompt.compositional_deconstruction.elements.0.color_palette.1="#65E4FF" \
settings.structuredPrompt.compositional_deconstruction.elements.1.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.0=195 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.1=205 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.2=265 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.3=795 \
settings.structuredPrompt.compositional_deconstruction.elements.1.text="CLEAN UNTIL TOMORROW" \
settings.structuredPrompt.compositional_deconstruction.elements.1.desc="Secondary slogan in smaller uppercase lettering with wide tracking, centered under the headline." \
settings.structuredPrompt.compositional_deconstruction.elements.1.color_palette.0="#65E4FF" \
settings.structuredPrompt.compositional_deconstruction.elements.2.type=obj \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.0=280 \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.1=210 \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.2=760 \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.3=790 \
settings.structuredPrompt.compositional_deconstruction.elements.2.desc="Central chrome front-loading washer with a circular accelerator-ring door, tiny stars in the porthole, soap bubbles as small planets, two red socks following orbital paths, crisp edges and premium packaging-ad look." \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.0="#B7C2D8" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.1="#65E4FF" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.2="#FF4F6D" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.3="#F7F0D8" \
settings.structuredPrompt.compositional_deconstruction.elements.3.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.0=770 \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.1=125 \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.2=845 \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.3=875 \
settings.structuredPrompt.compositional_deconstruction.elements.3.text="CYCLE 56385" \
settings.structuredPrompt.compositional_deconstruction.elements.3.desc="Bold badge text inside a rounded capsule label, centered and very readable." \
settings.structuredPrompt.compositional_deconstruction.elements.3.color_palette.0="#101A3D" \
settings.structuredPrompt.compositional_deconstruction.elements.3.color_palette.1="#F7F0D8" \
settings.structuredPrompt.compositional_deconstruction.elements.4.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.0=858 \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.1=150 \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.2=918 \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.3=850 \
settings.structuredPrompt.compositional_deconstruction.elements.4.text="WARP-FREE GARMENTS • NO SOCK LEFT BEHIND" \
settings.structuredPrompt.compositional_deconstruction.elements.4.desc="Fine-print feature line in crisp uppercase letters across the lower band, evenly spaced." \
settings.structuredPrompt.compositional_deconstruction.elements.4.color_palette.0="#F7F0D8"{
"taskType": "imageInference",
"taskUUID": "e0e85c24-cea0-4618-80df-b06c49e8237c",
"model": "ideogram:4@0",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"structuredPrompt": {
"high_level_description": "A square retro-futuristic promotional poster for a cosmic self-service laundry brand, centered on a chrome washer shaped like a particle accelerator with orbiting socks and detergent capsules. The layout emphasizes crisp readable typography, clean label hierarchy, and precise object placement.",
"style_description": {
"aesthetics": "Playful premium appliance advertising, Swiss grid discipline mixed with 1980s sci-fi catalog energy, sharp edges, generous negative space, polished finish.",
"medium": "High-resolution vector-like digital illustration with realistic chrome shading and subtle screen-print speckle texture.",
"lighting": "Clean studio glow with cyan rim highlights and warm cream headline contrast.",
"color_palette": [
"#101A3D",
"#65E4FF",
"#F7F0D8",
"#FF4F6D",
"#B7C2D8",
"#1F2D5C"
]
},
"compositional_deconstruction": {
"background": "Flat deep indigo backdrop with subtle halftone dots, pale cyan circular orbit lines, faint isometric tile floor at the bottom, no scenery beyond the graphic poster surface.",
"elements": [
{
"type": "text",
"bbox": [
58,
95,
190,
905
],
"text": "NEUTRINO WASH",
"desc": "Top headline in large condensed cream sans-serif letters, perfectly spelled, centered, slight cyan offset shadow.",
"color_palette": [
"#F7F0D8",
"#65E4FF"
]
},
{
"type": "text",
"bbox": [
195,
205,
265,
795
],
"text": "CLEAN UNTIL TOMORROW",
"desc": "Secondary slogan in smaller uppercase lettering with wide tracking, centered under the headline.",
"color_palette": [
"#65E4FF"
]
},
{
"type": "obj",
"bbox": [
280,
210,
760,
790
],
"desc": "Central chrome front-loading washer with a circular accelerator-ring door, tiny stars in the porthole, soap bubbles as small planets, two red socks following orbital paths, crisp edges and premium packaging-ad look.",
"color_palette": [
"#B7C2D8",
"#65E4FF",
"#FF4F6D",
"#F7F0D8"
]
},
{
"type": "text",
"bbox": [
770,
125,
845,
875
],
"text": "CYCLE 56385",
"desc": "Bold badge text inside a rounded capsule label, centered and very readable.",
"color_palette": [
"#101A3D",
"#F7F0D8"
]
},
{
"type": "text",
"bbox": [
858,
150,
918,
850
],
"text": "WARP-FREE GARMENTS • NO SOCK LEFT BEHIND",
"desc": "Fine-print feature line in crisp uppercase letters across the lower band, evenly spaced.",
"color_palette": [
"#F7F0D8"
]
}
]
}
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "e0e85c24-cea0-4618-80df-b06c49e8237c",
"imageUUID": "1900f28f-f19a-451d-95ab-f04085f8d2f1",
"imageURL": "https://im.runware.ai/image/os/a02d21/ws/4/ii/1900f28f-f19a-451d-95ab-f04085f8d2f1.jpg",
"seed": 1122984357,
"cost": 0.1,
"outputs": {
"structuredPrompt": {
"high_level_description": "A square retro-futuristic promotional poster for a cosmic self-service laundry brand, centered on a chrome washer shaped like a particle accelerator with orbiting socks and detergent capsules. The layout emphasizes crisp readable typography, clean label hierarchy, and precise object placement.",
"compositional_deconstruction": {
"background": "Flat deep indigo backdrop with subtle halftone dots, pale cyan circular orbit lines, faint isometric tile floor at the bottom, no scenery beyond the graphic poster surface.",
"elements": [
{
"type": "text",
"bbox": [
58,
95,
190,
905
],
"text": "NEUTRINO WASH",
"desc": "Top headline in large condensed cream sans-serif letters, perfectly spelled, centered, slight cyan offset shadow."
},
{
"type": "text",
"bbox": [
195,
205,
265,
795
],
"text": "CLEAN UNTIL TOMORROW",
"desc": "Secondary slogan in smaller uppercase lettering with wide tracking, centered under the headline."
},
{
"type": "obj",
"bbox": [
280,
210,
760,
790
],
"desc": "Central chrome front-loading washer with a circular accelerator-ring door, tiny stars in the porthole, soap bubbles as small planets, two red socks following orbital paths, crisp edges and premium packaging-ad look."
},
{
"type": "text",
"bbox": [
770,
125,
845,
875
],
"text": "CYCLE 56385",
"desc": "Bold badge text inside a rounded capsule label, centered and very readable."
},
{
"type": "text",
"bbox": [
858,
150,
918,
850
],
"text": "WARP-FREE GARMENTS • NO SOCK LEFT BEHIND",
"desc": "Fine-print feature line in crisp uppercase letters across the lower band, evenly spaced."
}
]
}
}
}
}
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
width: 2048,
height: 2048,
settings: {
renderingSpeed: 'QUALITY',
structuredPrompt: {
high_level_description: 'A square premium label design for a fictional honey brand powered by tiny solar panels and tended by orderly golden bees. The composition should feel polished, print-ready, elegant, and highly legible with crisp text hierarchy.',
style_description: {
aesthetics: 'Clean luxury grocery packaging, geometric sun motifs, refined linework, generous margins, balanced symmetry, tactile paper texture.',
medium: 'Vector-style packaging illustration with subtle embossing and spot-ink effects.',
color_palette: [
'#F7C948',
'#2E1F12',
'#FFF4D6',
'#D98B20',
'#3A6B35',
'#FFFFFF'
],
lighting: 'Soft studio product lighting with gentle paper grain shadows and warm highlights.'
},
compositional_deconstruction: {
background: 'Warm cream square label surface with a thin double-line border, faint honeycomb pattern, centered layout, subtle printed-paper grain, no real brand logos.',
elements: [
{
type: 'text',
bbox: [
70,
190,
150,
810
],
text: 'SOLAR APIARY',
desc: 'Large uppercase serif brand name, perfectly centered, dark cocoa ink, high contrast, crisp readable letterforms.',
color_palette: [
'#2E1F12'
]
},
{
type: 'text',
bbox: [
155,
290,
215,
710
],
text: 'SMALL BATCH HONEY',
desc: 'Smaller uppercase subtitle with wide tracking, centered beneath the brand name.',
color_palette: [
'#3A6B35'
]
},
{
type: 'obj',
bbox: [
240,
250,
680,
750
],
desc: 'Elegant central emblem: a radiant sun disk behind a hexagonal hive, tiny bees arranged in a circular flight path, miniature solar panels integrated into the hive roof, fine engraved line details.',
color_palette: [
'#F7C948',
'#D98B20',
'#2E1F12',
'#3A6B35'
]
},
{
type: 'text',
bbox: [
710,
250,
790,
750
],
text: 'GOLDEN CLOVER BLEND',
desc: 'Bold centered product variety line, elegant sans serif, very readable.',
color_palette: [
'#2E1F12'
]
},
{
type: 'text',
bbox: [
815,
190,
880,
810
],
text: 'HARVEST 94699 • NET WT 12 OZ',
desc: 'Fine label footer text with accurate punctuation, centered, clean small caps.',
color_palette: [
'#2E1F12'
]
},
{
type: 'obj',
bbox: [
890,
120,
965,
880
],
desc: 'Bottom ornamental band with repeating hexagons, tiny clover leaves, and thin parallel rules, symmetrical and print-ready.',
color_palette: [
'#D98B20',
'#3A6B35',
'#2E1F12'
]
}
]
}
}
}
})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": "ideogram:4@0",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"structuredPrompt": {
"high_level_description": "A square premium label design for a fictional honey brand powered by tiny solar panels and tended by orderly golden bees. The composition should feel polished, print-ready, elegant, and highly legible with crisp text hierarchy.",
"style_description": {
"aesthetics": "Clean luxury grocery packaging, geometric sun motifs, refined linework, generous margins, balanced symmetry, tactile paper texture.",
"medium": "Vector-style packaging illustration with subtle embossing and spot-ink effects.",
"color_palette": [
"#F7C948",
"#2E1F12",
"#FFF4D6",
"#D98B20",
"#3A6B35",
"#FFFFFF"
],
"lighting": "Soft studio product lighting with gentle paper grain shadows and warm highlights."
},
"compositional_deconstruction": {
"background": "Warm cream square label surface with a thin double-line border, faint honeycomb pattern, centered layout, subtle printed-paper grain, no real brand logos.",
"elements": [
{
"type": "text",
"bbox": [
70,
190,
150,
810
],
"text": "SOLAR APIARY",
"desc": "Large uppercase serif brand name, perfectly centered, dark cocoa ink, high contrast, crisp readable letterforms.",
"color_palette": [
"#2E1F12"
]
},
{
"type": "text",
"bbox": [
155,
290,
215,
710
],
"text": "SMALL BATCH HONEY",
"desc": "Smaller uppercase subtitle with wide tracking, centered beneath the brand name.",
"color_palette": [
"#3A6B35"
]
},
{
"type": "obj",
"bbox": [
240,
250,
680,
750
],
"desc": "Elegant central emblem: a radiant sun disk behind a hexagonal hive, tiny bees arranged in a circular flight path, miniature solar panels integrated into the hive roof, fine engraved line details.",
"color_palette": [
"#F7C948",
"#D98B20",
"#2E1F12",
"#3A6B35"
]
},
{
"type": "text",
"bbox": [
710,
250,
790,
750
],
"text": "GOLDEN CLOVER BLEND",
"desc": "Bold centered product variety line, elegant sans serif, very readable.",
"color_palette": [
"#2E1F12"
]
},
{
"type": "text",
"bbox": [
815,
190,
880,
810
],
"text": "HARVEST 94699 • NET WT 12 OZ",
"desc": "Fine label footer text with accurate punctuation, centered, clean small caps.",
"color_palette": [
"#2E1F12"
]
},
{
"type": "obj",
"bbox": [
890,
120,
965,
880
],
"desc": "Bottom ornamental band with repeating hexagons, tiny clover leaves, and thin parallel rules, symmetrical and print-ready.",
"color_palette": [
"#D98B20",
"#3A6B35",
"#2E1F12"
]
}
]
}
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "207e4a1c-c751-4cd2-ade3-4a2e79d57c1b",
"model": "ideogram:4@0",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"structuredPrompt": {
"high_level_description": "A square premium label design for a fictional honey brand powered by tiny solar panels and tended by orderly golden bees. The composition should feel polished, print-ready, elegant, and highly legible with crisp text hierarchy.",
"style_description": {
"aesthetics": "Clean luxury grocery packaging, geometric sun motifs, refined linework, generous margins, balanced symmetry, tactile paper texture.",
"medium": "Vector-style packaging illustration with subtle embossing and spot-ink effects.",
"color_palette": [
"#F7C948",
"#2E1F12",
"#FFF4D6",
"#D98B20",
"#3A6B35",
"#FFFFFF"
],
"lighting": "Soft studio product lighting with gentle paper grain shadows and warm highlights."
},
"compositional_deconstruction": {
"background": "Warm cream square label surface with a thin double-line border, faint honeycomb pattern, centered layout, subtle printed-paper grain, no real brand logos.",
"elements": [
{
"type": "text",
"bbox": [
70,
190,
150,
810
],
"text": "SOLAR APIARY",
"desc": "Large uppercase serif brand name, perfectly centered, dark cocoa ink, high contrast, crisp readable letterforms.",
"color_palette": [
"#2E1F12"
]
},
{
"type": "text",
"bbox": [
155,
290,
215,
710
],
"text": "SMALL BATCH HONEY",
"desc": "Smaller uppercase subtitle with wide tracking, centered beneath the brand name.",
"color_palette": [
"#3A6B35"
]
},
{
"type": "obj",
"bbox": [
240,
250,
680,
750
],
"desc": "Elegant central emblem: a radiant sun disk behind a hexagonal hive, tiny bees arranged in a circular flight path, miniature solar panels integrated into the hive roof, fine engraved line details.",
"color_palette": [
"#F7C948",
"#D98B20",
"#2E1F12",
"#3A6B35"
]
},
{
"type": "text",
"bbox": [
710,
250,
790,
750
],
"text": "GOLDEN CLOVER BLEND",
"desc": "Bold centered product variety line, elegant sans serif, very readable.",
"color_palette": [
"#2E1F12"
]
},
{
"type": "text",
"bbox": [
815,
190,
880,
810
],
"text": "HARVEST 94699 • NET WT 12 OZ",
"desc": "Fine label footer text with accurate punctuation, centered, clean small caps.",
"color_palette": [
"#2E1F12"
]
},
{
"type": "obj",
"bbox": [
890,
120,
965,
880
],
"desc": "Bottom ornamental band with repeating hexagons, tiny clover leaves, and thin parallel rules, symmetrical and print-ready.",
"color_palette": [
"#D98B20",
"#3A6B35",
"#2E1F12"
]
}
]
}
}
}
}
]'runware run ideogram:4@0 \
width=2048 \
height=2048 \
settings.renderingSpeed=QUALITY \
settings.structuredPrompt.high_level_description="A square premium label design for a fictional honey brand powered by tiny solar panels and tended by orderly golden bees. The composition should feel polished, print-ready, elegant, and highly legible with crisp text hierarchy." \
settings.structuredPrompt.style_description.aesthetics="Clean luxury grocery packaging, geometric sun motifs, refined linework, generous margins, balanced symmetry, tactile paper texture." \
settings.structuredPrompt.style_description.medium="Vector-style packaging illustration with subtle embossing and spot-ink effects." \
settings.structuredPrompt.style_description.color_palette.0="#F7C948" \
settings.structuredPrompt.style_description.color_palette.1="#2E1F12" \
settings.structuredPrompt.style_description.color_palette.2="#FFF4D6" \
settings.structuredPrompt.style_description.color_palette.3="#D98B20" \
settings.structuredPrompt.style_description.color_palette.4="#3A6B35" \
settings.structuredPrompt.style_description.color_palette.5="#FFFFFF" \
settings.structuredPrompt.style_description.lighting="Soft studio product lighting with gentle paper grain shadows and warm highlights." \
settings.structuredPrompt.compositional_deconstruction.background="Warm cream square label surface with a thin double-line border, faint honeycomb pattern, centered layout, subtle printed-paper grain, no real brand logos." \
settings.structuredPrompt.compositional_deconstruction.elements.0.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.0=70 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.1=190 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.2=150 \
settings.structuredPrompt.compositional_deconstruction.elements.0.bbox.3=810 \
settings.structuredPrompt.compositional_deconstruction.elements.0.text="SOLAR APIARY" \
settings.structuredPrompt.compositional_deconstruction.elements.0.desc="Large uppercase serif brand name, perfectly centered, dark cocoa ink, high contrast, crisp readable letterforms." \
settings.structuredPrompt.compositional_deconstruction.elements.0.color_palette.0="#2E1F12" \
settings.structuredPrompt.compositional_deconstruction.elements.1.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.0=155 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.1=290 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.2=215 \
settings.structuredPrompt.compositional_deconstruction.elements.1.bbox.3=710 \
settings.structuredPrompt.compositional_deconstruction.elements.1.text="SMALL BATCH HONEY" \
settings.structuredPrompt.compositional_deconstruction.elements.1.desc="Smaller uppercase subtitle with wide tracking, centered beneath the brand name." \
settings.structuredPrompt.compositional_deconstruction.elements.1.color_palette.0="#3A6B35" \
settings.structuredPrompt.compositional_deconstruction.elements.2.type=obj \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.0=240 \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.1=250 \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.2=680 \
settings.structuredPrompt.compositional_deconstruction.elements.2.bbox.3=750 \
settings.structuredPrompt.compositional_deconstruction.elements.2.desc="Elegant central emblem: a radiant sun disk behind a hexagonal hive, tiny bees arranged in a circular flight path, miniature solar panels integrated into the hive roof, fine engraved line details." \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.0="#F7C948" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.1="#D98B20" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.2="#2E1F12" \
settings.structuredPrompt.compositional_deconstruction.elements.2.color_palette.3="#3A6B35" \
settings.structuredPrompt.compositional_deconstruction.elements.3.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.0=710 \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.1=250 \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.2=790 \
settings.structuredPrompt.compositional_deconstruction.elements.3.bbox.3=750 \
settings.structuredPrompt.compositional_deconstruction.elements.3.text="GOLDEN CLOVER BLEND" \
settings.structuredPrompt.compositional_deconstruction.elements.3.desc="Bold centered product variety line, elegant sans serif, very readable." \
settings.structuredPrompt.compositional_deconstruction.elements.3.color_palette.0="#2E1F12" \
settings.structuredPrompt.compositional_deconstruction.elements.4.type=text \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.0=815 \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.1=190 \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.2=880 \
settings.structuredPrompt.compositional_deconstruction.elements.4.bbox.3=810 \
settings.structuredPrompt.compositional_deconstruction.elements.4.text="HARVEST 94699 • NET WT 12 OZ" \
settings.structuredPrompt.compositional_deconstruction.elements.4.desc="Fine label footer text with accurate punctuation, centered, clean small caps." \
settings.structuredPrompt.compositional_deconstruction.elements.4.color_palette.0="#2E1F12" \
settings.structuredPrompt.compositional_deconstruction.elements.5.type=obj \
settings.structuredPrompt.compositional_deconstruction.elements.5.bbox.0=890 \
settings.structuredPrompt.compositional_deconstruction.elements.5.bbox.1=120 \
settings.structuredPrompt.compositional_deconstruction.elements.5.bbox.2=965 \
settings.structuredPrompt.compositional_deconstruction.elements.5.bbox.3=880 \
settings.structuredPrompt.compositional_deconstruction.elements.5.desc="Bottom ornamental band with repeating hexagons, tiny clover leaves, and thin parallel rules, symmetrical and print-ready." \
settings.structuredPrompt.compositional_deconstruction.elements.5.color_palette.0="#D98B20" \
settings.structuredPrompt.compositional_deconstruction.elements.5.color_palette.1="#3A6B35" \
settings.structuredPrompt.compositional_deconstruction.elements.5.color_palette.2="#2E1F12"{
"taskType": "imageInference",
"taskUUID": "207e4a1c-c751-4cd2-ade3-4a2e79d57c1b",
"model": "ideogram:4@0",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"structuredPrompt": {
"high_level_description": "A square premium label design for a fictional honey brand powered by tiny solar panels and tended by orderly golden bees. The composition should feel polished, print-ready, elegant, and highly legible with crisp text hierarchy.",
"style_description": {
"aesthetics": "Clean luxury grocery packaging, geometric sun motifs, refined linework, generous margins, balanced symmetry, tactile paper texture.",
"medium": "Vector-style packaging illustration with subtle embossing and spot-ink effects.",
"color_palette": [
"#F7C948",
"#2E1F12",
"#FFF4D6",
"#D98B20",
"#3A6B35",
"#FFFFFF"
],
"lighting": "Soft studio product lighting with gentle paper grain shadows and warm highlights."
},
"compositional_deconstruction": {
"background": "Warm cream square label surface with a thin double-line border, faint honeycomb pattern, centered layout, subtle printed-paper grain, no real brand logos.",
"elements": [
{
"type": "text",
"bbox": [
70,
190,
150,
810
],
"text": "SOLAR APIARY",
"desc": "Large uppercase serif brand name, perfectly centered, dark cocoa ink, high contrast, crisp readable letterforms.",
"color_palette": [
"#2E1F12"
]
},
{
"type": "text",
"bbox": [
155,
290,
215,
710
],
"text": "SMALL BATCH HONEY",
"desc": "Smaller uppercase subtitle with wide tracking, centered beneath the brand name.",
"color_palette": [
"#3A6B35"
]
},
{
"type": "obj",
"bbox": [
240,
250,
680,
750
],
"desc": "Elegant central emblem: a radiant sun disk behind a hexagonal hive, tiny bees arranged in a circular flight path, miniature solar panels integrated into the hive roof, fine engraved line details.",
"color_palette": [
"#F7C948",
"#D98B20",
"#2E1F12",
"#3A6B35"
]
},
{
"type": "text",
"bbox": [
710,
250,
790,
750
],
"text": "GOLDEN CLOVER BLEND",
"desc": "Bold centered product variety line, elegant sans serif, very readable.",
"color_palette": [
"#2E1F12"
]
},
{
"type": "text",
"bbox": [
815,
190,
880,
810
],
"text": "HARVEST 94699 • NET WT 12 OZ",
"desc": "Fine label footer text with accurate punctuation, centered, clean small caps.",
"color_palette": [
"#2E1F12"
]
},
{
"type": "obj",
"bbox": [
890,
120,
965,
880
],
"desc": "Bottom ornamental band with repeating hexagons, tiny clover leaves, and thin parallel rules, symmetrical and print-ready.",
"color_palette": [
"#D98B20",
"#3A6B35",
"#2E1F12"
]
}
]
}
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "207e4a1c-c751-4cd2-ade3-4a2e79d57c1b",
"imageUUID": "d692f7b4-3f45-4b77-a990-7085ddc3b12b",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/4/ii/d692f7b4-3f45-4b77-a990-7085ddc3b12b.jpg",
"seed": 1036572643,
"cost": 0.1,
"outputs": {
"structuredPrompt": {
"high_level_description": "A square premium label design for a fictional honey brand powered by tiny solar panels and tended by orderly golden bees. The composition should feel polished, print-ready, elegant, and highly legible with crisp text hierarchy.",
"compositional_deconstruction": {
"background": "Warm cream square label surface with a thin double-line border, faint honeycomb pattern, centered layout, subtle printed-paper grain, no real brand logos.",
"elements": [
{
"type": "text",
"bbox": [
70,
190,
150,
810
],
"text": "SOLAR APIARY",
"desc": "Large uppercase serif brand name, perfectly centered, dark cocoa ink, high contrast, crisp readable letterforms."
},
{
"type": "text",
"bbox": [
155,
290,
215,
710
],
"text": "SMALL BATCH HONEY",
"desc": "Smaller uppercase subtitle with wide tracking, centered beneath the brand name."
},
{
"type": "obj",
"bbox": [
240,
250,
680,
750
],
"desc": "Elegant central emblem: a radiant sun disk behind a hexagonal hive, tiny bees arranged in a circular flight path, miniature solar panels integrated into the hive roof, fine engraved line details."
},
{
"type": "text",
"bbox": [
710,
250,
790,
750
],
"text": "GOLDEN CLOVER BLEND",
"desc": "Bold centered product variety line, elegant sans serif, very readable."
},
{
"type": "text",
"bbox": [
815,
190,
880,
810
],
"text": "HARVEST 94699 • NET WT 12 OZ",
"desc": "Fine label footer text with accurate punctuation, centered, clean small caps."
},
{
"type": "obj",
"bbox": [
890,
120,
965,
880
],
"desc": "Bottom ornamental band with repeating hexagons, tiny clover leaves, and thin parallel rules, symmetrical and print-ready."
}
]
}
}
}
}
A premium square brand board for a fictional sparkling botanical drink named “SEED 99698”. Center: a tall frost-white aluminum can with a wrap label, clean Swiss modernist design, glacial blue, spruce green, deep graphite, tiny saffron accents. Render crisp, readable typography exactly as written: main label “SEED 99698”, subtitle “POLAR HERB TONIC”, flavor line “JUNIPER • ARCTIC MINT”, small seal “ZERO SUGAR”, bottom text “BOTANICAL SPARKLING WATER”. Surround the can with a flat label proof, color swatches, ingredient icons, and a minimal polar terrain emblem. High-end studio lighting, subtle paper texture, sharp edges, balanced negative space, no extra words, no misspellings.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
positivePrompt: 'A premium square brand board for a fictional sparkling botanical drink named “SEED 99698”. Center: a tall frost-white aluminum can with a wrap label, clean Swiss modernist design, glacial blue, spruce green, deep graphite, tiny saffron accents. Render crisp, readable typography exactly as written: main label “SEED 99698”, subtitle “POLAR HERB TONIC”, flavor line “JUNIPER • ARCTIC MINT”, small seal “ZERO SUGAR”, bottom text “BOTANICAL SPARKLING WATER”. Surround the can with a flat label proof, color swatches, ingredient icons, and a minimal polar terrain emblem. High-end studio lighting, subtle paper texture, sharp edges, balanced negative space, no extra words, no misspellings.',
width: 2048,
height: 2048,
settings: {
renderingSpeed: 'QUALITY',
copyrightDetection: false
}
})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": "ideogram:4@0",
"positivePrompt": "A premium square brand board for a fictional sparkling botanical drink named “SEED 99698”. Center: a tall frost-white aluminum can with a wrap label, clean Swiss modernist design, glacial blue, spruce green, deep graphite, tiny saffron accents. Render crisp, readable typography exactly as written: main label “SEED 99698”, subtitle “POLAR HERB TONIC”, flavor line “JUNIPER • ARCTIC MINT”, small seal “ZERO SUGAR”, bottom text “BOTANICAL SPARKLING WATER”. Surround the can with a flat label proof, color swatches, ingredient icons, and a minimal polar terrain emblem. High-end studio lighting, subtle paper texture, sharp edges, balanced negative space, no extra words, no misspellings.",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"copyrightDetection": False
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "1742677d-0085-42d7-91fb-f5701c4fcb81",
"model": "ideogram:4@0",
"positivePrompt": "A premium square brand board for a fictional sparkling botanical drink named “SEED 99698”. Center: a tall frost-white aluminum can with a wrap label, clean Swiss modernist design, glacial blue, spruce green, deep graphite, tiny saffron accents. Render crisp, readable typography exactly as written: main label “SEED 99698”, subtitle “POLAR HERB TONIC”, flavor line “JUNIPER • ARCTIC MINT”, small seal “ZERO SUGAR”, bottom text “BOTANICAL SPARKLING WATER”. Surround the can with a flat label proof, color swatches, ingredient icons, and a minimal polar terrain emblem. High-end studio lighting, subtle paper texture, sharp edges, balanced negative space, no extra words, no misspellings.",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"copyrightDetection": false
}
}
]'runware run ideogram:4@0 \
positivePrompt="A premium square brand board for a fictional sparkling botanical drink named “SEED 99698”. Center: a tall frost-white aluminum can with a wrap label, clean Swiss modernist design, glacial blue, spruce green, deep graphite, tiny saffron accents. Render crisp, readable typography exactly as written: main label “SEED 99698”, subtitle “POLAR HERB TONIC”, flavor line “JUNIPER • ARCTIC MINT”, small seal “ZERO SUGAR”, bottom text “BOTANICAL SPARKLING WATER”. Surround the can with a flat label proof, color swatches, ingredient icons, and a minimal polar terrain emblem. High-end studio lighting, subtle paper texture, sharp edges, balanced negative space, no extra words, no misspellings." \
width=2048 \
height=2048 \
settings.renderingSpeed=QUALITY \
settings.copyrightDetection=false{
"taskType": "imageInference",
"taskUUID": "1742677d-0085-42d7-91fb-f5701c4fcb81",
"model": "ideogram:4@0",
"positivePrompt": "A premium square brand board for a fictional sparkling botanical drink named “SEED 99698”. Center: a tall frost-white aluminum can with a wrap label, clean Swiss modernist design, glacial blue, spruce green, deep graphite, tiny saffron accents. Render crisp, readable typography exactly as written: main label “SEED 99698”, subtitle “POLAR HERB TONIC”, flavor line “JUNIPER • ARCTIC MINT”, small seal “ZERO SUGAR”, bottom text “BOTANICAL SPARKLING WATER”. Surround the can with a flat label proof, color swatches, ingredient icons, and a minimal polar terrain emblem. High-end studio lighting, subtle paper texture, sharp edges, balanced negative space, no extra words, no misspellings.",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"copyrightDetection": false
}
}Response
{
"taskType": "imageInference",
"taskUUID": "1742677d-0085-42d7-91fb-f5701c4fcb81",
"imageUUID": "d41f944c-e7ca-4195-870f-f69328f6a7fc",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/4/ii/d41f944c-e7ca-4195-870f-f69328f6a7fc.jpg",
"seed": 1273397709,
"cost": 0.1
}
Create a premium square product visual for a fictional oolong tea tin. Center: matte cream cylindrical metal tin with a cobalt blue ceramic robot mascot holding a teacup, precise printed texture, soft studio lighting, subtle shadow, minimal pale jade background. Typography must be sharp and fully legible: large top text "CERAMIC ROBOT TEA", center seal "OOLONG No. 15488", small vertical side text "茶 • SMALL BATCH", bottom ribbon "STEAMED PEACH + TOASTED RICE". Add delicate geometric tile patterns, tiny calibration marks, balanced label hierarchy, clean brand system, high-fidelity packaging render, no real logos, no extra text.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:4@0',
positivePrompt: 'Create a premium square product visual for a fictional oolong tea tin. Center: matte cream cylindrical metal tin with a cobalt blue ceramic robot mascot holding a teacup, precise printed texture, soft studio lighting, subtle shadow, minimal pale jade background. Typography must be sharp and fully legible: large top text "CERAMIC ROBOT TEA", center seal "OOLONG No. 15488", small vertical side text "茶 • SMALL BATCH", bottom ribbon "STEAMED PEACH + TOASTED RICE". Add delicate geometric tile patterns, tiny calibration marks, balanced label hierarchy, clean brand system, high-fidelity packaging render, no real logos, no extra text.',
width: 2048,
height: 2048,
settings: {
renderingSpeed: 'QUALITY',
copyrightDetection: false
}
})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": "ideogram:4@0",
"positivePrompt": "Create a premium square product visual for a fictional oolong tea tin. Center: matte cream cylindrical metal tin with a cobalt blue ceramic robot mascot holding a teacup, precise printed texture, soft studio lighting, subtle shadow, minimal pale jade background. Typography must be sharp and fully legible: large top text \"CERAMIC ROBOT TEA\", center seal \"OOLONG No. 15488\", small vertical side text \"茶 • SMALL BATCH\", bottom ribbon \"STEAMED PEACH + TOASTED RICE\". Add delicate geometric tile patterns, tiny calibration marks, balanced label hierarchy, clean brand system, high-fidelity packaging render, no real logos, no extra text.",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"copyrightDetection": False
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "922905c0-38fa-4c49-95d4-5c8195f2ecf9",
"model": "ideogram:4@0",
"positivePrompt": "Create a premium square product visual for a fictional oolong tea tin. Center: matte cream cylindrical metal tin with a cobalt blue ceramic robot mascot holding a teacup, precise printed texture, soft studio lighting, subtle shadow, minimal pale jade background. Typography must be sharp and fully legible: large top text \"CERAMIC ROBOT TEA\", center seal \"OOLONG No. 15488\", small vertical side text \"茶 • SMALL BATCH\", bottom ribbon \"STEAMED PEACH + TOASTED RICE\". Add delicate geometric tile patterns, tiny calibration marks, balanced label hierarchy, clean brand system, high-fidelity packaging render, no real logos, no extra text.",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"copyrightDetection": false
}
}
]'runware run ideogram:4@0 \
positivePrompt="Create a premium square product visual for a fictional oolong tea tin. Center: matte cream cylindrical metal tin with a cobalt blue ceramic robot mascot holding a teacup, precise printed texture, soft studio lighting, subtle shadow, minimal pale jade background. Typography must be sharp and fully legible: large top text \"CERAMIC ROBOT TEA\", center seal \"OOLONG No. 15488\", small vertical side text \"茶 • SMALL BATCH\", bottom ribbon \"STEAMED PEACH + TOASTED RICE\". Add delicate geometric tile patterns, tiny calibration marks, balanced label hierarchy, clean brand system, high-fidelity packaging render, no real logos, no extra text." \
width=2048 \
height=2048 \
settings.renderingSpeed=QUALITY \
settings.copyrightDetection=false{
"taskType": "imageInference",
"taskUUID": "922905c0-38fa-4c49-95d4-5c8195f2ecf9",
"model": "ideogram:4@0",
"positivePrompt": "Create a premium square product visual for a fictional oolong tea tin. Center: matte cream cylindrical metal tin with a cobalt blue ceramic robot mascot holding a teacup, precise printed texture, soft studio lighting, subtle shadow, minimal pale jade background. Typography must be sharp and fully legible: large top text \"CERAMIC ROBOT TEA\", center seal \"OOLONG No. 15488\", small vertical side text \"茶 • SMALL BATCH\", bottom ribbon \"STEAMED PEACH + TOASTED RICE\". Add delicate geometric tile patterns, tiny calibration marks, balanced label hierarchy, clean brand system, high-fidelity packaging render, no real logos, no extra text.",
"width": 2048,
"height": 2048,
"settings": {
"renderingSpeed": "QUALITY",
"copyrightDetection": false
}
}Response
{
"taskType": "imageInference",
"taskUUID": "922905c0-38fa-4c49-95d4-5c8195f2ecf9",
"imageUUID": "49b982e6-2a84-44ba-8c2b-c5478b363987",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/49b982e6-2a84-44ba-8c2b-c5478b363987.jpg",
"seed": 1581944743,
"cost": 0.1
}