Recraft V4

Recraft V4 is a professional-grade text-to-image model built for design and marketing workflows. It focuses on refined visual aesthetics, strong photorealism, and reliable brand control. The model delivers realistic skin rendering, natural textures, distinctive lighting, and well-structured compositions while avoiding common synthetic artifacts. It supports 2K image generation, color palette control, and explicit background color selection to help teams produce brand-consistent creative assets.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
text-to-image
Technical Apiary Workwear Lookbook$0.04~14s
High-end editorial fashion lookbook photograph for a design-led professional apiary workwear collection. Full-length portrait of one androgynous adult model standing in a confident, relaxed contrapposto pose, centered with ample negative space, facing the camera. The model wears a meticulously tailored bone-white ripstop beekeeping jumpsuit with articulated knees, reinforced utility pockets, precise tonal stitching, a sculptural detachable black mesh veil with a wide circular brim, cobalt-blue harness webbing, acid-chartreuse gauntlet gloves, and polished oxblood rubber field boots. A brushed stainless-steel bee smoker hangs naturally from one hand as a restrained occupational prop. Garments must appear functional, premium, and realistically constructed, with crisp seams, believable closures, subtle fabric creasing, visible mesh texture, and accurate human anatomy. Deep aubergine seamless studio cyclorama, matte floor, clean background with no set clutter. Hard directional key light creates a sharp geometric shadow across the backdrop, balanced by soft frontal fill for natural skin and clear garment detail. Sophisticated utilitarian art direction, contemporary European workwear catalog, polished composition, medium-format fashion photography, realistic skin texture, controlled color blocking, crisp focus from veil to boots, no bees, no flowers, no text, no logos, no watermark, no collage, no border.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@0',
positivePrompt: 'High-end editorial fashion lookbook photograph for a design-led professional apiary workwear collection. Full-length portrait of one androgynous adult model standing in a confident, relaxed contrapposto pose, centered with ample negative space, facing the camera. The model wears a meticulously tailored bone-white ripstop beekeeping jumpsuit with articulated knees, reinforced utility pockets, precise tonal stitching, a sculptural detachable black mesh veil with a wide circular brim, cobalt-blue harness webbing, acid-chartreuse gauntlet gloves, and polished oxblood rubber field boots. A brushed stainless-steel bee smoker hangs naturally from one hand as a restrained occupational prop. Garments must appear functional, premium, and realistically constructed, with crisp seams, believable closures, subtle fabric creasing, visible mesh texture, and accurate human anatomy. Deep aubergine seamless studio cyclorama, matte floor, clean background with no set clutter. Hard directional key light creates a sharp geometric shadow across the backdrop, balanced by soft frontal fill for natural skin and clear garment detail. Sophisticated utilitarian art direction, contemporary European workwear catalog, polished composition, medium-format fashion photography, realistic skin texture, controlled color blocking, crisp focus from veil to boots, no bees, no flowers, no text, no logos, no watermark, no collage, no border.',
width: 1024,
height: 1024,
providerSettings: {
recraft: {
backgroundColor: {
rgb: [
245,
242,
234
]
},
colors: [
{
rgb: [
22,
42,
66
]
},
{
rgb: [
235,
99,
82
]
},
{
rgb: [
87,
181,
166
]
}
]
}
}
})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@0",
"positivePrompt": "High-end editorial fashion lookbook photograph for a design-led professional apiary workwear collection. Full-length portrait of one androgynous adult model standing in a confident, relaxed contrapposto pose, centered with ample negative space, facing the camera. The model wears a meticulously tailored bone-white ripstop beekeeping jumpsuit with articulated knees, reinforced utility pockets, precise tonal stitching, a sculptural detachable black mesh veil with a wide circular brim, cobalt-blue harness webbing, acid-chartreuse gauntlet gloves, and polished oxblood rubber field boots. A brushed stainless-steel bee smoker hangs naturally from one hand as a restrained occupational prop. Garments must appear functional, premium, and realistically constructed, with crisp seams, believable closures, subtle fabric creasing, visible mesh texture, and accurate human anatomy. Deep aubergine seamless studio cyclorama, matte floor, clean background with no set clutter. Hard directional key light creates a sharp geometric shadow across the backdrop, balanced by soft frontal fill for natural skin and clear garment detail. Sophisticated utilitarian art direction, contemporary European workwear catalog, polished composition, medium-format fashion photography, realistic skin texture, controlled color blocking, crisp focus from veil to boots, no bees, no flowers, no text, no logos, no watermark, no collage, no border.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "9967fe4a-70bc-43d8-8a32-1f0cae54915a",
"model": "recraft:v4@0",
"positivePrompt": "High-end editorial fashion lookbook photograph for a design-led professional apiary workwear collection. Full-length portrait of one androgynous adult model standing in a confident, relaxed contrapposto pose, centered with ample negative space, facing the camera. The model wears a meticulously tailored bone-white ripstop beekeeping jumpsuit with articulated knees, reinforced utility pockets, precise tonal stitching, a sculptural detachable black mesh veil with a wide circular brim, cobalt-blue harness webbing, acid-chartreuse gauntlet gloves, and polished oxblood rubber field boots. A brushed stainless-steel bee smoker hangs naturally from one hand as a restrained occupational prop. Garments must appear functional, premium, and realistically constructed, with crisp seams, believable closures, subtle fabric creasing, visible mesh texture, and accurate human anatomy. Deep aubergine seamless studio cyclorama, matte floor, clean background with no set clutter. Hard directional key light creates a sharp geometric shadow across the backdrop, balanced by soft frontal fill for natural skin and clear garment detail. Sophisticated utilitarian art direction, contemporary European workwear catalog, polished composition, medium-format fashion photography, realistic skin texture, controlled color blocking, crisp focus from veil to boots, no bees, no flowers, no text, no logos, no watermark, no collage, no border.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
}
]'runware run recraft:v4@0 \
positivePrompt="High-end editorial fashion lookbook photograph for a design-led professional apiary workwear collection. Full-length portrait of one androgynous adult model standing in a confident, relaxed contrapposto pose, centered with ample negative space, facing the camera. The model wears a meticulously tailored bone-white ripstop beekeeping jumpsuit with articulated knees, reinforced utility pockets, precise tonal stitching, a sculptural detachable black mesh veil with a wide circular brim, cobalt-blue harness webbing, acid-chartreuse gauntlet gloves, and polished oxblood rubber field boots. A brushed stainless-steel bee smoker hangs naturally from one hand as a restrained occupational prop. Garments must appear functional, premium, and realistically constructed, with crisp seams, believable closures, subtle fabric creasing, visible mesh texture, and accurate human anatomy. Deep aubergine seamless studio cyclorama, matte floor, clean background with no set clutter. Hard directional key light creates a sharp geometric shadow across the backdrop, balanced by soft frontal fill for natural skin and clear garment detail. Sophisticated utilitarian art direction, contemporary European workwear catalog, polished composition, medium-format fashion photography, realistic skin texture, controlled color blocking, crisp focus from veil to boots, no bees, no flowers, no text, no logos, no watermark, no collage, no border." \
width=1024 \
height=1024 \
providerSettings.recraft.backgroundColor.rgb.0=245 \
providerSettings.recraft.backgroundColor.rgb.1=242 \
providerSettings.recraft.backgroundColor.rgb.2=234 \
providerSettings.recraft.colors.0.rgb.0=22 \
providerSettings.recraft.colors.0.rgb.1=42 \
providerSettings.recraft.colors.0.rgb.2=66 \
providerSettings.recraft.colors.1.rgb.0=235 \
providerSettings.recraft.colors.1.rgb.1=99 \
providerSettings.recraft.colors.1.rgb.2=82 \
providerSettings.recraft.colors.2.rgb.0=87 \
providerSettings.recraft.colors.2.rgb.1=181 \
providerSettings.recraft.colors.2.rgb.2=166{
"taskType": "imageInference",
"taskUUID": "9967fe4a-70bc-43d8-8a32-1f0cae54915a",
"model": "recraft:v4@0",
"positivePrompt": "High-end editorial fashion lookbook photograph for a design-led professional apiary workwear collection. Full-length portrait of one androgynous adult model standing in a confident, relaxed contrapposto pose, centered with ample negative space, facing the camera. The model wears a meticulously tailored bone-white ripstop beekeeping jumpsuit with articulated knees, reinforced utility pockets, precise tonal stitching, a sculptural detachable black mesh veil with a wide circular brim, cobalt-blue harness webbing, acid-chartreuse gauntlet gloves, and polished oxblood rubber field boots. A brushed stainless-steel bee smoker hangs naturally from one hand as a restrained occupational prop. Garments must appear functional, premium, and realistically constructed, with crisp seams, believable closures, subtle fabric creasing, visible mesh texture, and accurate human anatomy. Deep aubergine seamless studio cyclorama, matte floor, clean background with no set clutter. Hard directional key light creates a sharp geometric shadow across the backdrop, balanced by soft frontal fill for natural skin and clear garment detail. Sophisticated utilitarian art direction, contemporary European workwear catalog, polished composition, medium-format fashion photography, realistic skin texture, controlled color blocking, crisp focus from veil to boots, no bees, no flowers, no text, no logos, no watermark, no collage, no border.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "9967fe4a-70bc-43d8-8a32-1f0cae54915a",
"imageUUID": "a386bb5e-ca23-4344-955e-cddb54fdd756",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/a386bb5e-ca23-4344-955e-cddb54fdd756.jpg",
"seed": 1068065557,
"cost": 0.04
}text-to-image
Subsea Cable Repair Video Thumbnail$0.04~16s
Design-forward square video thumbnail for a premium engineering documentary about deep-sea fiber-optic cable repair. A large white robotic submersible manipulator grips a severed black armored cable in the foreground, exposing a precise bundle of hair-thin glowing cyan optical fibers. Tiny suspended particles reveal the immense depth. In the middle distance, a compact repair ROV aims two sharp work lights through the darkness. Strong diagonal composition, oversized cable and claw readable instantly at thumbnail size, dramatic sense of scale, crisp mechanical detail, realistic metal, rubber, sediment, and glass-fiber textures. Refined editorial photorealism with subtle technical-illustration clarity. Deliberate restricted palette: abyssal navy background, electric cyan fiber glow, safety orange equipment accents, cool ivory work lights, small touches of muted steel gray. High contrast rim lighting, controlled volumetric beams, clean negative space in the upper left, polished documentary key art, tense and intelligent rather than fantastical. No people, no lettering, no numbers, no logos, no watermark, no interface, no border, no 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@0',
positivePrompt: 'Design-forward square video thumbnail for a premium engineering documentary about deep-sea fiber-optic cable repair. A large white robotic submersible manipulator grips a severed black armored cable in the foreground, exposing a precise bundle of hair-thin glowing cyan optical fibers. Tiny suspended particles reveal the immense depth. In the middle distance, a compact repair ROV aims two sharp work lights through the darkness. Strong diagonal composition, oversized cable and claw readable instantly at thumbnail size, dramatic sense of scale, crisp mechanical detail, realistic metal, rubber, sediment, and glass-fiber textures. Refined editorial photorealism with subtle technical-illustration clarity. Deliberate restricted palette: abyssal navy background, electric cyan fiber glow, safety orange equipment accents, cool ivory work lights, small touches of muted steel gray. High contrast rim lighting, controlled volumetric beams, clean negative space in the upper left, polished documentary key art, tense and intelligent rather than fantastical. No people, no lettering, no numbers, no logos, no watermark, no interface, no border, no mockup.',
width: 1024,
height: 1024,
providerSettings: {
recraft: {
backgroundColor: {
rgb: [
245,
242,
234
]
},
colors: [
{
rgb: [
22,
42,
66
]
},
{
rgb: [
235,
99,
82
]
},
{
rgb: [
87,
181,
166
]
}
]
}
}
})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@0",
"positivePrompt": "Design-forward square video thumbnail for a premium engineering documentary about deep-sea fiber-optic cable repair. A large white robotic submersible manipulator grips a severed black armored cable in the foreground, exposing a precise bundle of hair-thin glowing cyan optical fibers. Tiny suspended particles reveal the immense depth. In the middle distance, a compact repair ROV aims two sharp work lights through the darkness. Strong diagonal composition, oversized cable and claw readable instantly at thumbnail size, dramatic sense of scale, crisp mechanical detail, realistic metal, rubber, sediment, and glass-fiber textures. Refined editorial photorealism with subtle technical-illustration clarity. Deliberate restricted palette: abyssal navy background, electric cyan fiber glow, safety orange equipment accents, cool ivory work lights, small touches of muted steel gray. High contrast rim lighting, controlled volumetric beams, clean negative space in the upper left, polished documentary key art, tense and intelligent rather than fantastical. No people, no lettering, no numbers, no logos, no watermark, no interface, no border, no mockup.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "07c7a613-45ef-4b26-90f3-9731733eba26",
"model": "recraft:v4@0",
"positivePrompt": "Design-forward square video thumbnail for a premium engineering documentary about deep-sea fiber-optic cable repair. A large white robotic submersible manipulator grips a severed black armored cable in the foreground, exposing a precise bundle of hair-thin glowing cyan optical fibers. Tiny suspended particles reveal the immense depth. In the middle distance, a compact repair ROV aims two sharp work lights through the darkness. Strong diagonal composition, oversized cable and claw readable instantly at thumbnail size, dramatic sense of scale, crisp mechanical detail, realistic metal, rubber, sediment, and glass-fiber textures. Refined editorial photorealism with subtle technical-illustration clarity. Deliberate restricted palette: abyssal navy background, electric cyan fiber glow, safety orange equipment accents, cool ivory work lights, small touches of muted steel gray. High contrast rim lighting, controlled volumetric beams, clean negative space in the upper left, polished documentary key art, tense and intelligent rather than fantastical. No people, no lettering, no numbers, no logos, no watermark, no interface, no border, no mockup.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
}
]'runware run recraft:v4@0 \
positivePrompt="Design-forward square video thumbnail for a premium engineering documentary about deep-sea fiber-optic cable repair. A large white robotic submersible manipulator grips a severed black armored cable in the foreground, exposing a precise bundle of hair-thin glowing cyan optical fibers. Tiny suspended particles reveal the immense depth. In the middle distance, a compact repair ROV aims two sharp work lights through the darkness. Strong diagonal composition, oversized cable and claw readable instantly at thumbnail size, dramatic sense of scale, crisp mechanical detail, realistic metal, rubber, sediment, and glass-fiber textures. Refined editorial photorealism with subtle technical-illustration clarity. Deliberate restricted palette: abyssal navy background, electric cyan fiber glow, safety orange equipment accents, cool ivory work lights, small touches of muted steel gray. High contrast rim lighting, controlled volumetric beams, clean negative space in the upper left, polished documentary key art, tense and intelligent rather than fantastical. No people, no lettering, no numbers, no logos, no watermark, no interface, no border, no mockup." \
width=1024 \
height=1024 \
providerSettings.recraft.backgroundColor.rgb.0=245 \
providerSettings.recraft.backgroundColor.rgb.1=242 \
providerSettings.recraft.backgroundColor.rgb.2=234 \
providerSettings.recraft.colors.0.rgb.0=22 \
providerSettings.recraft.colors.0.rgb.1=42 \
providerSettings.recraft.colors.0.rgb.2=66 \
providerSettings.recraft.colors.1.rgb.0=235 \
providerSettings.recraft.colors.1.rgb.1=99 \
providerSettings.recraft.colors.1.rgb.2=82 \
providerSettings.recraft.colors.2.rgb.0=87 \
providerSettings.recraft.colors.2.rgb.1=181 \
providerSettings.recraft.colors.2.rgb.2=166{
"taskType": "imageInference",
"taskUUID": "07c7a613-45ef-4b26-90f3-9731733eba26",
"model": "recraft:v4@0",
"positivePrompt": "Design-forward square video thumbnail for a premium engineering documentary about deep-sea fiber-optic cable repair. A large white robotic submersible manipulator grips a severed black armored cable in the foreground, exposing a precise bundle of hair-thin glowing cyan optical fibers. Tiny suspended particles reveal the immense depth. In the middle distance, a compact repair ROV aims two sharp work lights through the darkness. Strong diagonal composition, oversized cable and claw readable instantly at thumbnail size, dramatic sense of scale, crisp mechanical detail, realistic metal, rubber, sediment, and glass-fiber textures. Refined editorial photorealism with subtle technical-illustration clarity. Deliberate restricted palette: abyssal navy background, electric cyan fiber glow, safety orange equipment accents, cool ivory work lights, small touches of muted steel gray. High contrast rim lighting, controlled volumetric beams, clean negative space in the upper left, polished documentary key art, tense and intelligent rather than fantastical. No people, no lettering, no numbers, no logos, no watermark, no interface, no border, no mockup.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "07c7a613-45ef-4b26-90f3-9731733eba26",
"imageUUID": "aeb83c4f-5710-46e9-9017-782027967946",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/aeb83c4f-5710-46e9-9017-782027967946.jpg",
"seed": 595247306,
"cost": 0.04
}text-to-image
Urban Infrastructure Magazine Cover$0.04~13s
Finished square magazine cover, edge-to-edge artwork rather than a physical mockup. Create a sophisticated editorial cover for NIGHT SHIFT, a publication about the hidden systems and workers that keep cities running after dark. Center the composition on a precise axonometric cutaway of one dense urban block at midnight: street level with a nearly empty intersection, glowing bus shelter, delivery cyclist and sanitation crew; below ground, clearly layered subway tunnel, water main, electrical conduit, fiber cables and maintenance corridors, with tiny workers performing believable tasks. Render the infrastructure as a crisp architectural editorial illustration combining clean vector geometry, subtle dimensional shading and meticulous technical detail. Strong visual hierarchy, generous negative space, disciplined grid and polished contemporary art direction. Midnight navy field with safety orange machinery, electric cyan utility lines, warm ivory structures and restrained signal-red accents. Dramatic pools of artificial light punctuate the dark composition. Add only this clean, legible cover typography: large condensed sans-serif masthead “NIGHT SHIFT” across the top; main feature line “THE INVISIBLE CITY” in the lower-left; small line “ISSUE 07 / INFRASTRUCTURE” beneath it. Typography should feel integrated, sharply typeset and editorial, with no other words, logos, barcodes or decorative filler. Premium independent architecture and urbanism magazine aesthetic, intelligent, technical, cinematic, crisp print-ready detail.
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@0',
positivePrompt: 'Finished square magazine cover, edge-to-edge artwork rather than a physical mockup. Create a sophisticated editorial cover for NIGHT SHIFT, a publication about the hidden systems and workers that keep cities running after dark. Center the composition on a precise axonometric cutaway of one dense urban block at midnight: street level with a nearly empty intersection, glowing bus shelter, delivery cyclist and sanitation crew; below ground, clearly layered subway tunnel, water main, electrical conduit, fiber cables and maintenance corridors, with tiny workers performing believable tasks. Render the infrastructure as a crisp architectural editorial illustration combining clean vector geometry, subtle dimensional shading and meticulous technical detail. Strong visual hierarchy, generous negative space, disciplined grid and polished contemporary art direction. Midnight navy field with safety orange machinery, electric cyan utility lines, warm ivory structures and restrained signal-red accents. Dramatic pools of artificial light punctuate the dark composition. Add only this clean, legible cover typography: large condensed sans-serif masthead “NIGHT SHIFT” across the top; main feature line “THE INVISIBLE CITY” in the lower-left; small line “ISSUE 07 / INFRASTRUCTURE” beneath it. Typography should feel integrated, sharply typeset and editorial, with no other words, logos, barcodes or decorative filler. Premium independent architecture and urbanism magazine aesthetic, intelligent, technical, cinematic, crisp print-ready detail.',
width: 1024,
height: 1024,
providerSettings: {
recraft: {
backgroundColor: {
rgb: [
245,
242,
234
]
},
colors: [
{
rgb: [
22,
42,
66
]
},
{
rgb: [
235,
99,
82
]
},
{
rgb: [
87,
181,
166
]
}
]
}
}
})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@0",
"positivePrompt": "Finished square magazine cover, edge-to-edge artwork rather than a physical mockup. Create a sophisticated editorial cover for NIGHT SHIFT, a publication about the hidden systems and workers that keep cities running after dark. Center the composition on a precise axonometric cutaway of one dense urban block at midnight: street level with a nearly empty intersection, glowing bus shelter, delivery cyclist and sanitation crew; below ground, clearly layered subway tunnel, water main, electrical conduit, fiber cables and maintenance corridors, with tiny workers performing believable tasks. Render the infrastructure as a crisp architectural editorial illustration combining clean vector geometry, subtle dimensional shading and meticulous technical detail. Strong visual hierarchy, generous negative space, disciplined grid and polished contemporary art direction. Midnight navy field with safety orange machinery, electric cyan utility lines, warm ivory structures and restrained signal-red accents. Dramatic pools of artificial light punctuate the dark composition. Add only this clean, legible cover typography: large condensed sans-serif masthead “NIGHT SHIFT” across the top; main feature line “THE INVISIBLE CITY” in the lower-left; small line “ISSUE 07 / INFRASTRUCTURE” beneath it. Typography should feel integrated, sharply typeset and editorial, with no other words, logos, barcodes or decorative filler. Premium independent architecture and urbanism magazine aesthetic, intelligent, technical, cinematic, crisp print-ready detail.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "c4978b99-74d0-4815-a757-2cbb03067a15",
"model": "recraft:v4@0",
"positivePrompt": "Finished square magazine cover, edge-to-edge artwork rather than a physical mockup. Create a sophisticated editorial cover for NIGHT SHIFT, a publication about the hidden systems and workers that keep cities running after dark. Center the composition on a precise axonometric cutaway of one dense urban block at midnight: street level with a nearly empty intersection, glowing bus shelter, delivery cyclist and sanitation crew; below ground, clearly layered subway tunnel, water main, electrical conduit, fiber cables and maintenance corridors, with tiny workers performing believable tasks. Render the infrastructure as a crisp architectural editorial illustration combining clean vector geometry, subtle dimensional shading and meticulous technical detail. Strong visual hierarchy, generous negative space, disciplined grid and polished contemporary art direction. Midnight navy field with safety orange machinery, electric cyan utility lines, warm ivory structures and restrained signal-red accents. Dramatic pools of artificial light punctuate the dark composition. Add only this clean, legible cover typography: large condensed sans-serif masthead “NIGHT SHIFT” across the top; main feature line “THE INVISIBLE CITY” in the lower-left; small line “ISSUE 07 / INFRASTRUCTURE” beneath it. Typography should feel integrated, sharply typeset and editorial, with no other words, logos, barcodes or decorative filler. Premium independent architecture and urbanism magazine aesthetic, intelligent, technical, cinematic, crisp print-ready detail.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
}
]'runware run recraft:v4@0 \
positivePrompt="Finished square magazine cover, edge-to-edge artwork rather than a physical mockup. Create a sophisticated editorial cover for NIGHT SHIFT, a publication about the hidden systems and workers that keep cities running after dark. Center the composition on a precise axonometric cutaway of one dense urban block at midnight: street level with a nearly empty intersection, glowing bus shelter, delivery cyclist and sanitation crew; below ground, clearly layered subway tunnel, water main, electrical conduit, fiber cables and maintenance corridors, with tiny workers performing believable tasks. Render the infrastructure as a crisp architectural editorial illustration combining clean vector geometry, subtle dimensional shading and meticulous technical detail. Strong visual hierarchy, generous negative space, disciplined grid and polished contemporary art direction. Midnight navy field with safety orange machinery, electric cyan utility lines, warm ivory structures and restrained signal-red accents. Dramatic pools of artificial light punctuate the dark composition. Add only this clean, legible cover typography: large condensed sans-serif masthead “NIGHT SHIFT” across the top; main feature line “THE INVISIBLE CITY” in the lower-left; small line “ISSUE 07 / INFRASTRUCTURE” beneath it. Typography should feel integrated, sharply typeset and editorial, with no other words, logos, barcodes or decorative filler. Premium independent architecture and urbanism magazine aesthetic, intelligent, technical, cinematic, crisp print-ready detail." \
width=1024 \
height=1024 \
providerSettings.recraft.backgroundColor.rgb.0=245 \
providerSettings.recraft.backgroundColor.rgb.1=242 \
providerSettings.recraft.backgroundColor.rgb.2=234 \
providerSettings.recraft.colors.0.rgb.0=22 \
providerSettings.recraft.colors.0.rgb.1=42 \
providerSettings.recraft.colors.0.rgb.2=66 \
providerSettings.recraft.colors.1.rgb.0=235 \
providerSettings.recraft.colors.1.rgb.1=99 \
providerSettings.recraft.colors.1.rgb.2=82 \
providerSettings.recraft.colors.2.rgb.0=87 \
providerSettings.recraft.colors.2.rgb.1=181 \
providerSettings.recraft.colors.2.rgb.2=166{
"taskType": "imageInference",
"taskUUID": "c4978b99-74d0-4815-a757-2cbb03067a15",
"model": "recraft:v4@0",
"positivePrompt": "Finished square magazine cover, edge-to-edge artwork rather than a physical mockup. Create a sophisticated editorial cover for NIGHT SHIFT, a publication about the hidden systems and workers that keep cities running after dark. Center the composition on a precise axonometric cutaway of one dense urban block at midnight: street level with a nearly empty intersection, glowing bus shelter, delivery cyclist and sanitation crew; below ground, clearly layered subway tunnel, water main, electrical conduit, fiber cables and maintenance corridors, with tiny workers performing believable tasks. Render the infrastructure as a crisp architectural editorial illustration combining clean vector geometry, subtle dimensional shading and meticulous technical detail. Strong visual hierarchy, generous negative space, disciplined grid and polished contemporary art direction. Midnight navy field with safety orange machinery, electric cyan utility lines, warm ivory structures and restrained signal-red accents. Dramatic pools of artificial light punctuate the dark composition. Add only this clean, legible cover typography: large condensed sans-serif masthead “NIGHT SHIFT” across the top; main feature line “THE INVISIBLE CITY” in the lower-left; small line “ISSUE 07 / INFRASTRUCTURE” beneath it. Typography should feel integrated, sharply typeset and editorial, with no other words, logos, barcodes or decorative filler. Premium independent architecture and urbanism magazine aesthetic, intelligent, technical, cinematic, crisp print-ready detail.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "c4978b99-74d0-4815-a757-2cbb03067a15",
"imageUUID": "f8e92eaa-972e-4140-bc58-036af7ade852",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/f8e92eaa-972e-4140-bc58-036af7ade852.jpg",
"seed": 634129616,
"cost": 0.04
}text-to-image
CubeSat Deorbit Explainer Infographic$0.04~18s
Create a finished, design-forward square infographic titled “HOW A CUBESAT COMES HOME,” explaining the end-of-life deorbit process for a small satellite equipped with a drag sail. Use a sophisticated aerospace editorial style combining crisp vector geometry, precise technical illustration, subtle dimensional shading, and polished screen-print texture. Deep midnight-navy background with a restrained palette of electric cyan, acid lime, safety orange, warm ivory, and muted steel blue. Composition: a large diagonal orbital path sweeps from the upper-left toward the curved edge of Earth in the lower-right. Show one consistent CubeSat at four clearly separated stages along the path, connected by clean arrows and numbered circles. Stage 1: compact CubeSat in low Earth orbit, labeled “1 MISSION ENDS” with the short caption “SYSTEMS POWER DOWN.” Stage 2: the same CubeSat opening a large cross-shaped reflective drag sail, labeled “2 DEPLOY SAIL” with “A WIDER PROFILE MEETS THIN AIR.” Stage 3: the spacecraft following a tightening, descending orbit, labeled “3 ORBIT DECAYS” with “ATMOSPHERIC DRAG LOWERS ALTITUDE.” Stage 4: a small controlled-looking atmospheric breakup trail above Earth, labeled “4 CLEAN REENTRY” with “COMPONENTS BURN UP HIGH ABOVE THE SURFACE.” Include three subtle altitude bands around Earth labeled “LOW EARTH ORBIT,” “UPPER ATMOSPHERE,” and “REENTRY ZONE.” Add a compact footer key reading “DRAG SAIL • PASSIVE DEORBIT DEVICE” beside a simple sail icon. Make the hierarchy instantly understandable: bold condensed sans-serif title, large numbers, concise uppercase labels, very limited supporting copy, generous spacing, disciplined alignment, and strong contrast. Render the CubeSat with believable solar cells, metallic rails, hinges, antenna details, and a thin iridescent sail membrane. Earth should be a simplified scientific cutaway rather than a photorealistic globe, with narrow luminous atmospheric layers and sparse contour lines. Deliberate palette use: cyan for orbit paths and technical lines, acid lime for the deployed sail and stage numbers, orange only for the reentry trail, ivory for typography, steel blue for Earth. Crisp edges, accurate perspective, premium museum-science graphic quality, no logos, no app interface, no browser frame, no buttons, no decorative fantasy elements, no extra paragraphs, no clutter.
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@0',
positivePrompt: 'Create a finished, design-forward square infographic titled “HOW A CUBESAT COMES HOME,” explaining the end-of-life deorbit process for a small satellite equipped with a drag sail. Use a sophisticated aerospace editorial style combining crisp vector geometry, precise technical illustration, subtle dimensional shading, and polished screen-print texture. Deep midnight-navy background with a restrained palette of electric cyan, acid lime, safety orange, warm ivory, and muted steel blue.\n\nComposition: a large diagonal orbital path sweeps from the upper-left toward the curved edge of Earth in the lower-right. Show one consistent CubeSat at four clearly separated stages along the path, connected by clean arrows and numbered circles. Stage 1: compact CubeSat in low Earth orbit, labeled “1 MISSION ENDS” with the short caption “SYSTEMS POWER DOWN.” Stage 2: the same CubeSat opening a large cross-shaped reflective drag sail, labeled “2 DEPLOY SAIL” with “A WIDER PROFILE MEETS THIN AIR.” Stage 3: the spacecraft following a tightening, descending orbit, labeled “3 ORBIT DECAYS” with “ATMOSPHERIC DRAG LOWERS ALTITUDE.” Stage 4: a small controlled-looking atmospheric breakup trail above Earth, labeled “4 CLEAN REENTRY” with “COMPONENTS BURN UP HIGH ABOVE THE SURFACE.”\n\nInclude three subtle altitude bands around Earth labeled “LOW EARTH ORBIT,” “UPPER ATMOSPHERE,” and “REENTRY ZONE.” Add a compact footer key reading “DRAG SAIL • PASSIVE DEORBIT DEVICE” beside a simple sail icon. Make the hierarchy instantly understandable: bold condensed sans-serif title, large numbers, concise uppercase labels, very limited supporting copy, generous spacing, disciplined alignment, and strong contrast. Render the CubeSat with believable solar cells, metallic rails, hinges, antenna details, and a thin iridescent sail membrane. Earth should be a simplified scientific cutaway rather than a photorealistic globe, with narrow luminous atmospheric layers and sparse contour lines. Deliberate palette use: cyan for orbit paths and technical lines, acid lime for the deployed sail and stage numbers, orange only for the reentry trail, ivory for typography, steel blue for Earth. Crisp edges, accurate perspective, premium museum-science graphic quality, no logos, no app interface, no browser frame, no buttons, no decorative fantasy elements, no extra paragraphs, no clutter.',
width: 1024,
height: 1024,
providerSettings: {
recraft: {
backgroundColor: {
rgb: [
245,
242,
234
]
},
colors: [
{
rgb: [
22,
42,
66
]
},
{
rgb: [
235,
99,
82
]
},
{
rgb: [
87,
181,
166
]
}
]
}
}
})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@0",
"positivePrompt": "Create a finished, design-forward square infographic titled “HOW A CUBESAT COMES HOME,” explaining the end-of-life deorbit process for a small satellite equipped with a drag sail. Use a sophisticated aerospace editorial style combining crisp vector geometry, precise technical illustration, subtle dimensional shading, and polished screen-print texture. Deep midnight-navy background with a restrained palette of electric cyan, acid lime, safety orange, warm ivory, and muted steel blue.\n\nComposition: a large diagonal orbital path sweeps from the upper-left toward the curved edge of Earth in the lower-right. Show one consistent CubeSat at four clearly separated stages along the path, connected by clean arrows and numbered circles. Stage 1: compact CubeSat in low Earth orbit, labeled “1 MISSION ENDS” with the short caption “SYSTEMS POWER DOWN.” Stage 2: the same CubeSat opening a large cross-shaped reflective drag sail, labeled “2 DEPLOY SAIL” with “A WIDER PROFILE MEETS THIN AIR.” Stage 3: the spacecraft following a tightening, descending orbit, labeled “3 ORBIT DECAYS” with “ATMOSPHERIC DRAG LOWERS ALTITUDE.” Stage 4: a small controlled-looking atmospheric breakup trail above Earth, labeled “4 CLEAN REENTRY” with “COMPONENTS BURN UP HIGH ABOVE THE SURFACE.”\n\nInclude three subtle altitude bands around Earth labeled “LOW EARTH ORBIT,” “UPPER ATMOSPHERE,” and “REENTRY ZONE.” Add a compact footer key reading “DRAG SAIL • PASSIVE DEORBIT DEVICE” beside a simple sail icon. Make the hierarchy instantly understandable: bold condensed sans-serif title, large numbers, concise uppercase labels, very limited supporting copy, generous spacing, disciplined alignment, and strong contrast. Render the CubeSat with believable solar cells, metallic rails, hinges, antenna details, and a thin iridescent sail membrane. Earth should be a simplified scientific cutaway rather than a photorealistic globe, with narrow luminous atmospheric layers and sparse contour lines. Deliberate palette use: cyan for orbit paths and technical lines, acid lime for the deployed sail and stage numbers, orange only for the reentry trail, ivory for typography, steel blue for Earth. Crisp edges, accurate perspective, premium museum-science graphic quality, no logos, no app interface, no browser frame, no buttons, no decorative fantasy elements, no extra paragraphs, no clutter.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "c92d8280-5316-4d19-8c44-b61c8083fcd3",
"model": "recraft:v4@0",
"positivePrompt": "Create a finished, design-forward square infographic titled “HOW A CUBESAT COMES HOME,” explaining the end-of-life deorbit process for a small satellite equipped with a drag sail. Use a sophisticated aerospace editorial style combining crisp vector geometry, precise technical illustration, subtle dimensional shading, and polished screen-print texture. Deep midnight-navy background with a restrained palette of electric cyan, acid lime, safety orange, warm ivory, and muted steel blue.\n\nComposition: a large diagonal orbital path sweeps from the upper-left toward the curved edge of Earth in the lower-right. Show one consistent CubeSat at four clearly separated stages along the path, connected by clean arrows and numbered circles. Stage 1: compact CubeSat in low Earth orbit, labeled “1 MISSION ENDS” with the short caption “SYSTEMS POWER DOWN.” Stage 2: the same CubeSat opening a large cross-shaped reflective drag sail, labeled “2 DEPLOY SAIL” with “A WIDER PROFILE MEETS THIN AIR.” Stage 3: the spacecraft following a tightening, descending orbit, labeled “3 ORBIT DECAYS” with “ATMOSPHERIC DRAG LOWERS ALTITUDE.” Stage 4: a small controlled-looking atmospheric breakup trail above Earth, labeled “4 CLEAN REENTRY” with “COMPONENTS BURN UP HIGH ABOVE THE SURFACE.”\n\nInclude three subtle altitude bands around Earth labeled “LOW EARTH ORBIT,” “UPPER ATMOSPHERE,” and “REENTRY ZONE.” Add a compact footer key reading “DRAG SAIL • PASSIVE DEORBIT DEVICE” beside a simple sail icon. Make the hierarchy instantly understandable: bold condensed sans-serif title, large numbers, concise uppercase labels, very limited supporting copy, generous spacing, disciplined alignment, and strong contrast. Render the CubeSat with believable solar cells, metallic rails, hinges, antenna details, and a thin iridescent sail membrane. Earth should be a simplified scientific cutaway rather than a photorealistic globe, with narrow luminous atmospheric layers and sparse contour lines. Deliberate palette use: cyan for orbit paths and technical lines, acid lime for the deployed sail and stage numbers, orange only for the reentry trail, ivory for typography, steel blue for Earth. Crisp edges, accurate perspective, premium museum-science graphic quality, no logos, no app interface, no browser frame, no buttons, no decorative fantasy elements, no extra paragraphs, no clutter.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
}
]'runware run recraft:v4@0 \
positivePrompt="Create a finished, design-forward square infographic titled “HOW A CUBESAT COMES HOME,” explaining the end-of-life deorbit process for a small satellite equipped with a drag sail. Use a sophisticated aerospace editorial style combining crisp vector geometry, precise technical illustration, subtle dimensional shading, and polished screen-print texture. Deep midnight-navy background with a restrained palette of electric cyan, acid lime, safety orange, warm ivory, and muted steel blue.
Composition: a large diagonal orbital path sweeps from the upper-left toward the curved edge of Earth in the lower-right. Show one consistent CubeSat at four clearly separated stages along the path, connected by clean arrows and numbered circles. Stage 1: compact CubeSat in low Earth orbit, labeled “1 MISSION ENDS” with the short caption “SYSTEMS POWER DOWN.” Stage 2: the same CubeSat opening a large cross-shaped reflective drag sail, labeled “2 DEPLOY SAIL” with “A WIDER PROFILE MEETS THIN AIR.” Stage 3: the spacecraft following a tightening, descending orbit, labeled “3 ORBIT DECAYS” with “ATMOSPHERIC DRAG LOWERS ALTITUDE.” Stage 4: a small controlled-looking atmospheric breakup trail above Earth, labeled “4 CLEAN REENTRY” with “COMPONENTS BURN UP HIGH ABOVE THE SURFACE.”
Include three subtle altitude bands around Earth labeled “LOW EARTH ORBIT,” “UPPER ATMOSPHERE,” and “REENTRY ZONE.” Add a compact footer key reading “DRAG SAIL • PASSIVE DEORBIT DEVICE” beside a simple sail icon. Make the hierarchy instantly understandable: bold condensed sans-serif title, large numbers, concise uppercase labels, very limited supporting copy, generous spacing, disciplined alignment, and strong contrast. Render the CubeSat with believable solar cells, metallic rails, hinges, antenna details, and a thin iridescent sail membrane. Earth should be a simplified scientific cutaway rather than a photorealistic globe, with narrow luminous atmospheric layers and sparse contour lines. Deliberate palette use: cyan for orbit paths and technical lines, acid lime for the deployed sail and stage numbers, orange only for the reentry trail, ivory for typography, steel blue for Earth. Crisp edges, accurate perspective, premium museum-science graphic quality, no logos, no app interface, no browser frame, no buttons, no decorative fantasy elements, no extra paragraphs, no clutter." \
width=1024 \
height=1024 \
providerSettings.recraft.backgroundColor.rgb.0=245 \
providerSettings.recraft.backgroundColor.rgb.1=242 \
providerSettings.recraft.backgroundColor.rgb.2=234 \
providerSettings.recraft.colors.0.rgb.0=22 \
providerSettings.recraft.colors.0.rgb.1=42 \
providerSettings.recraft.colors.0.rgb.2=66 \
providerSettings.recraft.colors.1.rgb.0=235 \
providerSettings.recraft.colors.1.rgb.1=99 \
providerSettings.recraft.colors.1.rgb.2=82 \
providerSettings.recraft.colors.2.rgb.0=87 \
providerSettings.recraft.colors.2.rgb.1=181 \
providerSettings.recraft.colors.2.rgb.2=166{
"taskType": "imageInference",
"taskUUID": "c92d8280-5316-4d19-8c44-b61c8083fcd3",
"model": "recraft:v4@0",
"positivePrompt": "Create a finished, design-forward square infographic titled “HOW A CUBESAT COMES HOME,” explaining the end-of-life deorbit process for a small satellite equipped with a drag sail. Use a sophisticated aerospace editorial style combining crisp vector geometry, precise technical illustration, subtle dimensional shading, and polished screen-print texture. Deep midnight-navy background with a restrained palette of electric cyan, acid lime, safety orange, warm ivory, and muted steel blue.\n\nComposition: a large diagonal orbital path sweeps from the upper-left toward the curved edge of Earth in the lower-right. Show one consistent CubeSat at four clearly separated stages along the path, connected by clean arrows and numbered circles. Stage 1: compact CubeSat in low Earth orbit, labeled “1 MISSION ENDS” with the short caption “SYSTEMS POWER DOWN.” Stage 2: the same CubeSat opening a large cross-shaped reflective drag sail, labeled “2 DEPLOY SAIL” with “A WIDER PROFILE MEETS THIN AIR.” Stage 3: the spacecraft following a tightening, descending orbit, labeled “3 ORBIT DECAYS” with “ATMOSPHERIC DRAG LOWERS ALTITUDE.” Stage 4: a small controlled-looking atmospheric breakup trail above Earth, labeled “4 CLEAN REENTRY” with “COMPONENTS BURN UP HIGH ABOVE THE SURFACE.”\n\nInclude three subtle altitude bands around Earth labeled “LOW EARTH ORBIT,” “UPPER ATMOSPHERE,” and “REENTRY ZONE.” Add a compact footer key reading “DRAG SAIL • PASSIVE DEORBIT DEVICE” beside a simple sail icon. Make the hierarchy instantly understandable: bold condensed sans-serif title, large numbers, concise uppercase labels, very limited supporting copy, generous spacing, disciplined alignment, and strong contrast. Render the CubeSat with believable solar cells, metallic rails, hinges, antenna details, and a thin iridescent sail membrane. Earth should be a simplified scientific cutaway rather than a photorealistic globe, with narrow luminous atmospheric layers and sparse contour lines. Deliberate palette use: cyan for orbit paths and technical lines, acid lime for the deployed sail and stage numbers, orange only for the reentry trail, ivory for typography, steel blue for Earth. Crisp edges, accurate perspective, premium museum-science graphic quality, no logos, no app interface, no browser frame, no buttons, no decorative fantasy elements, no extra paragraphs, no clutter.",
"width": 1024,
"height": 1024,
"providerSettings": {
"recraft": {
"backgroundColor": {
"rgb": [
245,
242,
234
]
},
"colors": [
{
"rgb": [
22,
42,
66
]
},
{
"rgb": [
235,
99,
82
]
},
{
"rgb": [
87,
181,
166
]
}
]
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "c92d8280-5316-4d19-8c44-b61c8083fcd3",
"imageUUID": "de03d260-41b9-4a9e-a601-ba8796f6791f",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/de03d260-41b9-4a9e-a601-ba8796f6791f.jpg",
"seed": 568251406,
"cost": 0.04
}