Recraft V4 Styles

Recraft V4 Styles is the standard raster model in Recraft's V4 Styles family for reference-driven style consistency. It lets teams create a reusable visual style from reference images and then generate new assets that stay close not only to the broad aesthetic direction, but also to finer details such as texture, composition, and rendering character. It is designed for workflows that need immediate style reuse without fine-tuning or LoRA setup, making it a strong fit for branded content, editorial systems, product campaigns, and any image pipeline where a repeatable visual language matters more than one-off prompt creativity.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
Step-by-step tutorials for advanced use cases
Forensic Accountant Social Profile Avatar

Finished stylized professional profile avatar for a fictional forensic accountant who publishes financial fraud explainers. Centered head-and-shoulders portrait of a confident South Asian woman in her early forties, intelligent calm expression, chin-length dark hair with one silver streak, round dark glasses, rust-colored tailored blazer over a charcoal crew-neck top. Render her in the exact visual language established by the three style references: intricate banknote-style engraved linework, controlled crosshatching, crisp screen-printed color fields, subtle warm paper grain, sophisticated geometric guilloché details. Wide 16:9 master artwork with the face and shoulders fully contained inside the central crop-safe area so it can be adapted to a circular social profile picture; symmetrical frontal pose, direct eye contact, generous uncluttered space on both sides. Background of muted teal with faint ledger grids, fingerprint curves, and interlocking security-print rosettes, decorative rather than literal. Warm parchment highlights, oxblood and mustard accents, charcoal outlines. Cerebral, trustworthy, contemporary editorial mood. No lettering, numbers, currency, logos, interface elements, borders, watermark, or photorealism.
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',
positivePrompt: 'Finished stylized professional profile avatar for a fictional forensic accountant who publishes financial fraud explainers. Centered head-and-shoulders portrait of a confident South Asian woman in her early forties, intelligent calm expression, chin-length dark hair with one silver streak, round dark glasses, rust-colored tailored blazer over a charcoal crew-neck top. Render her in the exact visual language established by the three style references: intricate banknote-style engraved linework, controlled crosshatching, crisp screen-printed color fields, subtle warm paper grain, sophisticated geometric guilloché details. Wide 16:9 master artwork with the face and shoulders fully contained inside the central crop-safe area so it can be adapted to a circular social profile picture; symmetrical frontal pose, direct eye contact, generous uncluttered space on both sides. Background of muted teal with faint ledger grids, fingerprint curves, and interlocking security-print rosettes, decorative rather than literal. Warm parchment highlights, oxblood and mustard accents, charcoal outlines. Cerebral, trustworthy, contemporary editorial mood. No lettering, numbers, currency, logos, interface elements, borders, watermark, or photorealism.',
width: 1344,
height: 768,
settings: {
backgroundColor: {
rgb: [
34,
91,
92
]
},
colors: [
{
rgb: [
34,
91,
92
]
},
{
rgb: [
123,
48,
51
]
},
{
rgb: [
214,
168,
67
]
},
{
rgb: [
234,
220,
190
]
},
{
rgb: [
42,
43,
42
]
}
],
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/bfd3b863-2b06-4abf-8d60-3ad7fc99c33e.jpg',
'https://assets.runware.ai/assets/inputs/4ce34639-f048-4ce8-bf81-463fea40df35.jpg',
'https://assets.runware.ai/assets/inputs/e3f9c6a5-8fe5-4651-bc9b-e80c3abf8b5b.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",
"positivePrompt": "Finished stylized professional profile avatar for a fictional forensic accountant who publishes financial fraud explainers. Centered head-and-shoulders portrait of a confident South Asian woman in her early forties, intelligent calm expression, chin-length dark hair with one silver streak, round dark glasses, rust-colored tailored blazer over a charcoal crew-neck top. Render her in the exact visual language established by the three style references: intricate banknote-style engraved linework, controlled crosshatching, crisp screen-printed color fields, subtle warm paper grain, sophisticated geometric guilloché details. Wide 16:9 master artwork with the face and shoulders fully contained inside the central crop-safe area so it can be adapted to a circular social profile picture; symmetrical frontal pose, direct eye contact, generous uncluttered space on both sides. Background of muted teal with faint ledger grids, fingerprint curves, and interlocking security-print rosettes, decorative rather than literal. Warm parchment highlights, oxblood and mustard accents, charcoal outlines. Cerebral, trustworthy, contemporary editorial mood. No lettering, numbers, currency, logos, interface elements, borders, watermark, or photorealism.",
"width": 1344,
"height": 768,
"settings": {
"backgroundColor": {
"rgb": [
34,
91,
92
]
},
"colors": [
{
"rgb": [
34,
91,
92
]
},
{
"rgb": [
123,
48,
51
]
},
{
"rgb": [
214,
168,
67
]
},
{
"rgb": [
234,
220,
190
]
},
{
"rgb": [
42,
43,
42
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/bfd3b863-2b06-4abf-8d60-3ad7fc99c33e.jpg",
"https://assets.runware.ai/assets/inputs/4ce34639-f048-4ce8-bf81-463fea40df35.jpg",
"https://assets.runware.ai/assets/inputs/e3f9c6a5-8fe5-4651-bc9b-e80c3abf8b5b.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": "126a8771-dda4-4a61-a70d-76caf53e285b",
"model": "recraft:v4@styles",
"positivePrompt": "Finished stylized professional profile avatar for a fictional forensic accountant who publishes financial fraud explainers. Centered head-and-shoulders portrait of a confident South Asian woman in her early forties, intelligent calm expression, chin-length dark hair with one silver streak, round dark glasses, rust-colored tailored blazer over a charcoal crew-neck top. Render her in the exact visual language established by the three style references: intricate banknote-style engraved linework, controlled crosshatching, crisp screen-printed color fields, subtle warm paper grain, sophisticated geometric guilloché details. Wide 16:9 master artwork with the face and shoulders fully contained inside the central crop-safe area so it can be adapted to a circular social profile picture; symmetrical frontal pose, direct eye contact, generous uncluttered space on both sides. Background of muted teal with faint ledger grids, fingerprint curves, and interlocking security-print rosettes, decorative rather than literal. Warm parchment highlights, oxblood and mustard accents, charcoal outlines. Cerebral, trustworthy, contemporary editorial mood. No lettering, numbers, currency, logos, interface elements, borders, watermark, or photorealism.",
"width": 1344,
"height": 768,
"settings": {
"backgroundColor": {
"rgb": [
34,
91,
92
]
},
"colors": [
{
"rgb": [
34,
91,
92
]
},
{
"rgb": [
123,
48,
51
]
},
{
"rgb": [
214,
168,
67
]
},
{
"rgb": [
234,
220,
190
]
},
{
"rgb": [
42,
43,
42
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/bfd3b863-2b06-4abf-8d60-3ad7fc99c33e.jpg",
"https://assets.runware.ai/assets/inputs/4ce34639-f048-4ce8-bf81-463fea40df35.jpg",
"https://assets.runware.ai/assets/inputs/e3f9c6a5-8fe5-4651-bc9b-e80c3abf8b5b.jpg"
]
}
}
]'runware run recraft:v4@styles \
positivePrompt="Finished stylized professional profile avatar for a fictional forensic accountant who publishes financial fraud explainers. Centered head-and-shoulders portrait of a confident South Asian woman in her early forties, intelligent calm expression, chin-length dark hair with one silver streak, round dark glasses, rust-colored tailored blazer over a charcoal crew-neck top. Render her in the exact visual language established by the three style references: intricate banknote-style engraved linework, controlled crosshatching, crisp screen-printed color fields, subtle warm paper grain, sophisticated geometric guilloché details. Wide 16:9 master artwork with the face and shoulders fully contained inside the central crop-safe area so it can be adapted to a circular social profile picture; symmetrical frontal pose, direct eye contact, generous uncluttered space on both sides. Background of muted teal with faint ledger grids, fingerprint curves, and interlocking security-print rosettes, decorative rather than literal. Warm parchment highlights, oxblood and mustard accents, charcoal outlines. Cerebral, trustworthy, contemporary editorial mood. No lettering, numbers, currency, logos, interface elements, borders, watermark, or photorealism." \
width=1344 \
height=768 \
settings.backgroundColor.rgb.0=34 \
settings.backgroundColor.rgb.1=91 \
settings.backgroundColor.rgb.2=92 \
settings.colors.0.rgb.0=34 \
settings.colors.0.rgb.1=91 \
settings.colors.0.rgb.2=92 \
settings.colors.1.rgb.0=123 \
settings.colors.1.rgb.1=48 \
settings.colors.1.rgb.2=51 \
settings.colors.2.rgb.0=214 \
settings.colors.2.rgb.1=168 \
settings.colors.2.rgb.2=67 \
settings.colors.3.rgb.0=234 \
settings.colors.3.rgb.1=220 \
settings.colors.3.rgb.2=190 \
settings.colors.4.rgb.0=42 \
settings.colors.4.rgb.1=43 \
settings.colors.4.rgb.2=42 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/bfd3b863-2b06-4abf-8d60-3ad7fc99c33e.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/4ce34639-f048-4ce8-bf81-463fea40df35.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/e3f9c6a5-8fe5-4651-bc9b-e80c3abf8b5b.jpg{
"taskType": "imageInference",
"taskUUID": "126a8771-dda4-4a61-a70d-76caf53e285b",
"model": "recraft:v4@styles",
"positivePrompt": "Finished stylized professional profile avatar for a fictional forensic accountant who publishes financial fraud explainers. Centered head-and-shoulders portrait of a confident South Asian woman in her early forties, intelligent calm expression, chin-length dark hair with one silver streak, round dark glasses, rust-colored tailored blazer over a charcoal crew-neck top. Render her in the exact visual language established by the three style references: intricate banknote-style engraved linework, controlled crosshatching, crisp screen-printed color fields, subtle warm paper grain, sophisticated geometric guilloché details. Wide 16:9 master artwork with the face and shoulders fully contained inside the central crop-safe area so it can be adapted to a circular social profile picture; symmetrical frontal pose, direct eye contact, generous uncluttered space on both sides. Background of muted teal with faint ledger grids, fingerprint curves, and interlocking security-print rosettes, decorative rather than literal. Warm parchment highlights, oxblood and mustard accents, charcoal outlines. Cerebral, trustworthy, contemporary editorial mood. No lettering, numbers, currency, logos, interface elements, borders, watermark, or photorealism.",
"width": 1344,
"height": 768,
"settings": {
"backgroundColor": {
"rgb": [
34,
91,
92
]
},
"colors": [
{
"rgb": [
34,
91,
92
]
},
{
"rgb": [
123,
48,
51
]
},
{
"rgb": [
214,
168,
67
]
},
{
"rgb": [
234,
220,
190
]
},
{
"rgb": [
42,
43,
42
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/bfd3b863-2b06-4abf-8d60-3ad7fc99c33e.jpg",
"https://assets.runware.ai/assets/inputs/4ce34639-f048-4ce8-bf81-463fea40df35.jpg",
"https://assets.runware.ai/assets/inputs/e3f9c6a5-8fe5-4651-bc9b-e80c3abf8b5b.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "126a8771-dda4-4a61-a70d-76caf53e285b",
"imageUUID": "5c286a32-2eb0-4c9d-a40e-5a03074183a8",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/4/ii/5c286a32-2eb0-4c9d-a40e-5a03074183a8.jpg",
"seed": 1778631803,
"cost": 0.04,
"outputs": {
"styleId": "af52b505-d535-49ae-b880-79299b37f9fa"
}
}Bathhouse Café Dessert Menu Photograph

Finished commercial menu photograph for a contemporary Japanese bathhouse café: a dramatic mound of black sesame kakigori in a clear ribbed glass dessert bowl, topped with glossy kuromitsu syrup, toasted soybean powder and one vivid red preserved plum, paired with a slender glass of sparkling yuzu soda containing a large crystal-clear ice spear. Arrange both on a wet pale-aqua ceramic-tile counter with a folded cobalt hand towel and a small stainless dessert spoon. Three-quarter tabletop view with the dessert dominant and the drink slightly behind, tightly composed for a vertical printed menu. Direct on-camera flash, crisp specular highlights, hard clean shadows, tactile ice crystals, condensation and syrup detail, subtle analog film grain, stylish late-1980s Japanese food-editorial character, seafoam blue, cobalt, charcoal, citrus yellow and cherry-red palette. Appetizing, precise, sophisticated and believable. No people, packaging, logos, lettering, menu graphics or watermark.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles',
positivePrompt: 'Finished commercial menu photograph for a contemporary Japanese bathhouse café: a dramatic mound of black sesame kakigori in a clear ribbed glass dessert bowl, topped with glossy kuromitsu syrup, toasted soybean powder and one vivid red preserved plum, paired with a slender glass of sparkling yuzu soda containing a large crystal-clear ice spear. Arrange both on a wet pale-aqua ceramic-tile counter with a folded cobalt hand towel and a small stainless dessert spoon. Three-quarter tabletop view with the dessert dominant and the drink slightly behind, tightly composed for a vertical printed menu. Direct on-camera flash, crisp specular highlights, hard clean shadows, tactile ice crystals, condensation and syrup detail, subtle analog film grain, stylish late-1980s Japanese food-editorial character, seafoam blue, cobalt, charcoal, citrus yellow and cherry-red palette. Appetizing, precise, sophisticated and believable. No people, packaging, logos, lettering, menu graphics or watermark.',
width: 896,
height: 1152,
settings: {
styleMatch: 'flexible',
colors: [
{
rgb: [
178,
224,
214
]
},
{
rgb: [
25,
63,
154
]
},
{
rgb: [
38,
35,
34
]
},
{
rgb: [
238,
195,
44
]
},
{
rgb: [
177,
31,
48
]
}
]
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/cf9d209c-e4bc-4534-abaa-3dc063fefefc.jpg',
'https://assets.runware.ai/assets/inputs/beb4435d-31e0-4551-9404-ec096894e54a.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",
"positivePrompt": "Finished commercial menu photograph for a contemporary Japanese bathhouse café: a dramatic mound of black sesame kakigori in a clear ribbed glass dessert bowl, topped with glossy kuromitsu syrup, toasted soybean powder and one vivid red preserved plum, paired with a slender glass of sparkling yuzu soda containing a large crystal-clear ice spear. Arrange both on a wet pale-aqua ceramic-tile counter with a folded cobalt hand towel and a small stainless dessert spoon. Three-quarter tabletop view with the dessert dominant and the drink slightly behind, tightly composed for a vertical printed menu. Direct on-camera flash, crisp specular highlights, hard clean shadows, tactile ice crystals, condensation and syrup detail, subtle analog film grain, stylish late-1980s Japanese food-editorial character, seafoam blue, cobalt, charcoal, citrus yellow and cherry-red palette. Appetizing, precise, sophisticated and believable. No people, packaging, logos, lettering, menu graphics or watermark.",
"width": 896,
"height": 1152,
"settings": {
"styleMatch": "flexible",
"colors": [
{
"rgb": [
178,
224,
214
]
},
{
"rgb": [
25,
63,
154
]
},
{
"rgb": [
38,
35,
34
]
},
{
"rgb": [
238,
195,
44
]
},
{
"rgb": [
177,
31,
48
]
}
]
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/cf9d209c-e4bc-4534-abaa-3dc063fefefc.jpg",
"https://assets.runware.ai/assets/inputs/beb4435d-31e0-4551-9404-ec096894e54a.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": "23af5118-9c80-44f7-9a4a-e144462930ca",
"model": "recraft:v4@styles",
"positivePrompt": "Finished commercial menu photograph for a contemporary Japanese bathhouse café: a dramatic mound of black sesame kakigori in a clear ribbed glass dessert bowl, topped with glossy kuromitsu syrup, toasted soybean powder and one vivid red preserved plum, paired with a slender glass of sparkling yuzu soda containing a large crystal-clear ice spear. Arrange both on a wet pale-aqua ceramic-tile counter with a folded cobalt hand towel and a small stainless dessert spoon. Three-quarter tabletop view with the dessert dominant and the drink slightly behind, tightly composed for a vertical printed menu. Direct on-camera flash, crisp specular highlights, hard clean shadows, tactile ice crystals, condensation and syrup detail, subtle analog film grain, stylish late-1980s Japanese food-editorial character, seafoam blue, cobalt, charcoal, citrus yellow and cherry-red palette. Appetizing, precise, sophisticated and believable. No people, packaging, logos, lettering, menu graphics or watermark.",
"width": 896,
"height": 1152,
"settings": {
"styleMatch": "flexible",
"colors": [
{
"rgb": [
178,
224,
214
]
},
{
"rgb": [
25,
63,
154
]
},
{
"rgb": [
38,
35,
34
]
},
{
"rgb": [
238,
195,
44
]
},
{
"rgb": [
177,
31,
48
]
}
]
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/cf9d209c-e4bc-4534-abaa-3dc063fefefc.jpg",
"https://assets.runware.ai/assets/inputs/beb4435d-31e0-4551-9404-ec096894e54a.jpg"
]
}
}
]'runware run recraft:v4@styles \
positivePrompt="Finished commercial menu photograph for a contemporary Japanese bathhouse café: a dramatic mound of black sesame kakigori in a clear ribbed glass dessert bowl, topped with glossy kuromitsu syrup, toasted soybean powder and one vivid red preserved plum, paired with a slender glass of sparkling yuzu soda containing a large crystal-clear ice spear. Arrange both on a wet pale-aqua ceramic-tile counter with a folded cobalt hand towel and a small stainless dessert spoon. Three-quarter tabletop view with the dessert dominant and the drink slightly behind, tightly composed for a vertical printed menu. Direct on-camera flash, crisp specular highlights, hard clean shadows, tactile ice crystals, condensation and syrup detail, subtle analog film grain, stylish late-1980s Japanese food-editorial character, seafoam blue, cobalt, charcoal, citrus yellow and cherry-red palette. Appetizing, precise, sophisticated and believable. No people, packaging, logos, lettering, menu graphics or watermark." \
width=896 \
height=1152 \
settings.styleMatch=flexible \
settings.colors.0.rgb.0=178 \
settings.colors.0.rgb.1=224 \
settings.colors.0.rgb.2=214 \
settings.colors.1.rgb.0=25 \
settings.colors.1.rgb.1=63 \
settings.colors.1.rgb.2=154 \
settings.colors.2.rgb.0=38 \
settings.colors.2.rgb.1=35 \
settings.colors.2.rgb.2=34 \
settings.colors.3.rgb.0=238 \
settings.colors.3.rgb.1=195 \
settings.colors.3.rgb.2=44 \
settings.colors.4.rgb.0=177 \
settings.colors.4.rgb.1=31 \
settings.colors.4.rgb.2=48 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/cf9d209c-e4bc-4534-abaa-3dc063fefefc.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/beb4435d-31e0-4551-9404-ec096894e54a.jpg{
"taskType": "imageInference",
"taskUUID": "23af5118-9c80-44f7-9a4a-e144462930ca",
"model": "recraft:v4@styles",
"positivePrompt": "Finished commercial menu photograph for a contemporary Japanese bathhouse café: a dramatic mound of black sesame kakigori in a clear ribbed glass dessert bowl, topped with glossy kuromitsu syrup, toasted soybean powder and one vivid red preserved plum, paired with a slender glass of sparkling yuzu soda containing a large crystal-clear ice spear. Arrange both on a wet pale-aqua ceramic-tile counter with a folded cobalt hand towel and a small stainless dessert spoon. Three-quarter tabletop view with the dessert dominant and the drink slightly behind, tightly composed for a vertical printed menu. Direct on-camera flash, crisp specular highlights, hard clean shadows, tactile ice crystals, condensation and syrup detail, subtle analog film grain, stylish late-1980s Japanese food-editorial character, seafoam blue, cobalt, charcoal, citrus yellow and cherry-red palette. Appetizing, precise, sophisticated and believable. No people, packaging, logos, lettering, menu graphics or watermark.",
"width": 896,
"height": 1152,
"settings": {
"styleMatch": "flexible",
"colors": [
{
"rgb": [
178,
224,
214
]
},
{
"rgb": [
25,
63,
154
]
},
{
"rgb": [
38,
35,
34
]
},
{
"rgb": [
238,
195,
44
]
},
{
"rgb": [
177,
31,
48
]
}
]
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/cf9d209c-e4bc-4534-abaa-3dc063fefefc.jpg",
"https://assets.runware.ai/assets/inputs/beb4435d-31e0-4551-9404-ec096894e54a.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "23af5118-9c80-44f7-9a4a-e144462930ca",
"imageUUID": "1bd5faed-3d5a-44c2-b5c4-80ceb5448ceb",
"imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/1bd5faed-3d5a-44c2-b5c4-80ceb5448ceb.jpg",
"seed": 1206925885,
"cost": 0.04,
"outputs": {
"styleId": "f7fdedf6-cf01-44d1-b75c-17a515061000"
}
}Converted Seismic Station Listing Photograph

High-end real-estate interior photograph of a decommissioned 1970s seismic monitoring station in the Azores, sensitively converted into a boutique guest suite. Wide view from the entrance showing a sunken lounge, built-in cream plaster seating with rust-orange wool cushions, dark basalt stone floor, a compact walnut writing desk, preserved analog seismograph equipment displayed in a recessed wall niche, and a circular reinforced-concrete observation window overlooking a misty volcanic caldera. Authentic adaptive-reuse architecture with thick masonry walls, exposed structural details, understated contemporary furnishings, and uncluttered staging. Soft blue-gray daylight enters through the window while concealed warm lighting grazes the textured walls. Calm, contemplative hospitality mood. Photorealistic architectural editorial style, 28mm tilt-shift lens, eye-level two-point composition, straight verticals, deep focus, natural material detail, balanced exposure, subtle film grain. No people, no signage, no lettering, no logos, no fisheye distortion.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'recraft:v4@styles',
positivePrompt: 'High-end real-estate interior photograph of a decommissioned 1970s seismic monitoring station in the Azores, sensitively converted into a boutique guest suite. Wide view from the entrance showing a sunken lounge, built-in cream plaster seating with rust-orange wool cushions, dark basalt stone floor, a compact walnut writing desk, preserved analog seismograph equipment displayed in a recessed wall niche, and a circular reinforced-concrete observation window overlooking a misty volcanic caldera. Authentic adaptive-reuse architecture with thick masonry walls, exposed structural details, understated contemporary furnishings, and uncluttered staging. Soft blue-gray daylight enters through the window while concealed warm lighting grazes the textured walls. Calm, contemplative hospitality mood. Photorealistic architectural editorial style, 28mm tilt-shift lens, eye-level two-point composition, straight verticals, deep focus, natural material detail, balanced exposure, subtle film grain. No people, no signage, no lettering, no logos, no fisheye distortion.',
width: 1280,
height: 832,
settings: {
colors: [
{
rgb: [
42,
48,
50
]
},
{
rgb: [
176,
86,
50
]
},
{
rgb: [
226,
219,
198
]
}
],
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/7ceb1433-e621-4196-a96a-e7268682d0ba.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",
"positivePrompt": "High-end real-estate interior photograph of a decommissioned 1970s seismic monitoring station in the Azores, sensitively converted into a boutique guest suite. Wide view from the entrance showing a sunken lounge, built-in cream plaster seating with rust-orange wool cushions, dark basalt stone floor, a compact walnut writing desk, preserved analog seismograph equipment displayed in a recessed wall niche, and a circular reinforced-concrete observation window overlooking a misty volcanic caldera. Authentic adaptive-reuse architecture with thick masonry walls, exposed structural details, understated contemporary furnishings, and uncluttered staging. Soft blue-gray daylight enters through the window while concealed warm lighting grazes the textured walls. Calm, contemplative hospitality mood. Photorealistic architectural editorial style, 28mm tilt-shift lens, eye-level two-point composition, straight verticals, deep focus, natural material detail, balanced exposure, subtle film grain. No people, no signage, no lettering, no logos, no fisheye distortion.",
"width": 1280,
"height": 832,
"settings": {
"colors": [
{
"rgb": [
42,
48,
50
]
},
{
"rgb": [
176,
86,
50
]
},
{
"rgb": [
226,
219,
198
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/7ceb1433-e621-4196-a96a-e7268682d0ba.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": "189cd693-5a9b-4305-9fc4-a1740c0205be",
"model": "recraft:v4@styles",
"positivePrompt": "High-end real-estate interior photograph of a decommissioned 1970s seismic monitoring station in the Azores, sensitively converted into a boutique guest suite. Wide view from the entrance showing a sunken lounge, built-in cream plaster seating with rust-orange wool cushions, dark basalt stone floor, a compact walnut writing desk, preserved analog seismograph equipment displayed in a recessed wall niche, and a circular reinforced-concrete observation window overlooking a misty volcanic caldera. Authentic adaptive-reuse architecture with thick masonry walls, exposed structural details, understated contemporary furnishings, and uncluttered staging. Soft blue-gray daylight enters through the window while concealed warm lighting grazes the textured walls. Calm, contemplative hospitality mood. Photorealistic architectural editorial style, 28mm tilt-shift lens, eye-level two-point composition, straight verticals, deep focus, natural material detail, balanced exposure, subtle film grain. No people, no signage, no lettering, no logos, no fisheye distortion.",
"width": 1280,
"height": 832,
"settings": {
"colors": [
{
"rgb": [
42,
48,
50
]
},
{
"rgb": [
176,
86,
50
]
},
{
"rgb": [
226,
219,
198
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/7ceb1433-e621-4196-a96a-e7268682d0ba.jpg"
]
}
}
]'runware run recraft:v4@styles \
positivePrompt="High-end real-estate interior photograph of a decommissioned 1970s seismic monitoring station in the Azores, sensitively converted into a boutique guest suite. Wide view from the entrance showing a sunken lounge, built-in cream plaster seating with rust-orange wool cushions, dark basalt stone floor, a compact walnut writing desk, preserved analog seismograph equipment displayed in a recessed wall niche, and a circular reinforced-concrete observation window overlooking a misty volcanic caldera. Authentic adaptive-reuse architecture with thick masonry walls, exposed structural details, understated contemporary furnishings, and uncluttered staging. Soft blue-gray daylight enters through the window while concealed warm lighting grazes the textured walls. Calm, contemplative hospitality mood. Photorealistic architectural editorial style, 28mm tilt-shift lens, eye-level two-point composition, straight verticals, deep focus, natural material detail, balanced exposure, subtle film grain. No people, no signage, no lettering, no logos, no fisheye distortion." \
width=1280 \
height=832 \
settings.colors.0.rgb.0=42 \
settings.colors.0.rgb.1=48 \
settings.colors.0.rgb.2=50 \
settings.colors.1.rgb.0=176 \
settings.colors.1.rgb.1=86 \
settings.colors.1.rgb.2=50 \
settings.colors.2.rgb.0=226 \
settings.colors.2.rgb.1=219 \
settings.colors.2.rgb.2=198 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/7ceb1433-e621-4196-a96a-e7268682d0ba.jpg{
"taskType": "imageInference",
"taskUUID": "189cd693-5a9b-4305-9fc4-a1740c0205be",
"model": "recraft:v4@styles",
"positivePrompt": "High-end real-estate interior photograph of a decommissioned 1970s seismic monitoring station in the Azores, sensitively converted into a boutique guest suite. Wide view from the entrance showing a sunken lounge, built-in cream plaster seating with rust-orange wool cushions, dark basalt stone floor, a compact walnut writing desk, preserved analog seismograph equipment displayed in a recessed wall niche, and a circular reinforced-concrete observation window overlooking a misty volcanic caldera. Authentic adaptive-reuse architecture with thick masonry walls, exposed structural details, understated contemporary furnishings, and uncluttered staging. Soft blue-gray daylight enters through the window while concealed warm lighting grazes the textured walls. Calm, contemplative hospitality mood. Photorealistic architectural editorial style, 28mm tilt-shift lens, eye-level two-point composition, straight verticals, deep focus, natural material detail, balanced exposure, subtle film grain. No people, no signage, no lettering, no logos, no fisheye distortion.",
"width": 1280,
"height": 832,
"settings": {
"colors": [
{
"rgb": [
42,
48,
50
]
},
{
"rgb": [
176,
86,
50
]
},
{
"rgb": [
226,
219,
198
]
}
],
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/7ceb1433-e621-4196-a96a-e7268682d0ba.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "189cd693-5a9b-4305-9fc4-a1740c0205be",
"imageUUID": "064df81c-db1f-403e-aed7-32aab4abee21",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/064df81c-db1f-403e-aed7-32aab4abee21.jpg",
"seed": 852209177,
"cost": 0.04,
"outputs": {
"styleId": "7a46d3be-a2ad-4d37-8efc-39ba3032e113"
}
}Mycology Fieldwear Lookbook Portrait

Finished full-page fashion lookbook photograph for a premium technical fieldwear collection designed for professional mycologists and mushroom foragers. One androgynous adult model shown head to toe, standing between stainless-steel cultivation racks filled with pale oyster mushrooms inside a humid industrial growing room. The outfit is the clear focus: cropped clay-colored waxed field jacket with oversized patch pockets, moss-green ripstop cargo trousers, cream merino base layer, dark rubber field boots, canvas specimen satchel and practical work gloves. Quiet self-assured pose, authentic garment construction, visible seams and fabric texture, accurate proportions. Refined European editorial catalog art direction, medium-format analog character, diffused frontal flash balanced with cool overhead grow-room light, restrained olive, cream, clay and charcoal palette, subtle film grain, clean vertical composition with generous breathing room, realistic documentary setting, no lettering, no logos, no border, no collage.
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',
positivePrompt: 'Finished full-page fashion lookbook photograph for a premium technical fieldwear collection designed for professional mycologists and mushroom foragers. One androgynous adult model shown head to toe, standing between stainless-steel cultivation racks filled with pale oyster mushrooms inside a humid industrial growing room. The outfit is the clear focus: cropped clay-colored waxed field jacket with oversized patch pockets, moss-green ripstop cargo trousers, cream merino base layer, dark rubber field boots, canvas specimen satchel and practical work gloves. Quiet self-assured pose, authentic garment construction, visible seams and fabric texture, accurate proportions. Refined European editorial catalog art direction, medium-format analog character, diffused frontal flash balanced with cool overhead grow-room light, restrained olive, cream, clay and charcoal palette, subtle film grain, clean vertical composition with generous breathing room, realistic documentary setting, no lettering, no logos, no border, no collage.',
width: 896,
height: 1216,
settings: {
styleMatch: 'precise',
colors: [
{
rgb: [
107,
116,
78
]
},
{
rgb: [
174,
91,
62
]
},
{
rgb: [
225,
217,
193
]
},
{
rgb: [
48,
51,
47
]
}
]
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/db15c34d-843a-441b-834a-66d582a532ff.jpg',
'https://assets.runware.ai/assets/inputs/d3b51963-1df9-4daa-b680-ad9061c17331.jpg',
'https://assets.runware.ai/assets/inputs/5b350618-cbe8-45d1-85ab-d73a7627a7ed.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",
"positivePrompt": "Finished full-page fashion lookbook photograph for a premium technical fieldwear collection designed for professional mycologists and mushroom foragers. One androgynous adult model shown head to toe, standing between stainless-steel cultivation racks filled with pale oyster mushrooms inside a humid industrial growing room. The outfit is the clear focus: cropped clay-colored waxed field jacket with oversized patch pockets, moss-green ripstop cargo trousers, cream merino base layer, dark rubber field boots, canvas specimen satchel and practical work gloves. Quiet self-assured pose, authentic garment construction, visible seams and fabric texture, accurate proportions. Refined European editorial catalog art direction, medium-format analog character, diffused frontal flash balanced with cool overhead grow-room light, restrained olive, cream, clay and charcoal palette, subtle film grain, clean vertical composition with generous breathing room, realistic documentary setting, no lettering, no logos, no border, no collage.",
"width": 896,
"height": 1216,
"settings": {
"styleMatch": "precise",
"colors": [
{
"rgb": [
107,
116,
78
]
},
{
"rgb": [
174,
91,
62
]
},
{
"rgb": [
225,
217,
193
]
},
{
"rgb": [
48,
51,
47
]
}
]
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/db15c34d-843a-441b-834a-66d582a532ff.jpg",
"https://assets.runware.ai/assets/inputs/d3b51963-1df9-4daa-b680-ad9061c17331.jpg",
"https://assets.runware.ai/assets/inputs/5b350618-cbe8-45d1-85ab-d73a7627a7ed.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": "4bb97c29-2ff9-4935-9bee-32eeb488177c",
"model": "recraft:v4@styles",
"positivePrompt": "Finished full-page fashion lookbook photograph for a premium technical fieldwear collection designed for professional mycologists and mushroom foragers. One androgynous adult model shown head to toe, standing between stainless-steel cultivation racks filled with pale oyster mushrooms inside a humid industrial growing room. The outfit is the clear focus: cropped clay-colored waxed field jacket with oversized patch pockets, moss-green ripstop cargo trousers, cream merino base layer, dark rubber field boots, canvas specimen satchel and practical work gloves. Quiet self-assured pose, authentic garment construction, visible seams and fabric texture, accurate proportions. Refined European editorial catalog art direction, medium-format analog character, diffused frontal flash balanced with cool overhead grow-room light, restrained olive, cream, clay and charcoal palette, subtle film grain, clean vertical composition with generous breathing room, realistic documentary setting, no lettering, no logos, no border, no collage.",
"width": 896,
"height": 1216,
"settings": {
"styleMatch": "precise",
"colors": [
{
"rgb": [
107,
116,
78
]
},
{
"rgb": [
174,
91,
62
]
},
{
"rgb": [
225,
217,
193
]
},
{
"rgb": [
48,
51,
47
]
}
]
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/db15c34d-843a-441b-834a-66d582a532ff.jpg",
"https://assets.runware.ai/assets/inputs/d3b51963-1df9-4daa-b680-ad9061c17331.jpg",
"https://assets.runware.ai/assets/inputs/5b350618-cbe8-45d1-85ab-d73a7627a7ed.jpg"
]
}
}
]'runware run recraft:v4@styles \
positivePrompt="Finished full-page fashion lookbook photograph for a premium technical fieldwear collection designed for professional mycologists and mushroom foragers. One androgynous adult model shown head to toe, standing between stainless-steel cultivation racks filled with pale oyster mushrooms inside a humid industrial growing room. The outfit is the clear focus: cropped clay-colored waxed field jacket with oversized patch pockets, moss-green ripstop cargo trousers, cream merino base layer, dark rubber field boots, canvas specimen satchel and practical work gloves. Quiet self-assured pose, authentic garment construction, visible seams and fabric texture, accurate proportions. Refined European editorial catalog art direction, medium-format analog character, diffused frontal flash balanced with cool overhead grow-room light, restrained olive, cream, clay and charcoal palette, subtle film grain, clean vertical composition with generous breathing room, realistic documentary setting, no lettering, no logos, no border, no collage." \
width=896 \
height=1216 \
settings.styleMatch=precise \
settings.colors.0.rgb.0=107 \
settings.colors.0.rgb.1=116 \
settings.colors.0.rgb.2=78 \
settings.colors.1.rgb.0=174 \
settings.colors.1.rgb.1=91 \
settings.colors.1.rgb.2=62 \
settings.colors.2.rgb.0=225 \
settings.colors.2.rgb.1=217 \
settings.colors.2.rgb.2=193 \
settings.colors.3.rgb.0=48 \
settings.colors.3.rgb.1=51 \
settings.colors.3.rgb.2=47 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/db15c34d-843a-441b-834a-66d582a532ff.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/d3b51963-1df9-4daa-b680-ad9061c17331.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/5b350618-cbe8-45d1-85ab-d73a7627a7ed.jpg{
"taskType": "imageInference",
"taskUUID": "4bb97c29-2ff9-4935-9bee-32eeb488177c",
"model": "recraft:v4@styles",
"positivePrompt": "Finished full-page fashion lookbook photograph for a premium technical fieldwear collection designed for professional mycologists and mushroom foragers. One androgynous adult model shown head to toe, standing between stainless-steel cultivation racks filled with pale oyster mushrooms inside a humid industrial growing room. The outfit is the clear focus: cropped clay-colored waxed field jacket with oversized patch pockets, moss-green ripstop cargo trousers, cream merino base layer, dark rubber field boots, canvas specimen satchel and practical work gloves. Quiet self-assured pose, authentic garment construction, visible seams and fabric texture, accurate proportions. Refined European editorial catalog art direction, medium-format analog character, diffused frontal flash balanced with cool overhead grow-room light, restrained olive, cream, clay and charcoal palette, subtle film grain, clean vertical composition with generous breathing room, realistic documentary setting, no lettering, no logos, no border, no collage.",
"width": 896,
"height": 1216,
"settings": {
"styleMatch": "precise",
"colors": [
{
"rgb": [
107,
116,
78
]
},
{
"rgb": [
174,
91,
62
]
},
{
"rgb": [
225,
217,
193
]
},
{
"rgb": [
48,
51,
47
]
}
]
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/db15c34d-843a-441b-834a-66d582a532ff.jpg",
"https://assets.runware.ai/assets/inputs/d3b51963-1df9-4daa-b680-ad9061c17331.jpg",
"https://assets.runware.ai/assets/inputs/5b350618-cbe8-45d1-85ab-d73a7627a7ed.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "4bb97c29-2ff9-4935-9bee-32eeb488177c",
"imageUUID": "b79f5ec3-971d-493b-9623-601033fe08d0",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/b79f5ec3-971d-493b-9623-601033fe08d0.jpg",
"seed": 1036130322,
"cost": 0.04,
"outputs": {
"styleId": "efe6b5be-e699-4972-aa96-e5bc3b383c4e"
}
}Bat Detector Kit Packshot

Finished ecommerce hero packshot of a professional ultrasonic bat survey kit. Show one compact handheld detector in matte midnight-navy anodized aluminum with a small dark display, tactile yellow controls, perforated microphone grille and precise machined edges, standing in a front three-quarter view. Neatly arrange its detachable directional microphone, short coiled cable, cold-shoe mount and slim protective pouch beside it with clear separation between every component. Saturated coral seamless studio background, clean horizonless sweep, hard directional key light creating crisp geometric shadows, subtle controlled highlights on the metal, highly detailed premium industrial design photography, accurate proportions, sharp focus throughout, generous negative space, no hands, no wildlife, no packaging, no brand name, no logo, no readable text, no watermark. Match the references closely for lighting, composition, material rendering and graphic catalog character.
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',
positivePrompt: 'Finished ecommerce hero packshot of a professional ultrasonic bat survey kit. Show one compact handheld detector in matte midnight-navy anodized aluminum with a small dark display, tactile yellow controls, perforated microphone grille and precise machined edges, standing in a front three-quarter view. Neatly arrange its detachable directional microphone, short coiled cable, cold-shoe mount and slim protective pouch beside it with clear separation between every component. Saturated coral seamless studio background, clean horizonless sweep, hard directional key light creating crisp geometric shadows, subtle controlled highlights on the metal, highly detailed premium industrial design photography, accurate proportions, sharp focus throughout, generous negative space, no hands, no wildlife, no packaging, no brand name, no logo, no readable text, no watermark. Match the references closely for lighting, composition, material rendering and graphic catalog character.',
width: 1280,
height: 896,
settings: {
backgroundColor: {
rgb: [
238,
82,
65
]
},
styleMatch: 'precise'
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/0b8c853f-ea95-4101-b689-4d7e78572d49.jpg',
'https://assets.runware.ai/assets/inputs/74a05c21-3c51-4ac9-ad61-26517d249de2.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",
"positivePrompt": "Finished ecommerce hero packshot of a professional ultrasonic bat survey kit. Show one compact handheld detector in matte midnight-navy anodized aluminum with a small dark display, tactile yellow controls, perforated microphone grille and precise machined edges, standing in a front three-quarter view. Neatly arrange its detachable directional microphone, short coiled cable, cold-shoe mount and slim protective pouch beside it with clear separation between every component. Saturated coral seamless studio background, clean horizonless sweep, hard directional key light creating crisp geometric shadows, subtle controlled highlights on the metal, highly detailed premium industrial design photography, accurate proportions, sharp focus throughout, generous negative space, no hands, no wildlife, no packaging, no brand name, no logo, no readable text, no watermark. Match the references closely for lighting, composition, material rendering and graphic catalog character.",
"width": 1280,
"height": 896,
"settings": {
"backgroundColor": {
"rgb": [
238,
82,
65
]
},
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/0b8c853f-ea95-4101-b689-4d7e78572d49.jpg",
"https://assets.runware.ai/assets/inputs/74a05c21-3c51-4ac9-ad61-26517d249de2.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": "0dc7cfae-8b1b-45bd-a7b3-1d326567586a",
"model": "recraft:v4@styles",
"positivePrompt": "Finished ecommerce hero packshot of a professional ultrasonic bat survey kit. Show one compact handheld detector in matte midnight-navy anodized aluminum with a small dark display, tactile yellow controls, perforated microphone grille and precise machined edges, standing in a front three-quarter view. Neatly arrange its detachable directional microphone, short coiled cable, cold-shoe mount and slim protective pouch beside it with clear separation between every component. Saturated coral seamless studio background, clean horizonless sweep, hard directional key light creating crisp geometric shadows, subtle controlled highlights on the metal, highly detailed premium industrial design photography, accurate proportions, sharp focus throughout, generous negative space, no hands, no wildlife, no packaging, no brand name, no logo, no readable text, no watermark. Match the references closely for lighting, composition, material rendering and graphic catalog character.",
"width": 1280,
"height": 896,
"settings": {
"backgroundColor": {
"rgb": [
238,
82,
65
]
},
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/0b8c853f-ea95-4101-b689-4d7e78572d49.jpg",
"https://assets.runware.ai/assets/inputs/74a05c21-3c51-4ac9-ad61-26517d249de2.jpg"
]
}
}
]'runware run recraft:v4@styles \
positivePrompt="Finished ecommerce hero packshot of a professional ultrasonic bat survey kit. Show one compact handheld detector in matte midnight-navy anodized aluminum with a small dark display, tactile yellow controls, perforated microphone grille and precise machined edges, standing in a front three-quarter view. Neatly arrange its detachable directional microphone, short coiled cable, cold-shoe mount and slim protective pouch beside it with clear separation between every component. Saturated coral seamless studio background, clean horizonless sweep, hard directional key light creating crisp geometric shadows, subtle controlled highlights on the metal, highly detailed premium industrial design photography, accurate proportions, sharp focus throughout, generous negative space, no hands, no wildlife, no packaging, no brand name, no logo, no readable text, no watermark. Match the references closely for lighting, composition, material rendering and graphic catalog character." \
width=1280 \
height=896 \
settings.backgroundColor.rgb.0=238 \
settings.backgroundColor.rgb.1=82 \
settings.backgroundColor.rgb.2=65 \
settings.styleMatch=precise \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/0b8c853f-ea95-4101-b689-4d7e78572d49.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/74a05c21-3c51-4ac9-ad61-26517d249de2.jpg{
"taskType": "imageInference",
"taskUUID": "0dc7cfae-8b1b-45bd-a7b3-1d326567586a",
"model": "recraft:v4@styles",
"positivePrompt": "Finished ecommerce hero packshot of a professional ultrasonic bat survey kit. Show one compact handheld detector in matte midnight-navy anodized aluminum with a small dark display, tactile yellow controls, perforated microphone grille and precise machined edges, standing in a front three-quarter view. Neatly arrange its detachable directional microphone, short coiled cable, cold-shoe mount and slim protective pouch beside it with clear separation between every component. Saturated coral seamless studio background, clean horizonless sweep, hard directional key light creating crisp geometric shadows, subtle controlled highlights on the metal, highly detailed premium industrial design photography, accurate proportions, sharp focus throughout, generous negative space, no hands, no wildlife, no packaging, no brand name, no logo, no readable text, no watermark. Match the references closely for lighting, composition, material rendering and graphic catalog character.",
"width": 1280,
"height": 896,
"settings": {
"backgroundColor": {
"rgb": [
238,
82,
65
]
},
"styleMatch": "precise"
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/0b8c853f-ea95-4101-b689-4d7e78572d49.jpg",
"https://assets.runware.ai/assets/inputs/74a05c21-3c51-4ac9-ad61-26517d249de2.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "0dc7cfae-8b1b-45bd-a7b3-1d326567586a",
"imageUUID": "ce8fcd60-ff33-4fa6-a6c6-1c00ddb73130",
"imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/3/ii/ce8fcd60-ff33-4fa6-a6c6-1c00ddb73130.jpg",
"seed": 1116646582,
"cost": 0.04,
"outputs": {
"styleId": "11a9087e-3fb1-47f3-b628-a53cf6110bfc"
}
}