Recraft V4 Styles Pro

Recraft V4 Styles Pro is the higher-quality raster model in the V4 Styles family. It is built for the same reference-driven style consistency workflow as the standard Styles tier, but is the stronger fit when the output needs more polish, finer detail retention, and more presentation-ready final imagery. Like the rest of the family, it creates reusable styles from reference images without training and aims to preserve specific rendering cues, textures, and compositional behavior across generations rather than only matching the general look of the references.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
reference-to-image
Aquaphonic Music Festival Poster$0.105~36s
Create a finished square concert poster for AQUAPHONIC, a three-night experimental electronic music and hydrophone festival held inside a historic municipal pumping station. Use the three reference images only as a coherent visual-style guide: retain their premium screenprinted character, restricted cobalt blue, fluorescent orange, pale aqua, near-black and warm off-white palette, architectural geometry, technical-diagram precision, coarse halftones, tactile paper grain, translucent overprints and slight ink misregistration. Do not reproduce the reference subjects or their compositions. The original central image is a dramatic cutaway of an enormous circular water-pump impeller inside a cavernous tiled pump hall. Transform the impeller into a bold abstract sound symbol: concentric ripples radiate from its hub, pipework becomes rhythmic waveform lines, and a tiny lone performer stands at a modular synthesizer console near the bottom to establish monumental scale. Add a few crisp bubbles, pressure-gauge marks and diagrammatic arrows as graphic accents. Keep the composition energetic but highly controlled, with generous negative space and a strong diagonal flow. The mood is nocturnal, industrial, cerebral and electric rather than dystopian. Typography is essential and must be clear, intentional and integrated into the artwork. Set the main title AQUAPHONIC in huge condensed uppercase sans-serif lettering across the upper third, with selected letters interrupted by ripple lines while remaining legible. Below it, set LIVE ELECTRONICS IN THE PUMP HALL in smaller uppercase type. Include the event information in a clean modular grid: 18–20 SEPTEMBER 2026; EAST BANK PUMPING STATION, ROTTERDAM; MARA VALE • N/LOW • TIDAL LOGIC • IVO SERRIN • BASIN CHOIR. Place DOORS 19:00 and THREE NIGHTS / TWO CHAMBERS / ONE RESERVOIR as small supporting details. Use only this requested copy, with no logos, web addresses, QR codes, ticket buttons or mockup surroundings. Presentation-ready contemporary arts-festival poster, visually balanced at 2048x2048, edge-to-edge standalone artwork, crisp hierarchy, refined detail, convincing screenprint texture and excellent readability.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles-pro',
positivePrompt: 'Create a finished square concert poster for AQUAPHONIC, a three-night experimental electronic music and hydrophone festival held inside a historic municipal pumping station. Use the three reference images only as a coherent visual-style guide: retain their premium screenprinted character, restricted cobalt blue, fluorescent orange, pale aqua, near-black and warm off-white palette, architectural geometry, technical-diagram precision, coarse halftones, tactile paper grain, translucent overprints and slight ink misregistration. Do not reproduce the reference subjects or their compositions.\n\nThe original central image is a dramatic cutaway of an enormous circular water-pump impeller inside a cavernous tiled pump hall. Transform the impeller into a bold abstract sound symbol: concentric ripples radiate from its hub, pipework becomes rhythmic waveform lines, and a tiny lone performer stands at a modular synthesizer console near the bottom to establish monumental scale. Add a few crisp bubbles, pressure-gauge marks and diagrammatic arrows as graphic accents. Keep the composition energetic but highly controlled, with generous negative space and a strong diagonal flow. The mood is nocturnal, industrial, cerebral and electric rather than dystopian.\n\nTypography is essential and must be clear, intentional and integrated into the artwork. Set the main title AQUAPHONIC in huge condensed uppercase sans-serif lettering across the upper third, with selected letters interrupted by ripple lines while remaining legible. Below it, set LIVE ELECTRONICS IN THE PUMP HALL in smaller uppercase type. Include the event information in a clean modular grid: 18–20 SEPTEMBER 2026; EAST BANK PUMPING STATION, ROTTERDAM; MARA VALE • N/LOW • TIDAL LOGIC • IVO SERRIN • BASIN CHOIR. Place DOORS 19:00 and THREE NIGHTS / TWO CHAMBERS / ONE RESERVOIR as small supporting details. Use only this requested copy, with no logos, web addresses, QR codes, ticket buttons or mockup surroundings.\n\nPresentation-ready contemporary arts-festival poster, visually balanced at 2048x2048, edge-to-edge standalone artwork, crisp hierarchy, refined detail, convincing screenprint texture and excellent readability.',
width: 2048,
height: 2048,
settings: {
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/a9a3bf6a-f98b-48fa-a697-c0cd1053ce49.jpg',
'https://assets.runware.ai/assets/inputs/10d3a4f6-97cd-4d4b-a79e-a6e7ade409b9.jpg',
'https://assets.runware.ai/assets/inputs/e88e69db-9a24-43e8-b41e-94c92b50555b.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished square concert poster for AQUAPHONIC, a three-night experimental electronic music and hydrophone festival held inside a historic municipal pumping station. Use the three reference images only as a coherent visual-style guide: retain their premium screenprinted character, restricted cobalt blue, fluorescent orange, pale aqua, near-black and warm off-white palette, architectural geometry, technical-diagram precision, coarse halftones, tactile paper grain, translucent overprints and slight ink misregistration. Do not reproduce the reference subjects or their compositions.\n\nThe original central image is a dramatic cutaway of an enormous circular water-pump impeller inside a cavernous tiled pump hall. Transform the impeller into a bold abstract sound symbol: concentric ripples radiate from its hub, pipework becomes rhythmic waveform lines, and a tiny lone performer stands at a modular synthesizer console near the bottom to establish monumental scale. Add a few crisp bubbles, pressure-gauge marks and diagrammatic arrows as graphic accents. Keep the composition energetic but highly controlled, with generous negative space and a strong diagonal flow. The mood is nocturnal, industrial, cerebral and electric rather than dystopian.\n\nTypography is essential and must be clear, intentional and integrated into the artwork. Set the main title AQUAPHONIC in huge condensed uppercase sans-serif lettering across the upper third, with selected letters interrupted by ripple lines while remaining legible. Below it, set LIVE ELECTRONICS IN THE PUMP HALL in smaller uppercase type. Include the event information in a clean modular grid: 18–20 SEPTEMBER 2026; EAST BANK PUMPING STATION, ROTTERDAM; MARA VALE • N/LOW • TIDAL LOGIC • IVO SERRIN • BASIN CHOIR. Place DOORS 19:00 and THREE NIGHTS / TWO CHAMBERS / ONE RESERVOIR as small supporting details. Use only this requested copy, with no logos, web addresses, QR codes, ticket buttons or mockup surroundings.\n\nPresentation-ready contemporary arts-festival poster, visually balanced at 2048x2048, edge-to-edge standalone artwork, crisp hierarchy, refined detail, convincing screenprint texture and excellent readability.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/a9a3bf6a-f98b-48fa-a697-c0cd1053ce49.jpg",
"https://assets.runware.ai/assets/inputs/10d3a4f6-97cd-4d4b-a79e-a6e7ade409b9.jpg",
"https://assets.runware.ai/assets/inputs/e88e69db-9a24-43e8-b41e-94c92b50555b.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "7a577e82-2463-4a88-8334-64ad399c27f5",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished square concert poster for AQUAPHONIC, a three-night experimental electronic music and hydrophone festival held inside a historic municipal pumping station. Use the three reference images only as a coherent visual-style guide: retain their premium screenprinted character, restricted cobalt blue, fluorescent orange, pale aqua, near-black and warm off-white palette, architectural geometry, technical-diagram precision, coarse halftones, tactile paper grain, translucent overprints and slight ink misregistration. Do not reproduce the reference subjects or their compositions.\n\nThe original central image is a dramatic cutaway of an enormous circular water-pump impeller inside a cavernous tiled pump hall. Transform the impeller into a bold abstract sound symbol: concentric ripples radiate from its hub, pipework becomes rhythmic waveform lines, and a tiny lone performer stands at a modular synthesizer console near the bottom to establish monumental scale. Add a few crisp bubbles, pressure-gauge marks and diagrammatic arrows as graphic accents. Keep the composition energetic but highly controlled, with generous negative space and a strong diagonal flow. The mood is nocturnal, industrial, cerebral and electric rather than dystopian.\n\nTypography is essential and must be clear, intentional and integrated into the artwork. Set the main title AQUAPHONIC in huge condensed uppercase sans-serif lettering across the upper third, with selected letters interrupted by ripple lines while remaining legible. Below it, set LIVE ELECTRONICS IN THE PUMP HALL in smaller uppercase type. Include the event information in a clean modular grid: 18–20 SEPTEMBER 2026; EAST BANK PUMPING STATION, ROTTERDAM; MARA VALE • N/LOW • TIDAL LOGIC • IVO SERRIN • BASIN CHOIR. Place DOORS 19:00 and THREE NIGHTS / TWO CHAMBERS / ONE RESERVOIR as small supporting details. Use only this requested copy, with no logos, web addresses, QR codes, ticket buttons or mockup surroundings.\n\nPresentation-ready contemporary arts-festival poster, visually balanced at 2048x2048, edge-to-edge standalone artwork, crisp hierarchy, refined detail, convincing screenprint texture and excellent readability.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/a9a3bf6a-f98b-48fa-a697-c0cd1053ce49.jpg",
"https://assets.runware.ai/assets/inputs/10d3a4f6-97cd-4d4b-a79e-a6e7ade409b9.jpg",
"https://assets.runware.ai/assets/inputs/e88e69db-9a24-43e8-b41e-94c92b50555b.jpg"
]
}
}
]'runware run recraft:v4@styles-pro \
positivePrompt="Create a finished square concert poster for AQUAPHONIC, a three-night experimental electronic music and hydrophone festival held inside a historic municipal pumping station. Use the three reference images only as a coherent visual-style guide: retain their premium screenprinted character, restricted cobalt blue, fluorescent orange, pale aqua, near-black and warm off-white palette, architectural geometry, technical-diagram precision, coarse halftones, tactile paper grain, translucent overprints and slight ink misregistration. Do not reproduce the reference subjects or their compositions.
The original central image is a dramatic cutaway of an enormous circular water-pump impeller inside a cavernous tiled pump hall. Transform the impeller into a bold abstract sound symbol: concentric ripples radiate from its hub, pipework becomes rhythmic waveform lines, and a tiny lone performer stands at a modular synthesizer console near the bottom to establish monumental scale. Add a few crisp bubbles, pressure-gauge marks and diagrammatic arrows as graphic accents. Keep the composition energetic but highly controlled, with generous negative space and a strong diagonal flow. The mood is nocturnal, industrial, cerebral and electric rather than dystopian.
Typography is essential and must be clear, intentional and integrated into the artwork. Set the main title AQUAPHONIC in huge condensed uppercase sans-serif lettering across the upper third, with selected letters interrupted by ripple lines while remaining legible. Below it, set LIVE ELECTRONICS IN THE PUMP HALL in smaller uppercase type. Include the event information in a clean modular grid: 18–20 SEPTEMBER 2026; EAST BANK PUMPING STATION, ROTTERDAM; MARA VALE • N/LOW • TIDAL LOGIC • IVO SERRIN • BASIN CHOIR. Place DOORS 19:00 and THREE NIGHTS / TWO CHAMBERS / ONE RESERVOIR as small supporting details. Use only this requested copy, with no logos, web addresses, QR codes, ticket buttons or mockup surroundings.
Presentation-ready contemporary arts-festival poster, visually balanced at 2048x2048, edge-to-edge standalone artwork, crisp hierarchy, refined detail, convincing screenprint texture and excellent readability." \
width=2048 \
height=2048 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/a9a3bf6a-f98b-48fa-a697-c0cd1053ce49.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/10d3a4f6-97cd-4d4b-a79e-a6e7ade409b9.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/e88e69db-9a24-43e8-b41e-94c92b50555b.jpg{
"taskType": "imageInference",
"taskUUID": "7a577e82-2463-4a88-8334-64ad399c27f5",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished square concert poster for AQUAPHONIC, a three-night experimental electronic music and hydrophone festival held inside a historic municipal pumping station. Use the three reference images only as a coherent visual-style guide: retain their premium screenprinted character, restricted cobalt blue, fluorescent orange, pale aqua, near-black and warm off-white palette, architectural geometry, technical-diagram precision, coarse halftones, tactile paper grain, translucent overprints and slight ink misregistration. Do not reproduce the reference subjects or their compositions.\n\nThe original central image is a dramatic cutaway of an enormous circular water-pump impeller inside a cavernous tiled pump hall. Transform the impeller into a bold abstract sound symbol: concentric ripples radiate from its hub, pipework becomes rhythmic waveform lines, and a tiny lone performer stands at a modular synthesizer console near the bottom to establish monumental scale. Add a few crisp bubbles, pressure-gauge marks and diagrammatic arrows as graphic accents. Keep the composition energetic but highly controlled, with generous negative space and a strong diagonal flow. The mood is nocturnal, industrial, cerebral and electric rather than dystopian.\n\nTypography is essential and must be clear, intentional and integrated into the artwork. Set the main title AQUAPHONIC in huge condensed uppercase sans-serif lettering across the upper third, with selected letters interrupted by ripple lines while remaining legible. Below it, set LIVE ELECTRONICS IN THE PUMP HALL in smaller uppercase type. Include the event information in a clean modular grid: 18–20 SEPTEMBER 2026; EAST BANK PUMPING STATION, ROTTERDAM; MARA VALE • N/LOW • TIDAL LOGIC • IVO SERRIN • BASIN CHOIR. Place DOORS 19:00 and THREE NIGHTS / TWO CHAMBERS / ONE RESERVOIR as small supporting details. Use only this requested copy, with no logos, web addresses, QR codes, ticket buttons or mockup surroundings.\n\nPresentation-ready contemporary arts-festival poster, visually balanced at 2048x2048, edge-to-edge standalone artwork, crisp hierarchy, refined detail, convincing screenprint texture and excellent readability.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/a9a3bf6a-f98b-48fa-a697-c0cd1053ce49.jpg",
"https://assets.runware.ai/assets/inputs/10d3a4f6-97cd-4d4b-a79e-a6e7ade409b9.jpg",
"https://assets.runware.ai/assets/inputs/e88e69db-9a24-43e8-b41e-94c92b50555b.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "7a577e82-2463-4a88-8334-64ad399c27f5",
"imageUUID": "f921ade6-af4f-4668-b615-24f3d15eb0ed",
"imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/4/ii/f921ade6-af4f-4668-b615-24f3d15eb0ed.jpg",
"seed": 83302910,
"cost": 0.105,
"outputs": {
"styleId": "f9431ee6-1009-4063-bfda-a98dde54beea"
}
}reference-to-image
Cold Storage Retrofit Campaign Visual$0.105~34s
Create an original square advertising campaign visual for a commercial refrigeration retrofit service aimed at independent supermarket owners. Use the three reference images only as a coherent guide to rendering language, texture, palette, shape design, and compositional rhythm; do not reproduce their subjects, layouts, buildings, or objects. The central visual metaphor is a compact neighborhood supermarket presented as a clean isometric cutaway inside a large translucent ice cube. Through the open front, show one recognizable grocery aisle lined with refrigerated display cases. On the left, an old open-front chiller leaks cold air outward as curling vermilion and cream ribbons, causing that side of the ice cube to melt into a small irregular puddle. On the right, newly fitted transparent glass refrigerator doors hold the cold inside; that half of the cube remains sharply faceted, solid, and efficient. Include two small refrigeration technicians in practical work clothes installing the final glass door, giving the scene believable commercial purpose and human scale. Shelves should suggest neatly arranged produce and dairy through simple abstract shapes, without readable labels or branded packaging. Render the image in the shared tactile editorial style of the references: layered cut-paper construction, chunky screenprinted color fields, dry-ink grain, subtle misregistration, visible paper fibers, simplified geometric architecture, selective fine detail, crisp dimensional overlaps, and sophisticated magazine-ad polish. Use primarily inky plum, acid chartreuse, warm cream, and vermilion, with restrained pale icy blue only for the translucent cube and glass. Bold, clever, optimistic, and operational rather than whimsical. Strong central silhouette, immediate visual hierarchy, generous uncluttered warm-cream negative space in the upper-left quadrant for optional campaign copy, but include no words, letters, numbers, logos, badges, borders, interface elements, or watermarks. Finished standalone advertising artwork, square composition.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles-pro',
positivePrompt: 'Create an original square advertising campaign visual for a commercial refrigeration retrofit service aimed at independent supermarket owners. Use the three reference images only as a coherent guide to rendering language, texture, palette, shape design, and compositional rhythm; do not reproduce their subjects, layouts, buildings, or objects.\n\nThe central visual metaphor is a compact neighborhood supermarket presented as a clean isometric cutaway inside a large translucent ice cube. Through the open front, show one recognizable grocery aisle lined with refrigerated display cases. On the left, an old open-front chiller leaks cold air outward as curling vermilion and cream ribbons, causing that side of the ice cube to melt into a small irregular puddle. On the right, newly fitted transparent glass refrigerator doors hold the cold inside; that half of the cube remains sharply faceted, solid, and efficient. Include two small refrigeration technicians in practical work clothes installing the final glass door, giving the scene believable commercial purpose and human scale. Shelves should suggest neatly arranged produce and dairy through simple abstract shapes, without readable labels or branded packaging.\n\nRender the image in the shared tactile editorial style of the references: layered cut-paper construction, chunky screenprinted color fields, dry-ink grain, subtle misregistration, visible paper fibers, simplified geometric architecture, selective fine detail, crisp dimensional overlaps, and sophisticated magazine-ad polish. Use primarily inky plum, acid chartreuse, warm cream, and vermilion, with restrained pale icy blue only for the translucent cube and glass. Bold, clever, optimistic, and operational rather than whimsical. Strong central silhouette, immediate visual hierarchy, generous uncluttered warm-cream negative space in the upper-left quadrant for optional campaign copy, but include no words, letters, numbers, logos, badges, borders, interface elements, or watermarks. Finished standalone advertising artwork, square composition.',
width: 2048,
height: 2048,
settings: {
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/3eeb59a8-0560-4393-bbd0-fb87a80db16c.jpg',
'https://assets.runware.ai/assets/inputs/5e9f7352-8736-41da-8410-95a4c954df27.jpg',
'https://assets.runware.ai/assets/inputs/250cd2b3-a984-43a8-bcf9-c306de4365ef.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create an original square advertising campaign visual for a commercial refrigeration retrofit service aimed at independent supermarket owners. Use the three reference images only as a coherent guide to rendering language, texture, palette, shape design, and compositional rhythm; do not reproduce their subjects, layouts, buildings, or objects.\n\nThe central visual metaphor is a compact neighborhood supermarket presented as a clean isometric cutaway inside a large translucent ice cube. Through the open front, show one recognizable grocery aisle lined with refrigerated display cases. On the left, an old open-front chiller leaks cold air outward as curling vermilion and cream ribbons, causing that side of the ice cube to melt into a small irregular puddle. On the right, newly fitted transparent glass refrigerator doors hold the cold inside; that half of the cube remains sharply faceted, solid, and efficient. Include two small refrigeration technicians in practical work clothes installing the final glass door, giving the scene believable commercial purpose and human scale. Shelves should suggest neatly arranged produce and dairy through simple abstract shapes, without readable labels or branded packaging.\n\nRender the image in the shared tactile editorial style of the references: layered cut-paper construction, chunky screenprinted color fields, dry-ink grain, subtle misregistration, visible paper fibers, simplified geometric architecture, selective fine detail, crisp dimensional overlaps, and sophisticated magazine-ad polish. Use primarily inky plum, acid chartreuse, warm cream, and vermilion, with restrained pale icy blue only for the translucent cube and glass. Bold, clever, optimistic, and operational rather than whimsical. Strong central silhouette, immediate visual hierarchy, generous uncluttered warm-cream negative space in the upper-left quadrant for optional campaign copy, but include no words, letters, numbers, logos, badges, borders, interface elements, or watermarks. Finished standalone advertising artwork, square composition.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/3eeb59a8-0560-4393-bbd0-fb87a80db16c.jpg",
"https://assets.runware.ai/assets/inputs/5e9f7352-8736-41da-8410-95a4c954df27.jpg",
"https://assets.runware.ai/assets/inputs/250cd2b3-a984-43a8-bcf9-c306de4365ef.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "30737878-9264-4a2a-9173-6b549b805ab8",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create an original square advertising campaign visual for a commercial refrigeration retrofit service aimed at independent supermarket owners. Use the three reference images only as a coherent guide to rendering language, texture, palette, shape design, and compositional rhythm; do not reproduce their subjects, layouts, buildings, or objects.\n\nThe central visual metaphor is a compact neighborhood supermarket presented as a clean isometric cutaway inside a large translucent ice cube. Through the open front, show one recognizable grocery aisle lined with refrigerated display cases. On the left, an old open-front chiller leaks cold air outward as curling vermilion and cream ribbons, causing that side of the ice cube to melt into a small irregular puddle. On the right, newly fitted transparent glass refrigerator doors hold the cold inside; that half of the cube remains sharply faceted, solid, and efficient. Include two small refrigeration technicians in practical work clothes installing the final glass door, giving the scene believable commercial purpose and human scale. Shelves should suggest neatly arranged produce and dairy through simple abstract shapes, without readable labels or branded packaging.\n\nRender the image in the shared tactile editorial style of the references: layered cut-paper construction, chunky screenprinted color fields, dry-ink grain, subtle misregistration, visible paper fibers, simplified geometric architecture, selective fine detail, crisp dimensional overlaps, and sophisticated magazine-ad polish. Use primarily inky plum, acid chartreuse, warm cream, and vermilion, with restrained pale icy blue only for the translucent cube and glass. Bold, clever, optimistic, and operational rather than whimsical. Strong central silhouette, immediate visual hierarchy, generous uncluttered warm-cream negative space in the upper-left quadrant for optional campaign copy, but include no words, letters, numbers, logos, badges, borders, interface elements, or watermarks. Finished standalone advertising artwork, square composition.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/3eeb59a8-0560-4393-bbd0-fb87a80db16c.jpg",
"https://assets.runware.ai/assets/inputs/5e9f7352-8736-41da-8410-95a4c954df27.jpg",
"https://assets.runware.ai/assets/inputs/250cd2b3-a984-43a8-bcf9-c306de4365ef.jpg"
]
}
}
]'runware run recraft:v4@styles-pro \
positivePrompt="Create an original square advertising campaign visual for a commercial refrigeration retrofit service aimed at independent supermarket owners. Use the three reference images only as a coherent guide to rendering language, texture, palette, shape design, and compositional rhythm; do not reproduce their subjects, layouts, buildings, or objects.
The central visual metaphor is a compact neighborhood supermarket presented as a clean isometric cutaway inside a large translucent ice cube. Through the open front, show one recognizable grocery aisle lined with refrigerated display cases. On the left, an old open-front chiller leaks cold air outward as curling vermilion and cream ribbons, causing that side of the ice cube to melt into a small irregular puddle. On the right, newly fitted transparent glass refrigerator doors hold the cold inside; that half of the cube remains sharply faceted, solid, and efficient. Include two small refrigeration technicians in practical work clothes installing the final glass door, giving the scene believable commercial purpose and human scale. Shelves should suggest neatly arranged produce and dairy through simple abstract shapes, without readable labels or branded packaging.
Render the image in the shared tactile editorial style of the references: layered cut-paper construction, chunky screenprinted color fields, dry-ink grain, subtle misregistration, visible paper fibers, simplified geometric architecture, selective fine detail, crisp dimensional overlaps, and sophisticated magazine-ad polish. Use primarily inky plum, acid chartreuse, warm cream, and vermilion, with restrained pale icy blue only for the translucent cube and glass. Bold, clever, optimistic, and operational rather than whimsical. Strong central silhouette, immediate visual hierarchy, generous uncluttered warm-cream negative space in the upper-left quadrant for optional campaign copy, but include no words, letters, numbers, logos, badges, borders, interface elements, or watermarks. Finished standalone advertising artwork, square composition." \
width=2048 \
height=2048 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/3eeb59a8-0560-4393-bbd0-fb87a80db16c.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/5e9f7352-8736-41da-8410-95a4c954df27.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/250cd2b3-a984-43a8-bcf9-c306de4365ef.jpg{
"taskType": "imageInference",
"taskUUID": "30737878-9264-4a2a-9173-6b549b805ab8",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create an original square advertising campaign visual for a commercial refrigeration retrofit service aimed at independent supermarket owners. Use the three reference images only as a coherent guide to rendering language, texture, palette, shape design, and compositional rhythm; do not reproduce their subjects, layouts, buildings, or objects.\n\nThe central visual metaphor is a compact neighborhood supermarket presented as a clean isometric cutaway inside a large translucent ice cube. Through the open front, show one recognizable grocery aisle lined with refrigerated display cases. On the left, an old open-front chiller leaks cold air outward as curling vermilion and cream ribbons, causing that side of the ice cube to melt into a small irregular puddle. On the right, newly fitted transparent glass refrigerator doors hold the cold inside; that half of the cube remains sharply faceted, solid, and efficient. Include two small refrigeration technicians in practical work clothes installing the final glass door, giving the scene believable commercial purpose and human scale. Shelves should suggest neatly arranged produce and dairy through simple abstract shapes, without readable labels or branded packaging.\n\nRender the image in the shared tactile editorial style of the references: layered cut-paper construction, chunky screenprinted color fields, dry-ink grain, subtle misregistration, visible paper fibers, simplified geometric architecture, selective fine detail, crisp dimensional overlaps, and sophisticated magazine-ad polish. Use primarily inky plum, acid chartreuse, warm cream, and vermilion, with restrained pale icy blue only for the translucent cube and glass. Bold, clever, optimistic, and operational rather than whimsical. Strong central silhouette, immediate visual hierarchy, generous uncluttered warm-cream negative space in the upper-left quadrant for optional campaign copy, but include no words, letters, numbers, logos, badges, borders, interface elements, or watermarks. Finished standalone advertising artwork, square composition.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/3eeb59a8-0560-4393-bbd0-fb87a80db16c.jpg",
"https://assets.runware.ai/assets/inputs/5e9f7352-8736-41da-8410-95a4c954df27.jpg",
"https://assets.runware.ai/assets/inputs/250cd2b3-a984-43a8-bcf9-c306de4365ef.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "30737878-9264-4a2a-9173-6b549b805ab8",
"imageUUID": "3c907f08-4b36-4b55-bdf2-b23b4319f1b6",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/3c907f08-4b36-4b55-bdf2-b23b4319f1b6.jpg",
"seed": 923254679,
"cost": 0.105,
"outputs": {
"styleId": "5eda55f5-66fc-4c4d-a5e1-084b145942f3"
}
}reference-to-image
Pediatric Hospital Picturebook Spread$0.105~35s
Create one polished square double-page children’s-book spread for a pediatric hospital’s welcome book, using all three reference images only as a coherent visual-style guide. Preserve their shared screen-printed gouache and cut-paper language, chunky simplified silhouettes, tactile dry-brush grain, slight ink misregistration, expressive faces, layered architectural depth and restrained aubergine, apricot, mint and cyan palette. Do not reproduce any people, places, objects or compositions from the references. New original subject: a calm children’s hospital during the night shift. Show a friendly waist-high medicine delivery robot traveling from the pharmacy on the left toward a young patient’s room on the right. The robot is practical rather than humanoid: rounded yellow body, softly glowing cyan status light, secure transparent medicine compartment and small wheels. A warm, attentive nurse walks beside it. Build a continuous left-to-right visual journey through the corridor: a pharmacist waves from a softly lit dispensary window, the robot passes a moonlit aquarium alcove and patterned floor markers, then arrives at an open patient room where an awake child sits comfortably in bed with a parent nearby. The child looks curious and reassured, not ill or frightened. Include subtle signs of caring night-shift teamwork such as neatly parked equipment, folded blankets and another staff member checking a clipboard in the distance. Compose specifically as a 2048x2048 square picturebook spread with a vertical center gutter. Keep faces, the robot and all essential storytelling details safely away from the gutter. Let the robot’s curved floor path guide the eye across both pages. Reserve quiet, uncluttered shapes in the upper-left and upper-right for later editorial typesetting, but include no written words, letters, numbers, signage, logos or watermarks in the image. Warm pools of apricot light should contrast with cool aubergine nighttime corridors and cyan moonlight. Child-friendly, emotionally reassuring, sophisticated enough for a professionally published hospital picture book, crisp presentation-ready detail with handmade print texture.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles-pro',
positivePrompt: 'Create one polished square double-page children’s-book spread for a pediatric hospital’s welcome book, using all three reference images only as a coherent visual-style guide. Preserve their shared screen-printed gouache and cut-paper language, chunky simplified silhouettes, tactile dry-brush grain, slight ink misregistration, expressive faces, layered architectural depth and restrained aubergine, apricot, mint and cyan palette. Do not reproduce any people, places, objects or compositions from the references.\n\nNew original subject: a calm children’s hospital during the night shift. Show a friendly waist-high medicine delivery robot traveling from the pharmacy on the left toward a young patient’s room on the right. The robot is practical rather than humanoid: rounded yellow body, softly glowing cyan status light, secure transparent medicine compartment and small wheels. A warm, attentive nurse walks beside it. Build a continuous left-to-right visual journey through the corridor: a pharmacist waves from a softly lit dispensary window, the robot passes a moonlit aquarium alcove and patterned floor markers, then arrives at an open patient room where an awake child sits comfortably in bed with a parent nearby. The child looks curious and reassured, not ill or frightened. Include subtle signs of caring night-shift teamwork such as neatly parked equipment, folded blankets and another staff member checking a clipboard in the distance.\n\nCompose specifically as a 2048x2048 square picturebook spread with a vertical center gutter. Keep faces, the robot and all essential storytelling details safely away from the gutter. Let the robot’s curved floor path guide the eye across both pages. Reserve quiet, uncluttered shapes in the upper-left and upper-right for later editorial typesetting, but include no written words, letters, numbers, signage, logos or watermarks in the image. Warm pools of apricot light should contrast with cool aubergine nighttime corridors and cyan moonlight. Child-friendly, emotionally reassuring, sophisticated enough for a professionally published hospital picture book, crisp presentation-ready detail with handmade print texture.',
width: 2048,
height: 2048,
settings: {
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/2b4dcdbc-a093-4a10-a46b-bfe2e6f0a3e4.jpg',
'https://assets.runware.ai/assets/inputs/87983191-798d-4c2e-96b9-2f16d6218519.jpg',
'https://assets.runware.ai/assets/inputs/3e1cf998-e458-4f33-a4b4-2716406d1469.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create one polished square double-page children’s-book spread for a pediatric hospital’s welcome book, using all three reference images only as a coherent visual-style guide. Preserve their shared screen-printed gouache and cut-paper language, chunky simplified silhouettes, tactile dry-brush grain, slight ink misregistration, expressive faces, layered architectural depth and restrained aubergine, apricot, mint and cyan palette. Do not reproduce any people, places, objects or compositions from the references.\n\nNew original subject: a calm children’s hospital during the night shift. Show a friendly waist-high medicine delivery robot traveling from the pharmacy on the left toward a young patient’s room on the right. The robot is practical rather than humanoid: rounded yellow body, softly glowing cyan status light, secure transparent medicine compartment and small wheels. A warm, attentive nurse walks beside it. Build a continuous left-to-right visual journey through the corridor: a pharmacist waves from a softly lit dispensary window, the robot passes a moonlit aquarium alcove and patterned floor markers, then arrives at an open patient room where an awake child sits comfortably in bed with a parent nearby. The child looks curious and reassured, not ill or frightened. Include subtle signs of caring night-shift teamwork such as neatly parked equipment, folded blankets and another staff member checking a clipboard in the distance.\n\nCompose specifically as a 2048x2048 square picturebook spread with a vertical center gutter. Keep faces, the robot and all essential storytelling details safely away from the gutter. Let the robot’s curved floor path guide the eye across both pages. Reserve quiet, uncluttered shapes in the upper-left and upper-right for later editorial typesetting, but include no written words, letters, numbers, signage, logos or watermarks in the image. Warm pools of apricot light should contrast with cool aubergine nighttime corridors and cyan moonlight. Child-friendly, emotionally reassuring, sophisticated enough for a professionally published hospital picture book, crisp presentation-ready detail with handmade print texture.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2b4dcdbc-a093-4a10-a46b-bfe2e6f0a3e4.jpg",
"https://assets.runware.ai/assets/inputs/87983191-798d-4c2e-96b9-2f16d6218519.jpg",
"https://assets.runware.ai/assets/inputs/3e1cf998-e458-4f33-a4b4-2716406d1469.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "6ec5ec24-7085-4cd3-b9a0-fbabdc9043fa",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create one polished square double-page children’s-book spread for a pediatric hospital’s welcome book, using all three reference images only as a coherent visual-style guide. Preserve their shared screen-printed gouache and cut-paper language, chunky simplified silhouettes, tactile dry-brush grain, slight ink misregistration, expressive faces, layered architectural depth and restrained aubergine, apricot, mint and cyan palette. Do not reproduce any people, places, objects or compositions from the references.\n\nNew original subject: a calm children’s hospital during the night shift. Show a friendly waist-high medicine delivery robot traveling from the pharmacy on the left toward a young patient’s room on the right. The robot is practical rather than humanoid: rounded yellow body, softly glowing cyan status light, secure transparent medicine compartment and small wheels. A warm, attentive nurse walks beside it. Build a continuous left-to-right visual journey through the corridor: a pharmacist waves from a softly lit dispensary window, the robot passes a moonlit aquarium alcove and patterned floor markers, then arrives at an open patient room where an awake child sits comfortably in bed with a parent nearby. The child looks curious and reassured, not ill or frightened. Include subtle signs of caring night-shift teamwork such as neatly parked equipment, folded blankets and another staff member checking a clipboard in the distance.\n\nCompose specifically as a 2048x2048 square picturebook spread with a vertical center gutter. Keep faces, the robot and all essential storytelling details safely away from the gutter. Let the robot’s curved floor path guide the eye across both pages. Reserve quiet, uncluttered shapes in the upper-left and upper-right for later editorial typesetting, but include no written words, letters, numbers, signage, logos or watermarks in the image. Warm pools of apricot light should contrast with cool aubergine nighttime corridors and cyan moonlight. Child-friendly, emotionally reassuring, sophisticated enough for a professionally published hospital picture book, crisp presentation-ready detail with handmade print texture.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2b4dcdbc-a093-4a10-a46b-bfe2e6f0a3e4.jpg",
"https://assets.runware.ai/assets/inputs/87983191-798d-4c2e-96b9-2f16d6218519.jpg",
"https://assets.runware.ai/assets/inputs/3e1cf998-e458-4f33-a4b4-2716406d1469.jpg"
]
}
}
]'runware run recraft:v4@styles-pro \
positivePrompt="Create one polished square double-page children’s-book spread for a pediatric hospital’s welcome book, using all three reference images only as a coherent visual-style guide. Preserve their shared screen-printed gouache and cut-paper language, chunky simplified silhouettes, tactile dry-brush grain, slight ink misregistration, expressive faces, layered architectural depth and restrained aubergine, apricot, mint and cyan palette. Do not reproduce any people, places, objects or compositions from the references.
New original subject: a calm children’s hospital during the night shift. Show a friendly waist-high medicine delivery robot traveling from the pharmacy on the left toward a young patient’s room on the right. The robot is practical rather than humanoid: rounded yellow body, softly glowing cyan status light, secure transparent medicine compartment and small wheels. A warm, attentive nurse walks beside it. Build a continuous left-to-right visual journey through the corridor: a pharmacist waves from a softly lit dispensary window, the robot passes a moonlit aquarium alcove and patterned floor markers, then arrives at an open patient room where an awake child sits comfortably in bed with a parent nearby. The child looks curious and reassured, not ill or frightened. Include subtle signs of caring night-shift teamwork such as neatly parked equipment, folded blankets and another staff member checking a clipboard in the distance.
Compose specifically as a 2048x2048 square picturebook spread with a vertical center gutter. Keep faces, the robot and all essential storytelling details safely away from the gutter. Let the robot’s curved floor path guide the eye across both pages. Reserve quiet, uncluttered shapes in the upper-left and upper-right for later editorial typesetting, but include no written words, letters, numbers, signage, logos or watermarks in the image. Warm pools of apricot light should contrast with cool aubergine nighttime corridors and cyan moonlight. Child-friendly, emotionally reassuring, sophisticated enough for a professionally published hospital picture book, crisp presentation-ready detail with handmade print texture." \
width=2048 \
height=2048 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/2b4dcdbc-a093-4a10-a46b-bfe2e6f0a3e4.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/87983191-798d-4c2e-96b9-2f16d6218519.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/3e1cf998-e458-4f33-a4b4-2716406d1469.jpg{
"taskType": "imageInference",
"taskUUID": "6ec5ec24-7085-4cd3-b9a0-fbabdc9043fa",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create one polished square double-page children’s-book spread for a pediatric hospital’s welcome book, using all three reference images only as a coherent visual-style guide. Preserve their shared screen-printed gouache and cut-paper language, chunky simplified silhouettes, tactile dry-brush grain, slight ink misregistration, expressive faces, layered architectural depth and restrained aubergine, apricot, mint and cyan palette. Do not reproduce any people, places, objects or compositions from the references.\n\nNew original subject: a calm children’s hospital during the night shift. Show a friendly waist-high medicine delivery robot traveling from the pharmacy on the left toward a young patient’s room on the right. The robot is practical rather than humanoid: rounded yellow body, softly glowing cyan status light, secure transparent medicine compartment and small wheels. A warm, attentive nurse walks beside it. Build a continuous left-to-right visual journey through the corridor: a pharmacist waves from a softly lit dispensary window, the robot passes a moonlit aquarium alcove and patterned floor markers, then arrives at an open patient room where an awake child sits comfortably in bed with a parent nearby. The child looks curious and reassured, not ill or frightened. Include subtle signs of caring night-shift teamwork such as neatly parked equipment, folded blankets and another staff member checking a clipboard in the distance.\n\nCompose specifically as a 2048x2048 square picturebook spread with a vertical center gutter. Keep faces, the robot and all essential storytelling details safely away from the gutter. Let the robot’s curved floor path guide the eye across both pages. Reserve quiet, uncluttered shapes in the upper-left and upper-right for later editorial typesetting, but include no written words, letters, numbers, signage, logos or watermarks in the image. Warm pools of apricot light should contrast with cool aubergine nighttime corridors and cyan moonlight. Child-friendly, emotionally reassuring, sophisticated enough for a professionally published hospital picture book, crisp presentation-ready detail with handmade print texture.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2b4dcdbc-a093-4a10-a46b-bfe2e6f0a3e4.jpg",
"https://assets.runware.ai/assets/inputs/87983191-798d-4c2e-96b9-2f16d6218519.jpg",
"https://assets.runware.ai/assets/inputs/3e1cf998-e458-4f33-a4b4-2716406d1469.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "6ec5ec24-7085-4cd3-b9a0-fbabdc9043fa",
"imageUUID": "b59d1ead-d180-4746-afa4-2f1f50a7f43f",
"imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/4/ii/b59d1ead-d180-4746-afa4-2f1f50a7f43f.jpg",
"seed": 185072404,
"cost": 0.105,
"outputs": {
"styleId": "a532e331-1f47-44d0-8818-d05ff46ad238"
}
}reference-to-image
Fermentation Science Quarterly Cover$0.105~38s
Create a finished square magazine cover for CULTURE LAB, an independent quarterly about fermentation science and manufacturing. Use the three reference images only as a coherent visual-style set: preserve their shared rendering language, tactile paper texture, layered gouache forms, crisp ink contours, selective risograph halftones, disciplined geometric composition and restrained oxblood-red, saffron-yellow, cobalt-blue, charcoal and warm-cream palette. Do not reproduce any clocks, baggage systems, kilns, layouts or other reference content. New original cover subject: a dramatic bird's-eye cutaway of a modern koji fermentation room. Stainless-steel racks hold dozens of shallow cedar trays filled with rice inoculated by Aspergillus oryzae. Fine branching white mycelium spreads across the trays as elegant map-like networks, visually connecting the room into one living production system. Two small technicians in clean white workwear inspect trays and record temperature readings, providing scale without becoming the focal point. Include ventilation ducts, humidity gauges, cedar paddles and subtle clouds of golden spores, all scientifically plausible and carefully organized. The central rack formation should feel both biological and architectural, like a microbial city, with dense detail that remains legible at cover size. Design this as a flat, print-ready editorial cover, not a photographed magazine mockup. Reserve the upper band for a large, clean masthead reading exactly “CULTURE LAB” in bold condensed cobalt sans serif capitals. Add small text above or beside it reading exactly “ISSUE 08 / 2026”. Place the main cover line in the lower-left quadrant, clearly readable and not covering the technicians: “THE KOJI ECONOMY”. Beneath it, in smaller type, add exactly “How an ancient mold is redesigning food, flavor, and materials”. Use strong typographic hierarchy, generous margins, an intelligent independent-publishing sensibility and crisp professional alignment. No barcode, no price sticker, no extra cover lines, no logos, no illegible filler text. Mood: rigorous, tactile, quietly optimistic and future-facing rather than whimsical. Full-bleed square composition with polished detail suitable for a premium science and food-culture quarterly.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles-pro',
positivePrompt: 'Create a finished square magazine cover for CULTURE LAB, an independent quarterly about fermentation science and manufacturing. Use the three reference images only as a coherent visual-style set: preserve their shared rendering language, tactile paper texture, layered gouache forms, crisp ink contours, selective risograph halftones, disciplined geometric composition and restrained oxblood-red, saffron-yellow, cobalt-blue, charcoal and warm-cream palette. Do not reproduce any clocks, baggage systems, kilns, layouts or other reference content.\n\nNew original cover subject: a dramatic bird\'s-eye cutaway of a modern koji fermentation room. Stainless-steel racks hold dozens of shallow cedar trays filled with rice inoculated by Aspergillus oryzae. Fine branching white mycelium spreads across the trays as elegant map-like networks, visually connecting the room into one living production system. Two small technicians in clean white workwear inspect trays and record temperature readings, providing scale without becoming the focal point. Include ventilation ducts, humidity gauges, cedar paddles and subtle clouds of golden spores, all scientifically plausible and carefully organized. The central rack formation should feel both biological and architectural, like a microbial city, with dense detail that remains legible at cover size.\n\nDesign this as a flat, print-ready editorial cover, not a photographed magazine mockup. Reserve the upper band for a large, clean masthead reading exactly “CULTURE LAB” in bold condensed cobalt sans serif capitals. Add small text above or beside it reading exactly “ISSUE 08 / 2026”. Place the main cover line in the lower-left quadrant, clearly readable and not covering the technicians: “THE KOJI ECONOMY”. Beneath it, in smaller type, add exactly “How an ancient mold is redesigning food, flavor, and materials”. Use strong typographic hierarchy, generous margins, an intelligent independent-publishing sensibility and crisp professional alignment. No barcode, no price sticker, no extra cover lines, no logos, no illegible filler text. Mood: rigorous, tactile, quietly optimistic and future-facing rather than whimsical. Full-bleed square composition with polished detail suitable for a premium science and food-culture quarterly.',
width: 2048,
height: 2048,
settings: {
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/cf6174c6-83d7-4fa0-82a5-deea0a294cb8.jpg',
'https://assets.runware.ai/assets/inputs/a725049c-6a64-4ddf-820f-07b64ffe4c47.jpg',
'https://assets.runware.ai/assets/inputs/bd526e18-9d7f-417d-9e96-91cd63870db9.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished square magazine cover for CULTURE LAB, an independent quarterly about fermentation science and manufacturing. Use the three reference images only as a coherent visual-style set: preserve their shared rendering language, tactile paper texture, layered gouache forms, crisp ink contours, selective risograph halftones, disciplined geometric composition and restrained oxblood-red, saffron-yellow, cobalt-blue, charcoal and warm-cream palette. Do not reproduce any clocks, baggage systems, kilns, layouts or other reference content.\n\nNew original cover subject: a dramatic bird's-eye cutaway of a modern koji fermentation room. Stainless-steel racks hold dozens of shallow cedar trays filled with rice inoculated by Aspergillus oryzae. Fine branching white mycelium spreads across the trays as elegant map-like networks, visually connecting the room into one living production system. Two small technicians in clean white workwear inspect trays and record temperature readings, providing scale without becoming the focal point. Include ventilation ducts, humidity gauges, cedar paddles and subtle clouds of golden spores, all scientifically plausible and carefully organized. The central rack formation should feel both biological and architectural, like a microbial city, with dense detail that remains legible at cover size.\n\nDesign this as a flat, print-ready editorial cover, not a photographed magazine mockup. Reserve the upper band for a large, clean masthead reading exactly “CULTURE LAB” in bold condensed cobalt sans serif capitals. Add small text above or beside it reading exactly “ISSUE 08 / 2026”. Place the main cover line in the lower-left quadrant, clearly readable and not covering the technicians: “THE KOJI ECONOMY”. Beneath it, in smaller type, add exactly “How an ancient mold is redesigning food, flavor, and materials”. Use strong typographic hierarchy, generous margins, an intelligent independent-publishing sensibility and crisp professional alignment. No barcode, no price sticker, no extra cover lines, no logos, no illegible filler text. Mood: rigorous, tactile, quietly optimistic and future-facing rather than whimsical. Full-bleed square composition with polished detail suitable for a premium science and food-culture quarterly.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/cf6174c6-83d7-4fa0-82a5-deea0a294cb8.jpg",
"https://assets.runware.ai/assets/inputs/a725049c-6a64-4ddf-820f-07b64ffe4c47.jpg",
"https://assets.runware.ai/assets/inputs/bd526e18-9d7f-417d-9e96-91cd63870db9.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "16e0f1c3-a567-4456-ba7f-082556ddb050",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished square magazine cover for CULTURE LAB, an independent quarterly about fermentation science and manufacturing. Use the three reference images only as a coherent visual-style set: preserve their shared rendering language, tactile paper texture, layered gouache forms, crisp ink contours, selective risograph halftones, disciplined geometric composition and restrained oxblood-red, saffron-yellow, cobalt-blue, charcoal and warm-cream palette. Do not reproduce any clocks, baggage systems, kilns, layouts or other reference content.\n\nNew original cover subject: a dramatic bird's-eye cutaway of a modern koji fermentation room. Stainless-steel racks hold dozens of shallow cedar trays filled with rice inoculated by Aspergillus oryzae. Fine branching white mycelium spreads across the trays as elegant map-like networks, visually connecting the room into one living production system. Two small technicians in clean white workwear inspect trays and record temperature readings, providing scale without becoming the focal point. Include ventilation ducts, humidity gauges, cedar paddles and subtle clouds of golden spores, all scientifically plausible and carefully organized. The central rack formation should feel both biological and architectural, like a microbial city, with dense detail that remains legible at cover size.\n\nDesign this as a flat, print-ready editorial cover, not a photographed magazine mockup. Reserve the upper band for a large, clean masthead reading exactly “CULTURE LAB” in bold condensed cobalt sans serif capitals. Add small text above or beside it reading exactly “ISSUE 08 / 2026”. Place the main cover line in the lower-left quadrant, clearly readable and not covering the technicians: “THE KOJI ECONOMY”. Beneath it, in smaller type, add exactly “How an ancient mold is redesigning food, flavor, and materials”. Use strong typographic hierarchy, generous margins, an intelligent independent-publishing sensibility and crisp professional alignment. No barcode, no price sticker, no extra cover lines, no logos, no illegible filler text. Mood: rigorous, tactile, quietly optimistic and future-facing rather than whimsical. Full-bleed square composition with polished detail suitable for a premium science and food-culture quarterly.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/cf6174c6-83d7-4fa0-82a5-deea0a294cb8.jpg",
"https://assets.runware.ai/assets/inputs/a725049c-6a64-4ddf-820f-07b64ffe4c47.jpg",
"https://assets.runware.ai/assets/inputs/bd526e18-9d7f-417d-9e96-91cd63870db9.jpg"
]
}
}
]'runware run recraft:v4@styles-pro \
positivePrompt="Create a finished square magazine cover for CULTURE LAB, an independent quarterly about fermentation science and manufacturing. Use the three reference images only as a coherent visual-style set: preserve their shared rendering language, tactile paper texture, layered gouache forms, crisp ink contours, selective risograph halftones, disciplined geometric composition and restrained oxblood-red, saffron-yellow, cobalt-blue, charcoal and warm-cream palette. Do not reproduce any clocks, baggage systems, kilns, layouts or other reference content.
New original cover subject: a dramatic bird's-eye cutaway of a modern koji fermentation room. Stainless-steel racks hold dozens of shallow cedar trays filled with rice inoculated by Aspergillus oryzae. Fine branching white mycelium spreads across the trays as elegant map-like networks, visually connecting the room into one living production system. Two small technicians in clean white workwear inspect trays and record temperature readings, providing scale without becoming the focal point. Include ventilation ducts, humidity gauges, cedar paddles and subtle clouds of golden spores, all scientifically plausible and carefully organized. The central rack formation should feel both biological and architectural, like a microbial city, with dense detail that remains legible at cover size.
Design this as a flat, print-ready editorial cover, not a photographed magazine mockup. Reserve the upper band for a large, clean masthead reading exactly “CULTURE LAB” in bold condensed cobalt sans serif capitals. Add small text above or beside it reading exactly “ISSUE 08 / 2026”. Place the main cover line in the lower-left quadrant, clearly readable and not covering the technicians: “THE KOJI ECONOMY”. Beneath it, in smaller type, add exactly “How an ancient mold is redesigning food, flavor, and materials”. Use strong typographic hierarchy, generous margins, an intelligent independent-publishing sensibility and crisp professional alignment. No barcode, no price sticker, no extra cover lines, no logos, no illegible filler text. Mood: rigorous, tactile, quietly optimistic and future-facing rather than whimsical. Full-bleed square composition with polished detail suitable for a premium science and food-culture quarterly." \
width=2048 \
height=2048 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/cf6174c6-83d7-4fa0-82a5-deea0a294cb8.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/a725049c-6a64-4ddf-820f-07b64ffe4c47.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/bd526e18-9d7f-417d-9e96-91cd63870db9.jpg{
"taskType": "imageInference",
"taskUUID": "16e0f1c3-a567-4456-ba7f-082556ddb050",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished square magazine cover for CULTURE LAB, an independent quarterly about fermentation science and manufacturing. Use the three reference images only as a coherent visual-style set: preserve their shared rendering language, tactile paper texture, layered gouache forms, crisp ink contours, selective risograph halftones, disciplined geometric composition and restrained oxblood-red, saffron-yellow, cobalt-blue, charcoal and warm-cream palette. Do not reproduce any clocks, baggage systems, kilns, layouts or other reference content.\n\nNew original cover subject: a dramatic bird's-eye cutaway of a modern koji fermentation room. Stainless-steel racks hold dozens of shallow cedar trays filled with rice inoculated by Aspergillus oryzae. Fine branching white mycelium spreads across the trays as elegant map-like networks, visually connecting the room into one living production system. Two small technicians in clean white workwear inspect trays and record temperature readings, providing scale without becoming the focal point. Include ventilation ducts, humidity gauges, cedar paddles and subtle clouds of golden spores, all scientifically plausible and carefully organized. The central rack formation should feel both biological and architectural, like a microbial city, with dense detail that remains legible at cover size.\n\nDesign this as a flat, print-ready editorial cover, not a photographed magazine mockup. Reserve the upper band for a large, clean masthead reading exactly “CULTURE LAB” in bold condensed cobalt sans serif capitals. Add small text above or beside it reading exactly “ISSUE 08 / 2026”. Place the main cover line in the lower-left quadrant, clearly readable and not covering the technicians: “THE KOJI ECONOMY”. Beneath it, in smaller type, add exactly “How an ancient mold is redesigning food, flavor, and materials”. Use strong typographic hierarchy, generous margins, an intelligent independent-publishing sensibility and crisp professional alignment. No barcode, no price sticker, no extra cover lines, no logos, no illegible filler text. Mood: rigorous, tactile, quietly optimistic and future-facing rather than whimsical. Full-bleed square composition with polished detail suitable for a premium science and food-culture quarterly.",
"width": 2048,
"height": 2048,
"settings": {
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/cf6174c6-83d7-4fa0-82a5-deea0a294cb8.jpg",
"https://assets.runware.ai/assets/inputs/a725049c-6a64-4ddf-820f-07b64ffe4c47.jpg",
"https://assets.runware.ai/assets/inputs/bd526e18-9d7f-417d-9e96-91cd63870db9.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "16e0f1c3-a567-4456-ba7f-082556ddb050",
"imageUUID": "764bea24-5428-4bb4-b965-bf9fafb1edef",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/4/ii/764bea24-5428-4bb4-b965-bf9fafb1edef.jpg",
"seed": 1433926130,
"cost": 0.105,
"outputs": {
"styleId": "42cf42d4-e648-48f6-b5f8-9d4a36815c76"
}
}
Create a polished axonometric cutaway illustration for an environmental engineering planning report. Show a narrow two-lane rural road crossing an amphibian migration corridor between a woodland pond and wet meadow. Reveal the infrastructure beneath and beside the road: a correctly proportioned rectangular wildlife tunnel, damp natural substrate through the passage, continuous low drift fencing guiding animals toward both entrances, grated drainage channels positioned away from the migration path, concrete headwalls, native verge planting, and a discreet maintenance access point. Include several small newts, frogs, and toads moving safely through the tunnel, plus one field ecologist in waterproof workwear for scale. Make the road surface, soil strata, culvert, water table, fencing connections, and habitat relationship immediately understandable without labels. Spacious three-quarter composition with the entire crossing system visible, technically credible construction details, clear visual hierarchy, no decorative fantasy elements. Precisely follow the reference image's vintage civil-engineering plate style: crisp geometric linework, restrained flat shapes, tactile stippling, subtle screen-print texture, slight ink misregistration, warm paper background, and exactly three dominant spot colors. No text, numbers, logos, legend, border, or presentation mockup.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles-pro',
positivePrompt: 'Create a polished axonometric cutaway illustration for an environmental engineering planning report. Show a narrow two-lane rural road crossing an amphibian migration corridor between a woodland pond and wet meadow. Reveal the infrastructure beneath and beside the road: a correctly proportioned rectangular wildlife tunnel, damp natural substrate through the passage, continuous low drift fencing guiding animals toward both entrances, grated drainage channels positioned away from the migration path, concrete headwalls, native verge planting, and a discreet maintenance access point. Include several small newts, frogs, and toads moving safely through the tunnel, plus one field ecologist in waterproof workwear for scale. Make the road surface, soil strata, culvert, water table, fencing connections, and habitat relationship immediately understandable without labels. Spacious three-quarter composition with the entire crossing system visible, technically credible construction details, clear visual hierarchy, no decorative fantasy elements. Precisely follow the reference image\'s vintage civil-engineering plate style: crisp geometric linework, restrained flat shapes, tactile stippling, subtle screen-print texture, slight ink misregistration, warm paper background, and exactly three dominant spot colors. No text, numbers, logos, legend, border, or presentation mockup.',
width: 2432,
height: 1792,
settings: {
backgroundColor: {
rgb: [
244,
237,
218
]
},
colors: [
{
rgb: [
25,
45,
62
]
},
{
rgb: [
218,
91,
53
]
},
{
rgb: [
112,
137,
86
]
}
],
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/4e45c35d-4041-4381-bfcc-873ef19550fa.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a polished axonometric cutaway illustration for an environmental engineering planning report. Show a narrow two-lane rural road crossing an amphibian migration corridor between a woodland pond and wet meadow. Reveal the infrastructure beneath and beside the road: a correctly proportioned rectangular wildlife tunnel, damp natural substrate through the passage, continuous low drift fencing guiding animals toward both entrances, grated drainage channels positioned away from the migration path, concrete headwalls, native verge planting, and a discreet maintenance access point. Include several small newts, frogs, and toads moving safely through the tunnel, plus one field ecologist in waterproof workwear for scale. Make the road surface, soil strata, culvert, water table, fencing connections, and habitat relationship immediately understandable without labels. Spacious three-quarter composition with the entire crossing system visible, technically credible construction details, clear visual hierarchy, no decorative fantasy elements. Precisely follow the reference image's vintage civil-engineering plate style: crisp geometric linework, restrained flat shapes, tactile stippling, subtle screen-print texture, slight ink misregistration, warm paper background, and exactly three dominant spot colors. No text, numbers, logos, legend, border, or presentation mockup.",
"width": 2432,
"height": 1792,
"settings": {
"backgroundColor": {
"rgb": [
244,
237,
218
]
},
"colors": [
{
"rgb": [
25,
45,
62
]
},
{
"rgb": [
218,
91,
53
]
},
{
"rgb": [
112,
137,
86
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/4e45c35d-4041-4381-bfcc-873ef19550fa.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "b4f9f73b-c844-4bb7-bb7d-f8679cf5a4dd",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a polished axonometric cutaway illustration for an environmental engineering planning report. Show a narrow two-lane rural road crossing an amphibian migration corridor between a woodland pond and wet meadow. Reveal the infrastructure beneath and beside the road: a correctly proportioned rectangular wildlife tunnel, damp natural substrate through the passage, continuous low drift fencing guiding animals toward both entrances, grated drainage channels positioned away from the migration path, concrete headwalls, native verge planting, and a discreet maintenance access point. Include several small newts, frogs, and toads moving safely through the tunnel, plus one field ecologist in waterproof workwear for scale. Make the road surface, soil strata, culvert, water table, fencing connections, and habitat relationship immediately understandable without labels. Spacious three-quarter composition with the entire crossing system visible, technically credible construction details, clear visual hierarchy, no decorative fantasy elements. Precisely follow the reference image's vintage civil-engineering plate style: crisp geometric linework, restrained flat shapes, tactile stippling, subtle screen-print texture, slight ink misregistration, warm paper background, and exactly three dominant spot colors. No text, numbers, logos, legend, border, or presentation mockup.",
"width": 2432,
"height": 1792,
"settings": {
"backgroundColor": {
"rgb": [
244,
237,
218
]
},
"colors": [
{
"rgb": [
25,
45,
62
]
},
{
"rgb": [
218,
91,
53
]
},
{
"rgb": [
112,
137,
86
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/4e45c35d-4041-4381-bfcc-873ef19550fa.jpg"
]
}
}
]'runware run recraft:v4@styles-pro \
positivePrompt="Create a polished axonometric cutaway illustration for an environmental engineering planning report. Show a narrow two-lane rural road crossing an amphibian migration corridor between a woodland pond and wet meadow. Reveal the infrastructure beneath and beside the road: a correctly proportioned rectangular wildlife tunnel, damp natural substrate through the passage, continuous low drift fencing guiding animals toward both entrances, grated drainage channels positioned away from the migration path, concrete headwalls, native verge planting, and a discreet maintenance access point. Include several small newts, frogs, and toads moving safely through the tunnel, plus one field ecologist in waterproof workwear for scale. Make the road surface, soil strata, culvert, water table, fencing connections, and habitat relationship immediately understandable without labels. Spacious three-quarter composition with the entire crossing system visible, technically credible construction details, clear visual hierarchy, no decorative fantasy elements. Precisely follow the reference image's vintage civil-engineering plate style: crisp geometric linework, restrained flat shapes, tactile stippling, subtle screen-print texture, slight ink misregistration, warm paper background, and exactly three dominant spot colors. No text, numbers, logos, legend, border, or presentation mockup." \
width=2432 \
height=1792 \
settings.backgroundColor.rgb.0=244 \
settings.backgroundColor.rgb.1=237 \
settings.backgroundColor.rgb.2=218 \
settings.colors.0.rgb.0=25 \
settings.colors.0.rgb.1=45 \
settings.colors.0.rgb.2=62 \
settings.colors.1.rgb.0=218 \
settings.colors.1.rgb.1=91 \
settings.colors.1.rgb.2=53 \
settings.colors.2.rgb.0=112 \
settings.colors.2.rgb.1=137 \
settings.colors.2.rgb.2=86 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/4e45c35d-4041-4381-bfcc-873ef19550fa.jpg{
"taskType": "imageInference",
"taskUUID": "b4f9f73b-c844-4bb7-bb7d-f8679cf5a4dd",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a polished axonometric cutaway illustration for an environmental engineering planning report. Show a narrow two-lane rural road crossing an amphibian migration corridor between a woodland pond and wet meadow. Reveal the infrastructure beneath and beside the road: a correctly proportioned rectangular wildlife tunnel, damp natural substrate through the passage, continuous low drift fencing guiding animals toward both entrances, grated drainage channels positioned away from the migration path, concrete headwalls, native verge planting, and a discreet maintenance access point. Include several small newts, frogs, and toads moving safely through the tunnel, plus one field ecologist in waterproof workwear for scale. Make the road surface, soil strata, culvert, water table, fencing connections, and habitat relationship immediately understandable without labels. Spacious three-quarter composition with the entire crossing system visible, technically credible construction details, clear visual hierarchy, no decorative fantasy elements. Precisely follow the reference image's vintage civil-engineering plate style: crisp geometric linework, restrained flat shapes, tactile stippling, subtle screen-print texture, slight ink misregistration, warm paper background, and exactly three dominant spot colors. No text, numbers, logos, legend, border, or presentation mockup.",
"width": 2432,
"height": 1792,
"settings": {
"backgroundColor": {
"rgb": [
244,
237,
218
]
},
"colors": [
{
"rgb": [
25,
45,
62
]
},
{
"rgb": [
218,
91,
53
]
},
{
"rgb": [
112,
137,
86
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/4e45c35d-4041-4381-bfcc-873ef19550fa.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "b4f9f73b-c844-4bb7-bb7d-f8679cf5a4dd",
"imageUUID": "d0a51ce6-d11e-4b2e-9838-045a0f899127",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/4/ii/d0a51ce6-d11e-4b2e-9838-045a0f899127.jpg",
"seed": 1665519696,
"cost": 0.105,
"outputs": {
"styleId": "01ff0fd0-6658-4d0e-abd1-c2ce3f5d6eab"
}
}
Create a finished vertical patient-education infographic titled “YOUR CAR-T CELL JOURNEY”. Explain the vein-to-vein logistics of CAR-T therapy as one clear continuous transit route moving from top to bottom through seven large numbered stations: “1 CELL COLLECTION”, “2 SECURE PACKING”, “3 SPECIALIST TRANSPORT”, “4 CELL ENGINEERING”, “5 QUALITY CHECK”, “6 RETURN TO HOSPITAL”, “7 INFUSION”. Add a short subtitle: “How your immune cells are collected, prepared and returned to you.” Show each stage with a simple, medically accurate pictogram: patient beside an apheresis machine; sealed temperature-controlled transport case; courier van and cargo aircraft; laboratory technician modifying T cells in a clean laboratory; microscope and quality-control checklist; tracked shipment arriving at a hospital; infusion bag connected to a comfortably seated patient. Connect every station with one thick rounded line inspired by a metropolitan transit map, including small direction arrows and a recurring cell-shaped route marker. Use a warm cream background, eggplant-purple structure, apricot-orange route accents, and mint-green clinical details. Art direction: sophisticated 1970s public-information graphics reinterpreted as a contemporary biomedical explainer, geometric cut-paper shapes, crisp edges, subtle screen-print grain, friendly rather than childish, calm and reassuring. Strong information hierarchy, generous spacing, highly legible concise lettering, balanced editorial layout, presentation-ready detail. Include a small footer note: “TIMING VARIES BY TREATMENT PLAN”. Standalone flat infographic artwork only, not a poster mockup, website, app interface, or photographed display.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles-pro',
positivePrompt: 'Create a finished vertical patient-education infographic titled “YOUR CAR-T CELL JOURNEY”. Explain the vein-to-vein logistics of CAR-T therapy as one clear continuous transit route moving from top to bottom through seven large numbered stations: “1 CELL COLLECTION”, “2 SECURE PACKING”, “3 SPECIALIST TRANSPORT”, “4 CELL ENGINEERING”, “5 QUALITY CHECK”, “6 RETURN TO HOSPITAL”, “7 INFUSION”. Add a short subtitle: “How your immune cells are collected, prepared and returned to you.” Show each stage with a simple, medically accurate pictogram: patient beside an apheresis machine; sealed temperature-controlled transport case; courier van and cargo aircraft; laboratory technician modifying T cells in a clean laboratory; microscope and quality-control checklist; tracked shipment arriving at a hospital; infusion bag connected to a comfortably seated patient. Connect every station with one thick rounded line inspired by a metropolitan transit map, including small direction arrows and a recurring cell-shaped route marker. Use a warm cream background, eggplant-purple structure, apricot-orange route accents, and mint-green clinical details. Art direction: sophisticated 1970s public-information graphics reinterpreted as a contemporary biomedical explainer, geometric cut-paper shapes, crisp edges, subtle screen-print grain, friendly rather than childish, calm and reassuring. Strong information hierarchy, generous spacing, highly legible concise lettering, balanced editorial layout, presentation-ready detail. Include a small footer note: “TIMING VARIES BY TREATMENT PLAN”. Standalone flat infographic artwork only, not a poster mockup, website, app interface, or photographed display.',
width: 1792,
height: 2560,
settings: {
backgroundColor: {
rgb: [
248,
241,
222
]
},
colors: [
{
rgb: [
63,
34,
74
]
},
{
rgb: [
235,
121,
88
]
},
{
rgb: [
132,
194,
166
]
},
{
rgb: [
248,
241,
222
]
}
],
styleMatch: 'flexible'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/af0adba6-9c1c-4746-90b7-113a05ab5e36.jpg',
'https://assets.runware.ai/assets/inputs/4d5a4ff6-2a5e-487a-909f-5adbba5e6930.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished vertical patient-education infographic titled “YOUR CAR-T CELL JOURNEY”. Explain the vein-to-vein logistics of CAR-T therapy as one clear continuous transit route moving from top to bottom through seven large numbered stations: “1 CELL COLLECTION”, “2 SECURE PACKING”, “3 SPECIALIST TRANSPORT”, “4 CELL ENGINEERING”, “5 QUALITY CHECK”, “6 RETURN TO HOSPITAL”, “7 INFUSION”. Add a short subtitle: “How your immune cells are collected, prepared and returned to you.” Show each stage with a simple, medically accurate pictogram: patient beside an apheresis machine; sealed temperature-controlled transport case; courier van and cargo aircraft; laboratory technician modifying T cells in a clean laboratory; microscope and quality-control checklist; tracked shipment arriving at a hospital; infusion bag connected to a comfortably seated patient. Connect every station with one thick rounded line inspired by a metropolitan transit map, including small direction arrows and a recurring cell-shaped route marker. Use a warm cream background, eggplant-purple structure, apricot-orange route accents, and mint-green clinical details. Art direction: sophisticated 1970s public-information graphics reinterpreted as a contemporary biomedical explainer, geometric cut-paper shapes, crisp edges, subtle screen-print grain, friendly rather than childish, calm and reassuring. Strong information hierarchy, generous spacing, highly legible concise lettering, balanced editorial layout, presentation-ready detail. Include a small footer note: “TIMING VARIES BY TREATMENT PLAN”. Standalone flat infographic artwork only, not a poster mockup, website, app interface, or photographed display.",
"width": 1792,
"height": 2560,
"settings": {
"backgroundColor": {
"rgb": [
248,
241,
222
]
},
"colors": [
{
"rgb": [
63,
34,
74
]
},
{
"rgb": [
235,
121,
88
]
},
{
"rgb": [
132,
194,
166
]
},
{
"rgb": [
248,
241,
222
]
}
],
"styleMatch": "flexible"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/af0adba6-9c1c-4746-90b7-113a05ab5e36.jpg",
"https://assets.runware.ai/assets/inputs/4d5a4ff6-2a5e-487a-909f-5adbba5e6930.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "ce20a122-f3b3-4533-85e3-118460a8963f",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished vertical patient-education infographic titled “YOUR CAR-T CELL JOURNEY”. Explain the vein-to-vein logistics of CAR-T therapy as one clear continuous transit route moving from top to bottom through seven large numbered stations: “1 CELL COLLECTION”, “2 SECURE PACKING”, “3 SPECIALIST TRANSPORT”, “4 CELL ENGINEERING”, “5 QUALITY CHECK”, “6 RETURN TO HOSPITAL”, “7 INFUSION”. Add a short subtitle: “How your immune cells are collected, prepared and returned to you.” Show each stage with a simple, medically accurate pictogram: patient beside an apheresis machine; sealed temperature-controlled transport case; courier van and cargo aircraft; laboratory technician modifying T cells in a clean laboratory; microscope and quality-control checklist; tracked shipment arriving at a hospital; infusion bag connected to a comfortably seated patient. Connect every station with one thick rounded line inspired by a metropolitan transit map, including small direction arrows and a recurring cell-shaped route marker. Use a warm cream background, eggplant-purple structure, apricot-orange route accents, and mint-green clinical details. Art direction: sophisticated 1970s public-information graphics reinterpreted as a contemporary biomedical explainer, geometric cut-paper shapes, crisp edges, subtle screen-print grain, friendly rather than childish, calm and reassuring. Strong information hierarchy, generous spacing, highly legible concise lettering, balanced editorial layout, presentation-ready detail. Include a small footer note: “TIMING VARIES BY TREATMENT PLAN”. Standalone flat infographic artwork only, not a poster mockup, website, app interface, or photographed display.",
"width": 1792,
"height": 2560,
"settings": {
"backgroundColor": {
"rgb": [
248,
241,
222
]
},
"colors": [
{
"rgb": [
63,
34,
74
]
},
{
"rgb": [
235,
121,
88
]
},
{
"rgb": [
132,
194,
166
]
},
{
"rgb": [
248,
241,
222
]
}
],
"styleMatch": "flexible"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/af0adba6-9c1c-4746-90b7-113a05ab5e36.jpg",
"https://assets.runware.ai/assets/inputs/4d5a4ff6-2a5e-487a-909f-5adbba5e6930.jpg"
]
}
}
]'runware run recraft:v4@styles-pro \
positivePrompt="Create a finished vertical patient-education infographic titled “YOUR CAR-T CELL JOURNEY”. Explain the vein-to-vein logistics of CAR-T therapy as one clear continuous transit route moving from top to bottom through seven large numbered stations: “1 CELL COLLECTION”, “2 SECURE PACKING”, “3 SPECIALIST TRANSPORT”, “4 CELL ENGINEERING”, “5 QUALITY CHECK”, “6 RETURN TO HOSPITAL”, “7 INFUSION”. Add a short subtitle: “How your immune cells are collected, prepared and returned to you.” Show each stage with a simple, medically accurate pictogram: patient beside an apheresis machine; sealed temperature-controlled transport case; courier van and cargo aircraft; laboratory technician modifying T cells in a clean laboratory; microscope and quality-control checklist; tracked shipment arriving at a hospital; infusion bag connected to a comfortably seated patient. Connect every station with one thick rounded line inspired by a metropolitan transit map, including small direction arrows and a recurring cell-shaped route marker. Use a warm cream background, eggplant-purple structure, apricot-orange route accents, and mint-green clinical details. Art direction: sophisticated 1970s public-information graphics reinterpreted as a contemporary biomedical explainer, geometric cut-paper shapes, crisp edges, subtle screen-print grain, friendly rather than childish, calm and reassuring. Strong information hierarchy, generous spacing, highly legible concise lettering, balanced editorial layout, presentation-ready detail. Include a small footer note: “TIMING VARIES BY TREATMENT PLAN”. Standalone flat infographic artwork only, not a poster mockup, website, app interface, or photographed display." \
width=1792 \
height=2560 \
settings.backgroundColor.rgb.0=248 \
settings.backgroundColor.rgb.1=241 \
settings.backgroundColor.rgb.2=222 \
settings.colors.0.rgb.0=63 \
settings.colors.0.rgb.1=34 \
settings.colors.0.rgb.2=74 \
settings.colors.1.rgb.0=235 \
settings.colors.1.rgb.1=121 \
settings.colors.1.rgb.2=88 \
settings.colors.2.rgb.0=132 \
settings.colors.2.rgb.1=194 \
settings.colors.2.rgb.2=166 \
settings.colors.3.rgb.0=248 \
settings.colors.3.rgb.1=241 \
settings.colors.3.rgb.2=222 \
settings.styleMatch=flexible \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/af0adba6-9c1c-4746-90b7-113a05ab5e36.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/4d5a4ff6-2a5e-487a-909f-5adbba5e6930.jpg{
"taskType": "imageInference",
"taskUUID": "ce20a122-f3b3-4533-85e3-118460a8963f",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished vertical patient-education infographic titled “YOUR CAR-T CELL JOURNEY”. Explain the vein-to-vein logistics of CAR-T therapy as one clear continuous transit route moving from top to bottom through seven large numbered stations: “1 CELL COLLECTION”, “2 SECURE PACKING”, “3 SPECIALIST TRANSPORT”, “4 CELL ENGINEERING”, “5 QUALITY CHECK”, “6 RETURN TO HOSPITAL”, “7 INFUSION”. Add a short subtitle: “How your immune cells are collected, prepared and returned to you.” Show each stage with a simple, medically accurate pictogram: patient beside an apheresis machine; sealed temperature-controlled transport case; courier van and cargo aircraft; laboratory technician modifying T cells in a clean laboratory; microscope and quality-control checklist; tracked shipment arriving at a hospital; infusion bag connected to a comfortably seated patient. Connect every station with one thick rounded line inspired by a metropolitan transit map, including small direction arrows and a recurring cell-shaped route marker. Use a warm cream background, eggplant-purple structure, apricot-orange route accents, and mint-green clinical details. Art direction: sophisticated 1970s public-information graphics reinterpreted as a contemporary biomedical explainer, geometric cut-paper shapes, crisp edges, subtle screen-print grain, friendly rather than childish, calm and reassuring. Strong information hierarchy, generous spacing, highly legible concise lettering, balanced editorial layout, presentation-ready detail. Include a small footer note: “TIMING VARIES BY TREATMENT PLAN”. Standalone flat infographic artwork only, not a poster mockup, website, app interface, or photographed display.",
"width": 1792,
"height": 2560,
"settings": {
"backgroundColor": {
"rgb": [
248,
241,
222
]
},
"colors": [
{
"rgb": [
63,
34,
74
]
},
{
"rgb": [
235,
121,
88
]
},
{
"rgb": [
132,
194,
166
]
},
{
"rgb": [
248,
241,
222
]
}
],
"styleMatch": "flexible"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/af0adba6-9c1c-4746-90b7-113a05ab5e36.jpg",
"https://assets.runware.ai/assets/inputs/4d5a4ff6-2a5e-487a-909f-5adbba5e6930.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "ce20a122-f3b3-4533-85e3-118460a8963f",
"imageUUID": "0255f154-056e-4c8a-8c99-fd8ff75a7529",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/4/ii/0255f154-056e-4c8a-8c99-fd8ff75a7529.jpg",
"seed": 1464667443,
"cost": 0.105,
"outputs": {
"styleId": "b08765f0-692e-4e28-9311-7680d5247ab1"
}
}
Create finished, print-ready front label artwork for a professional coastal environmental DNA sampling kit, presented straight-on and filling the entire vertical canvas with no package mockup, hands, scenery, or perspective distortion. Brand name TIDELINE at the top in bold condensed sans serif lettering; primary product name eDNA WATER SAMPLE KIT; supporting copy SHORELINE SERIES, 12 STERILE FILTERS, FIELD USE / SINGLE SAMPLE, and LOT 24C. Build a disciplined modular information hierarchy inspired by mid-century oceanographic charts and 1970s Swiss laboratory packaging. Feature an elegant scientific illustration of a translucent filter membrane intersected by tidal contour lines, tiny diatoms, copepods, eelgrass fragments, and DNA helix marks. Include restrained technical icons, specimen indexing ticks, a small blank lot-code box, and believable regulatory microcopy arranged along the bottom edge. Crisp flat print design with subtle misregistration, fine engraved linework, tactile uncoated paper grain, generous negative space, precise alignment, and premium presentation-ready detail. Palette of warm bone, deep ultramarine, burnt orange, and a small accent of acid green. Serious, intelligent, field-ready mood; legible typography; no bottle, pouch, box, shadows, tabletop, or surrounding environment.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles-pro',
positivePrompt: 'Create finished, print-ready front label artwork for a professional coastal environmental DNA sampling kit, presented straight-on and filling the entire vertical canvas with no package mockup, hands, scenery, or perspective distortion. Brand name TIDELINE at the top in bold condensed sans serif lettering; primary product name eDNA WATER SAMPLE KIT; supporting copy SHORELINE SERIES, 12 STERILE FILTERS, FIELD USE / SINGLE SAMPLE, and LOT 24C. Build a disciplined modular information hierarchy inspired by mid-century oceanographic charts and 1970s Swiss laboratory packaging. Feature an elegant scientific illustration of a translucent filter membrane intersected by tidal contour lines, tiny diatoms, copepods, eelgrass fragments, and DNA helix marks. Include restrained technical icons, specimen indexing ticks, a small blank lot-code box, and believable regulatory microcopy arranged along the bottom edge. Crisp flat print design with subtle misregistration, fine engraved linework, tactile uncoated paper grain, generous negative space, precise alignment, and premium presentation-ready detail. Palette of warm bone, deep ultramarine, burnt orange, and a small accent of acid green. Serious, intelligent, field-ready mood; legible typography; no bottle, pouch, box, shadows, tabletop, or surrounding environment.',
width: 1664,
height: 2560,
settings: {
backgroundColor: {
rgb: [
238,
231,
211
]
},
colors: [
{
rgb: [
238,
231,
211
]
},
{
rgb: [
26,
54,
128
]
},
{
rgb: [
205,
73,
42
]
},
{
rgb: [
181,
214,
55
]
}
],
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/a78761d6-1293-4a55-8fa1-b4b4be23ebbf.jpg',
'https://assets.runware.ai/assets/inputs/dcc801e0-254e-4f88-8092-9910cb4e5d1c.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create finished, print-ready front label artwork for a professional coastal environmental DNA sampling kit, presented straight-on and filling the entire vertical canvas with no package mockup, hands, scenery, or perspective distortion. Brand name TIDELINE at the top in bold condensed sans serif lettering; primary product name eDNA WATER SAMPLE KIT; supporting copy SHORELINE SERIES, 12 STERILE FILTERS, FIELD USE / SINGLE SAMPLE, and LOT 24C. Build a disciplined modular information hierarchy inspired by mid-century oceanographic charts and 1970s Swiss laboratory packaging. Feature an elegant scientific illustration of a translucent filter membrane intersected by tidal contour lines, tiny diatoms, copepods, eelgrass fragments, and DNA helix marks. Include restrained technical icons, specimen indexing ticks, a small blank lot-code box, and believable regulatory microcopy arranged along the bottom edge. Crisp flat print design with subtle misregistration, fine engraved linework, tactile uncoated paper grain, generous negative space, precise alignment, and premium presentation-ready detail. Palette of warm bone, deep ultramarine, burnt orange, and a small accent of acid green. Serious, intelligent, field-ready mood; legible typography; no bottle, pouch, box, shadows, tabletop, or surrounding environment.",
"width": 1664,
"height": 2560,
"settings": {
"backgroundColor": {
"rgb": [
238,
231,
211
]
},
"colors": [
{
"rgb": [
238,
231,
211
]
},
{
"rgb": [
26,
54,
128
]
},
{
"rgb": [
205,
73,
42
]
},
{
"rgb": [
181,
214,
55
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/a78761d6-1293-4a55-8fa1-b4b4be23ebbf.jpg",
"https://assets.runware.ai/assets/inputs/dcc801e0-254e-4f88-8092-9910cb4e5d1c.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "157c483d-0f5e-4db0-afee-8c9fe7273dfa",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create finished, print-ready front label artwork for a professional coastal environmental DNA sampling kit, presented straight-on and filling the entire vertical canvas with no package mockup, hands, scenery, or perspective distortion. Brand name TIDELINE at the top in bold condensed sans serif lettering; primary product name eDNA WATER SAMPLE KIT; supporting copy SHORELINE SERIES, 12 STERILE FILTERS, FIELD USE / SINGLE SAMPLE, and LOT 24C. Build a disciplined modular information hierarchy inspired by mid-century oceanographic charts and 1970s Swiss laboratory packaging. Feature an elegant scientific illustration of a translucent filter membrane intersected by tidal contour lines, tiny diatoms, copepods, eelgrass fragments, and DNA helix marks. Include restrained technical icons, specimen indexing ticks, a small blank lot-code box, and believable regulatory microcopy arranged along the bottom edge. Crisp flat print design with subtle misregistration, fine engraved linework, tactile uncoated paper grain, generous negative space, precise alignment, and premium presentation-ready detail. Palette of warm bone, deep ultramarine, burnt orange, and a small accent of acid green. Serious, intelligent, field-ready mood; legible typography; no bottle, pouch, box, shadows, tabletop, or surrounding environment.",
"width": 1664,
"height": 2560,
"settings": {
"backgroundColor": {
"rgb": [
238,
231,
211
]
},
"colors": [
{
"rgb": [
238,
231,
211
]
},
{
"rgb": [
26,
54,
128
]
},
{
"rgb": [
205,
73,
42
]
},
{
"rgb": [
181,
214,
55
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/a78761d6-1293-4a55-8fa1-b4b4be23ebbf.jpg",
"https://assets.runware.ai/assets/inputs/dcc801e0-254e-4f88-8092-9910cb4e5d1c.jpg"
]
}
}
]'runware run recraft:v4@styles-pro \
positivePrompt="Create finished, print-ready front label artwork for a professional coastal environmental DNA sampling kit, presented straight-on and filling the entire vertical canvas with no package mockup, hands, scenery, or perspective distortion. Brand name TIDELINE at the top in bold condensed sans serif lettering; primary product name eDNA WATER SAMPLE KIT; supporting copy SHORELINE SERIES, 12 STERILE FILTERS, FIELD USE / SINGLE SAMPLE, and LOT 24C. Build a disciplined modular information hierarchy inspired by mid-century oceanographic charts and 1970s Swiss laboratory packaging. Feature an elegant scientific illustration of a translucent filter membrane intersected by tidal contour lines, tiny diatoms, copepods, eelgrass fragments, and DNA helix marks. Include restrained technical icons, specimen indexing ticks, a small blank lot-code box, and believable regulatory microcopy arranged along the bottom edge. Crisp flat print design with subtle misregistration, fine engraved linework, tactile uncoated paper grain, generous negative space, precise alignment, and premium presentation-ready detail. Palette of warm bone, deep ultramarine, burnt orange, and a small accent of acid green. Serious, intelligent, field-ready mood; legible typography; no bottle, pouch, box, shadows, tabletop, or surrounding environment." \
width=1664 \
height=2560 \
settings.backgroundColor.rgb.0=238 \
settings.backgroundColor.rgb.1=231 \
settings.backgroundColor.rgb.2=211 \
settings.colors.0.rgb.0=238 \
settings.colors.0.rgb.1=231 \
settings.colors.0.rgb.2=211 \
settings.colors.1.rgb.0=26 \
settings.colors.1.rgb.1=54 \
settings.colors.1.rgb.2=128 \
settings.colors.2.rgb.0=205 \
settings.colors.2.rgb.1=73 \
settings.colors.2.rgb.2=42 \
settings.colors.3.rgb.0=181 \
settings.colors.3.rgb.1=214 \
settings.colors.3.rgb.2=55 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/a78761d6-1293-4a55-8fa1-b4b4be23ebbf.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/dcc801e0-254e-4f88-8092-9910cb4e5d1c.jpg{
"taskType": "imageInference",
"taskUUID": "157c483d-0f5e-4db0-afee-8c9fe7273dfa",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create finished, print-ready front label artwork for a professional coastal environmental DNA sampling kit, presented straight-on and filling the entire vertical canvas with no package mockup, hands, scenery, or perspective distortion. Brand name TIDELINE at the top in bold condensed sans serif lettering; primary product name eDNA WATER SAMPLE KIT; supporting copy SHORELINE SERIES, 12 STERILE FILTERS, FIELD USE / SINGLE SAMPLE, and LOT 24C. Build a disciplined modular information hierarchy inspired by mid-century oceanographic charts and 1970s Swiss laboratory packaging. Feature an elegant scientific illustration of a translucent filter membrane intersected by tidal contour lines, tiny diatoms, copepods, eelgrass fragments, and DNA helix marks. Include restrained technical icons, specimen indexing ticks, a small blank lot-code box, and believable regulatory microcopy arranged along the bottom edge. Crisp flat print design with subtle misregistration, fine engraved linework, tactile uncoated paper grain, generous negative space, precise alignment, and premium presentation-ready detail. Palette of warm bone, deep ultramarine, burnt orange, and a small accent of acid green. Serious, intelligent, field-ready mood; legible typography; no bottle, pouch, box, shadows, tabletop, or surrounding environment.",
"width": 1664,
"height": 2560,
"settings": {
"backgroundColor": {
"rgb": [
238,
231,
211
]
},
"colors": [
{
"rgb": [
238,
231,
211
]
},
{
"rgb": [
26,
54,
128
]
},
{
"rgb": [
205,
73,
42
]
},
{
"rgb": [
181,
214,
55
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/a78761d6-1293-4a55-8fa1-b4b4be23ebbf.jpg",
"https://assets.runware.ai/assets/inputs/dcc801e0-254e-4f88-8092-9910cb4e5d1c.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "157c483d-0f5e-4db0-afee-8c9fe7273dfa",
"imageUUID": "cf828d89-d811-40fe-9d03-5d33640e534a",
"imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/4/ii/cf828d89-d811-40fe-9d03-5d33640e534a.jpg",
"seed": 995221171,
"cost": 0.105,
"outputs": {
"styleId": "52ab73f3-753d-4e1e-9de2-6a2dae28d754"
}
}
Create a finished 16:9 desktop wallpaper for an agricultural genomics studio. Show a cinematic cutaway view into a subterranean global seed vault carved deep inside a dark permafrost mountain. A monumental arched corridor recedes toward the right, lined with orderly banks of sealed seed drawers, cylindrical sample canisters, and a few recognizable dried grain heads and legumes displayed in glass archival cases. Above and around the vault, reveal elegant geological strata, fractured stone, ice crystals, roots, and a thin snowy ridgeline beneath a quiet polar night sky. Use the exact visual language established by the three references: sophisticated archival cyanotype printmaking, deep indigo fields, meticulous ivory engraved linework, dense scientific hatching, tactile paper grain, and selective copper-foil glints on doors, seeds, and structural edges. Panoramic composition with strong depth and rhythmic architecture; keep the leftmost quarter calmer and lower-detail for desktop icons. Quiet, secure, contemplative mood with museum-grade detail and polished wall-art quality. No people, lettering, labels, logos, interface elements, borders, or mockup framing.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles-pro',
positivePrompt: 'Create a finished 16:9 desktop wallpaper for an agricultural genomics studio. Show a cinematic cutaway view into a subterranean global seed vault carved deep inside a dark permafrost mountain. A monumental arched corridor recedes toward the right, lined with orderly banks of sealed seed drawers, cylindrical sample canisters, and a few recognizable dried grain heads and legumes displayed in glass archival cases. Above and around the vault, reveal elegant geological strata, fractured stone, ice crystals, roots, and a thin snowy ridgeline beneath a quiet polar night sky. Use the exact visual language established by the three references: sophisticated archival cyanotype printmaking, deep indigo fields, meticulous ivory engraved linework, dense scientific hatching, tactile paper grain, and selective copper-foil glints on doors, seeds, and structural edges. Panoramic composition with strong depth and rhythmic architecture; keep the leftmost quarter calmer and lower-detail for desktop icons. Quiet, secure, contemplative mood with museum-grade detail and polished wall-art quality. No people, lettering, labels, logos, interface elements, borders, or mockup framing.',
width: 2688,
height: 1536,
settings: {
backgroundColor: {
rgb: [
8,
22,
45
]
},
colors: [
{
rgb: [
8,
22,
45
]
},
{
rgb: [
22,
57,
91
]
},
{
rgb: [
226,
218,
190
]
},
{
rgb: [
174,
102,
58
]
},
{
rgb: [
92,
132,
148
]
}
],
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/deb8fa33-60fe-48a0-a34b-1ab31040cd79.jpg',
'https://assets.runware.ai/assets/inputs/98b5a733-325c-428d-8258-fff687e3ab71.jpg',
'https://assets.runware.ai/assets/inputs/eb726725-110d-4868-bbb0-9330b7eabc70.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished 16:9 desktop wallpaper for an agricultural genomics studio. Show a cinematic cutaway view into a subterranean global seed vault carved deep inside a dark permafrost mountain. A monumental arched corridor recedes toward the right, lined with orderly banks of sealed seed drawers, cylindrical sample canisters, and a few recognizable dried grain heads and legumes displayed in glass archival cases. Above and around the vault, reveal elegant geological strata, fractured stone, ice crystals, roots, and a thin snowy ridgeline beneath a quiet polar night sky. Use the exact visual language established by the three references: sophisticated archival cyanotype printmaking, deep indigo fields, meticulous ivory engraved linework, dense scientific hatching, tactile paper grain, and selective copper-foil glints on doors, seeds, and structural edges. Panoramic composition with strong depth and rhythmic architecture; keep the leftmost quarter calmer and lower-detail for desktop icons. Quiet, secure, contemplative mood with museum-grade detail and polished wall-art quality. No people, lettering, labels, logos, interface elements, borders, or mockup framing.",
"width": 2688,
"height": 1536,
"settings": {
"backgroundColor": {
"rgb": [
8,
22,
45
]
},
"colors": [
{
"rgb": [
8,
22,
45
]
},
{
"rgb": [
22,
57,
91
]
},
{
"rgb": [
226,
218,
190
]
},
{
"rgb": [
174,
102,
58
]
},
{
"rgb": [
92,
132,
148
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/deb8fa33-60fe-48a0-a34b-1ab31040cd79.jpg",
"https://assets.runware.ai/assets/inputs/98b5a733-325c-428d-8258-fff687e3ab71.jpg",
"https://assets.runware.ai/assets/inputs/eb726725-110d-4868-bbb0-9330b7eabc70.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "a031b0c5-de83-4606-a468-b82df31955e6",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished 16:9 desktop wallpaper for an agricultural genomics studio. Show a cinematic cutaway view into a subterranean global seed vault carved deep inside a dark permafrost mountain. A monumental arched corridor recedes toward the right, lined with orderly banks of sealed seed drawers, cylindrical sample canisters, and a few recognizable dried grain heads and legumes displayed in glass archival cases. Above and around the vault, reveal elegant geological strata, fractured stone, ice crystals, roots, and a thin snowy ridgeline beneath a quiet polar night sky. Use the exact visual language established by the three references: sophisticated archival cyanotype printmaking, deep indigo fields, meticulous ivory engraved linework, dense scientific hatching, tactile paper grain, and selective copper-foil glints on doors, seeds, and structural edges. Panoramic composition with strong depth and rhythmic architecture; keep the leftmost quarter calmer and lower-detail for desktop icons. Quiet, secure, contemplative mood with museum-grade detail and polished wall-art quality. No people, lettering, labels, logos, interface elements, borders, or mockup framing.",
"width": 2688,
"height": 1536,
"settings": {
"backgroundColor": {
"rgb": [
8,
22,
45
]
},
"colors": [
{
"rgb": [
8,
22,
45
]
},
{
"rgb": [
22,
57,
91
]
},
{
"rgb": [
226,
218,
190
]
},
{
"rgb": [
174,
102,
58
]
},
{
"rgb": [
92,
132,
148
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/deb8fa33-60fe-48a0-a34b-1ab31040cd79.jpg",
"https://assets.runware.ai/assets/inputs/98b5a733-325c-428d-8258-fff687e3ab71.jpg",
"https://assets.runware.ai/assets/inputs/eb726725-110d-4868-bbb0-9330b7eabc70.jpg"
]
}
}
]'runware run recraft:v4@styles-pro \
positivePrompt="Create a finished 16:9 desktop wallpaper for an agricultural genomics studio. Show a cinematic cutaway view into a subterranean global seed vault carved deep inside a dark permafrost mountain. A monumental arched corridor recedes toward the right, lined with orderly banks of sealed seed drawers, cylindrical sample canisters, and a few recognizable dried grain heads and legumes displayed in glass archival cases. Above and around the vault, reveal elegant geological strata, fractured stone, ice crystals, roots, and a thin snowy ridgeline beneath a quiet polar night sky. Use the exact visual language established by the three references: sophisticated archival cyanotype printmaking, deep indigo fields, meticulous ivory engraved linework, dense scientific hatching, tactile paper grain, and selective copper-foil glints on doors, seeds, and structural edges. Panoramic composition with strong depth and rhythmic architecture; keep the leftmost quarter calmer and lower-detail for desktop icons. Quiet, secure, contemplative mood with museum-grade detail and polished wall-art quality. No people, lettering, labels, logos, interface elements, borders, or mockup framing." \
width=2688 \
height=1536 \
settings.backgroundColor.rgb.0=8 \
settings.backgroundColor.rgb.1=22 \
settings.backgroundColor.rgb.2=45 \
settings.colors.0.rgb.0=8 \
settings.colors.0.rgb.1=22 \
settings.colors.0.rgb.2=45 \
settings.colors.1.rgb.0=22 \
settings.colors.1.rgb.1=57 \
settings.colors.1.rgb.2=91 \
settings.colors.2.rgb.0=226 \
settings.colors.2.rgb.1=218 \
settings.colors.2.rgb.2=190 \
settings.colors.3.rgb.0=174 \
settings.colors.3.rgb.1=102 \
settings.colors.3.rgb.2=58 \
settings.colors.4.rgb.0=92 \
settings.colors.4.rgb.1=132 \
settings.colors.4.rgb.2=148 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/deb8fa33-60fe-48a0-a34b-1ab31040cd79.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/98b5a733-325c-428d-8258-fff687e3ab71.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/eb726725-110d-4868-bbb0-9330b7eabc70.jpg{
"taskType": "imageInference",
"taskUUID": "a031b0c5-de83-4606-a468-b82df31955e6",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Create a finished 16:9 desktop wallpaper for an agricultural genomics studio. Show a cinematic cutaway view into a subterranean global seed vault carved deep inside a dark permafrost mountain. A monumental arched corridor recedes toward the right, lined with orderly banks of sealed seed drawers, cylindrical sample canisters, and a few recognizable dried grain heads and legumes displayed in glass archival cases. Above and around the vault, reveal elegant geological strata, fractured stone, ice crystals, roots, and a thin snowy ridgeline beneath a quiet polar night sky. Use the exact visual language established by the three references: sophisticated archival cyanotype printmaking, deep indigo fields, meticulous ivory engraved linework, dense scientific hatching, tactile paper grain, and selective copper-foil glints on doors, seeds, and structural edges. Panoramic composition with strong depth and rhythmic architecture; keep the leftmost quarter calmer and lower-detail for desktop icons. Quiet, secure, contemplative mood with museum-grade detail and polished wall-art quality. No people, lettering, labels, logos, interface elements, borders, or mockup framing.",
"width": 2688,
"height": 1536,
"settings": {
"backgroundColor": {
"rgb": [
8,
22,
45
]
},
"colors": [
{
"rgb": [
8,
22,
45
]
},
{
"rgb": [
22,
57,
91
]
},
{
"rgb": [
226,
218,
190
]
},
{
"rgb": [
174,
102,
58
]
},
{
"rgb": [
92,
132,
148
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/deb8fa33-60fe-48a0-a34b-1ab31040cd79.jpg",
"https://assets.runware.ai/assets/inputs/98b5a733-325c-428d-8258-fff687e3ab71.jpg",
"https://assets.runware.ai/assets/inputs/eb726725-110d-4868-bbb0-9330b7eabc70.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "a031b0c5-de83-4606-a468-b82df31955e6",
"imageUUID": "6df39b1b-6d2f-4ae9-a344-621d4b97fe43",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/4/ii/6df39b1b-6d2f-4ae9-a344-621d4b97fe43.jpg",
"seed": 1322158232,
"cost": 0.105,
"outputs": {
"styleId": "31d1099a-406e-420e-9060-19a2742c1ab9"
}
}
Finished vertical menu hero photograph for the winter dining program aboard a luxury Arctic sleeper train. Center a refined main course of juniper-smoked Arctic char with crisp skin, a compact golden potato rosti, charred baby leeks, pickled cloudberries, delicate dill tips, and a restrained beurre blanc on handmade matte-black stoneware. Place the dish on charcoal linen at a window table inside a vintage dark-wood dining car; include brushed silver cutlery and a softly glowing brass table lamp as understated context. Beyond the window, show a snow-covered boreal landscape passing through blue polar twilight with gentle motion blur. Intimate three-quarter camera angle, dish fully visible, appetizing realistic portions, precise culinary detail, natural moisture and texture, cool blue ambient window light balanced by warm tungsten highlights, deep controlled shadows, shallow depth of field, premium editorial food photography, subtle analog grain, sophisticated and quiet composition. No people, no lettering, no logo, no menu card, no packaging.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles-pro',
positivePrompt: 'Finished vertical menu hero photograph for the winter dining program aboard a luxury Arctic sleeper train. Center a refined main course of juniper-smoked Arctic char with crisp skin, a compact golden potato rosti, charred baby leeks, pickled cloudberries, delicate dill tips, and a restrained beurre blanc on handmade matte-black stoneware. Place the dish on charcoal linen at a window table inside a vintage dark-wood dining car; include brushed silver cutlery and a softly glowing brass table lamp as understated context. Beyond the window, show a snow-covered boreal landscape passing through blue polar twilight with gentle motion blur. Intimate three-quarter camera angle, dish fully visible, appetizing realistic portions, precise culinary detail, natural moisture and texture, cool blue ambient window light balanced by warm tungsten highlights, deep controlled shadows, shallow depth of field, premium editorial food photography, subtle analog grain, sophisticated and quiet composition. No people, no lettering, no logo, no menu card, no packaging.',
width: 1792,
height: 2304,
settings: {
styleMatch: 'precise',
backgroundColor: {
rgb: [
21,
28,
32
]
},
colors: [
{
rgb: [
23,
31,
36
]
},
{
rgb: [
70,
96,
108
]
},
{
rgb: [
188,
137,
75
]
},
{
rgb: [
201,
168,
72
]
},
{
rgb: [
224,
218,
201
]
}
]
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/0a5ea8c9-c52d-4868-957f-22763a641967.jpg',
'https://assets.runware.ai/assets/inputs/2265748a-edd7-4bb9-98e8-50e20c5b2d99.jpg',
'https://assets.runware.ai/assets/inputs/b22dff3d-c953-4a39-9471-5df203e2333c.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "recraft:v4@styles-pro",
"positivePrompt": "Finished vertical menu hero photograph for the winter dining program aboard a luxury Arctic sleeper train. Center a refined main course of juniper-smoked Arctic char with crisp skin, a compact golden potato rosti, charred baby leeks, pickled cloudberries, delicate dill tips, and a restrained beurre blanc on handmade matte-black stoneware. Place the dish on charcoal linen at a window table inside a vintage dark-wood dining car; include brushed silver cutlery and a softly glowing brass table lamp as understated context. Beyond the window, show a snow-covered boreal landscape passing through blue polar twilight with gentle motion blur. Intimate three-quarter camera angle, dish fully visible, appetizing realistic portions, precise culinary detail, natural moisture and texture, cool blue ambient window light balanced by warm tungsten highlights, deep controlled shadows, shallow depth of field, premium editorial food photography, subtle analog grain, sophisticated and quiet composition. No people, no lettering, no logo, no menu card, no packaging.",
"width": 1792,
"height": 2304,
"settings": {
"styleMatch": "precise",
"backgroundColor": {
"rgb": [
21,
28,
32
]
},
"colors": [
{
"rgb": [
23,
31,
36
]
},
{
"rgb": [
70,
96,
108
]
},
{
"rgb": [
188,
137,
75
]
},
{
"rgb": [
201,
168,
72
]
},
{
"rgb": [
224,
218,
201
]
}
]
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/0a5ea8c9-c52d-4868-957f-22763a641967.jpg",
"https://assets.runware.ai/assets/inputs/2265748a-edd7-4bb9-98e8-50e20c5b2d99.jpg",
"https://assets.runware.ai/assets/inputs/b22dff3d-c953-4a39-9471-5df203e2333c.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "247ba6d3-03de-483c-b4a1-3bef627603b5",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Finished vertical menu hero photograph for the winter dining program aboard a luxury Arctic sleeper train. Center a refined main course of juniper-smoked Arctic char with crisp skin, a compact golden potato rosti, charred baby leeks, pickled cloudberries, delicate dill tips, and a restrained beurre blanc on handmade matte-black stoneware. Place the dish on charcoal linen at a window table inside a vintage dark-wood dining car; include brushed silver cutlery and a softly glowing brass table lamp as understated context. Beyond the window, show a snow-covered boreal landscape passing through blue polar twilight with gentle motion blur. Intimate three-quarter camera angle, dish fully visible, appetizing realistic portions, precise culinary detail, natural moisture and texture, cool blue ambient window light balanced by warm tungsten highlights, deep controlled shadows, shallow depth of field, premium editorial food photography, subtle analog grain, sophisticated and quiet composition. No people, no lettering, no logo, no menu card, no packaging.",
"width": 1792,
"height": 2304,
"settings": {
"styleMatch": "precise",
"backgroundColor": {
"rgb": [
21,
28,
32
]
},
"colors": [
{
"rgb": [
23,
31,
36
]
},
{
"rgb": [
70,
96,
108
]
},
{
"rgb": [
188,
137,
75
]
},
{
"rgb": [
201,
168,
72
]
},
{
"rgb": [
224,
218,
201
]
}
]
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/0a5ea8c9-c52d-4868-957f-22763a641967.jpg",
"https://assets.runware.ai/assets/inputs/2265748a-edd7-4bb9-98e8-50e20c5b2d99.jpg",
"https://assets.runware.ai/assets/inputs/b22dff3d-c953-4a39-9471-5df203e2333c.jpg"
]
}
}
]'runware run recraft:v4@styles-pro \
positivePrompt="Finished vertical menu hero photograph for the winter dining program aboard a luxury Arctic sleeper train. Center a refined main course of juniper-smoked Arctic char with crisp skin, a compact golden potato rosti, charred baby leeks, pickled cloudberries, delicate dill tips, and a restrained beurre blanc on handmade matte-black stoneware. Place the dish on charcoal linen at a window table inside a vintage dark-wood dining car; include brushed silver cutlery and a softly glowing brass table lamp as understated context. Beyond the window, show a snow-covered boreal landscape passing through blue polar twilight with gentle motion blur. Intimate three-quarter camera angle, dish fully visible, appetizing realistic portions, precise culinary detail, natural moisture and texture, cool blue ambient window light balanced by warm tungsten highlights, deep controlled shadows, shallow depth of field, premium editorial food photography, subtle analog grain, sophisticated and quiet composition. No people, no lettering, no logo, no menu card, no packaging." \
width=1792 \
height=2304 \
settings.styleMatch=precise \
settings.backgroundColor.rgb.0=21 \
settings.backgroundColor.rgb.1=28 \
settings.backgroundColor.rgb.2=32 \
settings.colors.0.rgb.0=23 \
settings.colors.0.rgb.1=31 \
settings.colors.0.rgb.2=36 \
settings.colors.1.rgb.0=70 \
settings.colors.1.rgb.1=96 \
settings.colors.1.rgb.2=108 \
settings.colors.2.rgb.0=188 \
settings.colors.2.rgb.1=137 \
settings.colors.2.rgb.2=75 \
settings.colors.3.rgb.0=201 \
settings.colors.3.rgb.1=168 \
settings.colors.3.rgb.2=72 \
settings.colors.4.rgb.0=224 \
settings.colors.4.rgb.1=218 \
settings.colors.4.rgb.2=201 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/0a5ea8c9-c52d-4868-957f-22763a641967.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/2265748a-edd7-4bb9-98e8-50e20c5b2d99.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/b22dff3d-c953-4a39-9471-5df203e2333c.jpg{
"taskType": "imageInference",
"taskUUID": "247ba6d3-03de-483c-b4a1-3bef627603b5",
"model": "recraft:v4@styles-pro",
"positivePrompt": "Finished vertical menu hero photograph for the winter dining program aboard a luxury Arctic sleeper train. Center a refined main course of juniper-smoked Arctic char with crisp skin, a compact golden potato rosti, charred baby leeks, pickled cloudberries, delicate dill tips, and a restrained beurre blanc on handmade matte-black stoneware. Place the dish on charcoal linen at a window table inside a vintage dark-wood dining car; include brushed silver cutlery and a softly glowing brass table lamp as understated context. Beyond the window, show a snow-covered boreal landscape passing through blue polar twilight with gentle motion blur. Intimate three-quarter camera angle, dish fully visible, appetizing realistic portions, precise culinary detail, natural moisture and texture, cool blue ambient window light balanced by warm tungsten highlights, deep controlled shadows, shallow depth of field, premium editorial food photography, subtle analog grain, sophisticated and quiet composition. No people, no lettering, no logo, no menu card, no packaging.",
"width": 1792,
"height": 2304,
"settings": {
"styleMatch": "precise",
"backgroundColor": {
"rgb": [
21,
28,
32
]
},
"colors": [
{
"rgb": [
23,
31,
36
]
},
{
"rgb": [
70,
96,
108
]
},
{
"rgb": [
188,
137,
75
]
},
{
"rgb": [
201,
168,
72
]
},
{
"rgb": [
224,
218,
201
]
}
]
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/0a5ea8c9-c52d-4868-957f-22763a641967.jpg",
"https://assets.runware.ai/assets/inputs/2265748a-edd7-4bb9-98e8-50e20c5b2d99.jpg",
"https://assets.runware.ai/assets/inputs/b22dff3d-c953-4a39-9471-5df203e2333c.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "247ba6d3-03de-483c-b4a1-3bef627603b5",
"imageUUID": "9e6dcf65-67c9-48b3-ae13-7b6270988cbb",
"imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/4/ii/9e6dcf65-67c9-48b3-ae13-7b6270988cbb.jpg",
"seed": 968146998,
"cost": 0.105,
"outputs": {
"styleId": "001f729d-4cf4-4da4-82ee-e4ab81a3f335"
}
}