Ideogram 2a Remix

Ideogram 2a Remix lets you reinterpret existing images with controlled style shifts. Feed a base reference image. Generate themed variations, visual transformations, and stylized edits while preserving core layout and content. Ideal for brand updates or creative iterations.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
reference-to-image
Lunar Robotics Field Team Portrait$0.04~6s
Remix the reference as a polished aerospace mission-report team portrait. Preserve the same six engineers, their recognizable faces, clothing, body positions, eye-level camera angle, square framing, and three-standing/three-kneeling arrangement. Add one compact autonomous quadruped lunar rover in the open front-center space as the clear new member of the group. The rover has four articulated legs, a matte white ceramic-composite body, exposed graphite joints, a small stereo-camera mast, realistic dust and field wear, and no logos or lettering. It must sit naturally on the ground at human knee height without obscuring anyone. Transform the overcast quarry into a cinematic blue-hour lunar analog test site: cool indigo sky, pale portable floodlights, subtle amber work lamps, textured black basalt, fine drifting dust, and restrained rim light around the team. Maintain believable documentary realism, accurate scale, cohesive shadows, professional annual-report art direction, calm confident mood, sharp faces, natural skin texture, and detailed engineering materials. Exactly six people and one rover. No additional people, robots, text, insignia, or border.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:2@2',
positivePrompt: 'Remix the reference as a polished aerospace mission-report team portrait. Preserve the same six engineers, their recognizable faces, clothing, body positions, eye-level camera angle, square framing, and three-standing/three-kneeling arrangement. Add one compact autonomous quadruped lunar rover in the open front-center space as the clear new member of the group. The rover has four articulated legs, a matte white ceramic-composite body, exposed graphite joints, a small stereo-camera mast, realistic dust and field wear, and no logos or lettering. It must sit naturally on the ground at human knee height without obscuring anyone. Transform the overcast quarry into a cinematic blue-hour lunar analog test site: cool indigo sky, pale portable floodlights, subtle amber work lamps, textured black basalt, fine drifting dust, and restrained rim light around the team. Maintain believable documentary realism, accurate scale, cohesive shadows, professional annual-report art direction, calm confident mood, sharp faces, natural skin texture, and detailed engineering materials. Exactly six people and one rover. No additional people, robots, text, insignia, or border.',
width: 1024,
height: 1024,
providerSettings: {
ideogram: {
renderingSpeed: 'DEFAULT',
magicPrompt: 'AUTO'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/98a46b93-8010-460d-984f-ddffc179dbef.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": "ideogram:2@2",
"positivePrompt": "Remix the reference as a polished aerospace mission-report team portrait. Preserve the same six engineers, their recognizable faces, clothing, body positions, eye-level camera angle, square framing, and three-standing/three-kneeling arrangement. Add one compact autonomous quadruped lunar rover in the open front-center space as the clear new member of the group. The rover has four articulated legs, a matte white ceramic-composite body, exposed graphite joints, a small stereo-camera mast, realistic dust and field wear, and no logos or lettering. It must sit naturally on the ground at human knee height without obscuring anyone. Transform the overcast quarry into a cinematic blue-hour lunar analog test site: cool indigo sky, pale portable floodlights, subtle amber work lamps, textured black basalt, fine drifting dust, and restrained rim light around the team. Maintain believable documentary realism, accurate scale, cohesive shadows, professional annual-report art direction, calm confident mood, sharp faces, natural skin texture, and detailed engineering materials. Exactly six people and one rover. No additional people, robots, text, insignia, or border.",
"width": 1024,
"height": 1024,
"providerSettings": {
"ideogram": {
"renderingSpeed": "DEFAULT",
"magicPrompt": "AUTO"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/98a46b93-8010-460d-984f-ddffc179dbef.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": "200e2290-d4b8-4a1c-952e-2372f9acd44a",
"model": "ideogram:2@2",
"positivePrompt": "Remix the reference as a polished aerospace mission-report team portrait. Preserve the same six engineers, their recognizable faces, clothing, body positions, eye-level camera angle, square framing, and three-standing/three-kneeling arrangement. Add one compact autonomous quadruped lunar rover in the open front-center space as the clear new member of the group. The rover has four articulated legs, a matte white ceramic-composite body, exposed graphite joints, a small stereo-camera mast, realistic dust and field wear, and no logos or lettering. It must sit naturally on the ground at human knee height without obscuring anyone. Transform the overcast quarry into a cinematic blue-hour lunar analog test site: cool indigo sky, pale portable floodlights, subtle amber work lamps, textured black basalt, fine drifting dust, and restrained rim light around the team. Maintain believable documentary realism, accurate scale, cohesive shadows, professional annual-report art direction, calm confident mood, sharp faces, natural skin texture, and detailed engineering materials. Exactly six people and one rover. No additional people, robots, text, insignia, or border.",
"width": 1024,
"height": 1024,
"providerSettings": {
"ideogram": {
"renderingSpeed": "DEFAULT",
"magicPrompt": "AUTO"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/98a46b93-8010-460d-984f-ddffc179dbef.jpg"
]
}
}
]'runware run ideogram:2@2 \
positivePrompt="Remix the reference as a polished aerospace mission-report team portrait. Preserve the same six engineers, their recognizable faces, clothing, body positions, eye-level camera angle, square framing, and three-standing/three-kneeling arrangement. Add one compact autonomous quadruped lunar rover in the open front-center space as the clear new member of the group. The rover has four articulated legs, a matte white ceramic-composite body, exposed graphite joints, a small stereo-camera mast, realistic dust and field wear, and no logos or lettering. It must sit naturally on the ground at human knee height without obscuring anyone. Transform the overcast quarry into a cinematic blue-hour lunar analog test site: cool indigo sky, pale portable floodlights, subtle amber work lamps, textured black basalt, fine drifting dust, and restrained rim light around the team. Maintain believable documentary realism, accurate scale, cohesive shadows, professional annual-report art direction, calm confident mood, sharp faces, natural skin texture, and detailed engineering materials. Exactly six people and one rover. No additional people, robots, text, insignia, or border." \
width=1024 \
height=1024 \
providerSettings.ideogram.renderingSpeed=DEFAULT \
providerSettings.ideogram.magicPrompt=AUTO \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/98a46b93-8010-460d-984f-ddffc179dbef.jpg{
"taskType": "imageInference",
"taskUUID": "200e2290-d4b8-4a1c-952e-2372f9acd44a",
"model": "ideogram:2@2",
"positivePrompt": "Remix the reference as a polished aerospace mission-report team portrait. Preserve the same six engineers, their recognizable faces, clothing, body positions, eye-level camera angle, square framing, and three-standing/three-kneeling arrangement. Add one compact autonomous quadruped lunar rover in the open front-center space as the clear new member of the group. The rover has four articulated legs, a matte white ceramic-composite body, exposed graphite joints, a small stereo-camera mast, realistic dust and field wear, and no logos or lettering. It must sit naturally on the ground at human knee height without obscuring anyone. Transform the overcast quarry into a cinematic blue-hour lunar analog test site: cool indigo sky, pale portable floodlights, subtle amber work lamps, textured black basalt, fine drifting dust, and restrained rim light around the team. Maintain believable documentary realism, accurate scale, cohesive shadows, professional annual-report art direction, calm confident mood, sharp faces, natural skin texture, and detailed engineering materials. Exactly six people and one rover. No additional people, robots, text, insignia, or border.",
"width": 1024,
"height": 1024,
"providerSettings": {
"ideogram": {
"renderingSpeed": "DEFAULT",
"magicPrompt": "AUTO"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/98a46b93-8010-460d-984f-ddffc179dbef.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "200e2290-d4b8-4a1c-952e-2372f9acd44a",
"imageUUID": "fa0acd98-d725-4a5a-95b0-7e83e4c90ed0",
"imageURL": "https://im.runware.ai/image/os/a04d20/ws/3/ii/fa0acd98-d725-4a5a-95b0-7e83e4c90ed0.jpg",
"seed": 1740050589,
"cost": 0.04
}reference-to-image
Coastal Memorial Urn Lifestyle Image$0.04~5s
Transform the studio reference into a refined lifestyle photograph for a premium memorial-products catalog. Preserve the urn as the unmistakable hero product: retain its exact rounded silhouette, proportions, fitted lid, horizontal fluting, matte chalk-colored mineral material, three-quarter viewing angle, central placement, and approximate scale from the source image. Place it on a pale, weathered limestone ledge within a quiet open-air coastal memorial garden at dawn. Beyond the ledge, show a softly defocused calm sea and hazy horizon. Add only restrained natural details around the base: two dried fennel stems, a few small sea-polished stones, and a folded undyed linen ribbon, without obscuring the urn. Gentle side light creates delicate relief across the fluting and a realistic soft shadow. Mediterranean minimalism, subdued palette of limestone, sea glass, oat, and misty blue, contemplative and dignified rather than gloomy. Photorealistic high-end editorial product photography, natural textures, shallow depth of field, square composition, no people, no lettering, no logo, no packaging.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'ideogram:2@2',
positivePrompt: 'Transform the studio reference into a refined lifestyle photograph for a premium memorial-products catalog. Preserve the urn as the unmistakable hero product: retain its exact rounded silhouette, proportions, fitted lid, horizontal fluting, matte chalk-colored mineral material, three-quarter viewing angle, central placement, and approximate scale from the source image. Place it on a pale, weathered limestone ledge within a quiet open-air coastal memorial garden at dawn. Beyond the ledge, show a softly defocused calm sea and hazy horizon. Add only restrained natural details around the base: two dried fennel stems, a few small sea-polished stones, and a folded undyed linen ribbon, without obscuring the urn. Gentle side light creates delicate relief across the fluting and a realistic soft shadow. Mediterranean minimalism, subdued palette of limestone, sea glass, oat, and misty blue, contemplative and dignified rather than gloomy. Photorealistic high-end editorial product photography, natural textures, shallow depth of field, square composition, no people, no lettering, no logo, no packaging.',
width: 1024,
height: 1024,
providerSettings: {
ideogram: {
renderingSpeed: 'DEFAULT',
magicPrompt: 'AUTO'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/6d31e158-65cc-470e-bd29-e4f4628c5cd0.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": "ideogram:2@2",
"positivePrompt": "Transform the studio reference into a refined lifestyle photograph for a premium memorial-products catalog. Preserve the urn as the unmistakable hero product: retain its exact rounded silhouette, proportions, fitted lid, horizontal fluting, matte chalk-colored mineral material, three-quarter viewing angle, central placement, and approximate scale from the source image. Place it on a pale, weathered limestone ledge within a quiet open-air coastal memorial garden at dawn. Beyond the ledge, show a softly defocused calm sea and hazy horizon. Add only restrained natural details around the base: two dried fennel stems, a few small sea-polished stones, and a folded undyed linen ribbon, without obscuring the urn. Gentle side light creates delicate relief across the fluting and a realistic soft shadow. Mediterranean minimalism, subdued palette of limestone, sea glass, oat, and misty blue, contemplative and dignified rather than gloomy. Photorealistic high-end editorial product photography, natural textures, shallow depth of field, square composition, no people, no lettering, no logo, no packaging.",
"width": 1024,
"height": 1024,
"providerSettings": {
"ideogram": {
"renderingSpeed": "DEFAULT",
"magicPrompt": "AUTO"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/6d31e158-65cc-470e-bd29-e4f4628c5cd0.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": "9892cc49-7295-4eba-a839-5b671583e4bf",
"model": "ideogram:2@2",
"positivePrompt": "Transform the studio reference into a refined lifestyle photograph for a premium memorial-products catalog. Preserve the urn as the unmistakable hero product: retain its exact rounded silhouette, proportions, fitted lid, horizontal fluting, matte chalk-colored mineral material, three-quarter viewing angle, central placement, and approximate scale from the source image. Place it on a pale, weathered limestone ledge within a quiet open-air coastal memorial garden at dawn. Beyond the ledge, show a softly defocused calm sea and hazy horizon. Add only restrained natural details around the base: two dried fennel stems, a few small sea-polished stones, and a folded undyed linen ribbon, without obscuring the urn. Gentle side light creates delicate relief across the fluting and a realistic soft shadow. Mediterranean minimalism, subdued palette of limestone, sea glass, oat, and misty blue, contemplative and dignified rather than gloomy. Photorealistic high-end editorial product photography, natural textures, shallow depth of field, square composition, no people, no lettering, no logo, no packaging.",
"width": 1024,
"height": 1024,
"providerSettings": {
"ideogram": {
"renderingSpeed": "DEFAULT",
"magicPrompt": "AUTO"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/6d31e158-65cc-470e-bd29-e4f4628c5cd0.jpg"
]
}
}
]'runware run ideogram:2@2 \
positivePrompt="Transform the studio reference into a refined lifestyle photograph for a premium memorial-products catalog. Preserve the urn as the unmistakable hero product: retain its exact rounded silhouette, proportions, fitted lid, horizontal fluting, matte chalk-colored mineral material, three-quarter viewing angle, central placement, and approximate scale from the source image. Place it on a pale, weathered limestone ledge within a quiet open-air coastal memorial garden at dawn. Beyond the ledge, show a softly defocused calm sea and hazy horizon. Add only restrained natural details around the base: two dried fennel stems, a few small sea-polished stones, and a folded undyed linen ribbon, without obscuring the urn. Gentle side light creates delicate relief across the fluting and a realistic soft shadow. Mediterranean minimalism, subdued palette of limestone, sea glass, oat, and misty blue, contemplative and dignified rather than gloomy. Photorealistic high-end editorial product photography, natural textures, shallow depth of field, square composition, no people, no lettering, no logo, no packaging." \
width=1024 \
height=1024 \
providerSettings.ideogram.renderingSpeed=DEFAULT \
providerSettings.ideogram.magicPrompt=AUTO \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/6d31e158-65cc-470e-bd29-e4f4628c5cd0.jpg{
"taskType": "imageInference",
"taskUUID": "9892cc49-7295-4eba-a839-5b671583e4bf",
"model": "ideogram:2@2",
"positivePrompt": "Transform the studio reference into a refined lifestyle photograph for a premium memorial-products catalog. Preserve the urn as the unmistakable hero product: retain its exact rounded silhouette, proportions, fitted lid, horizontal fluting, matte chalk-colored mineral material, three-quarter viewing angle, central placement, and approximate scale from the source image. Place it on a pale, weathered limestone ledge within a quiet open-air coastal memorial garden at dawn. Beyond the ledge, show a softly defocused calm sea and hazy horizon. Add only restrained natural details around the base: two dried fennel stems, a few small sea-polished stones, and a folded undyed linen ribbon, without obscuring the urn. Gentle side light creates delicate relief across the fluting and a realistic soft shadow. Mediterranean minimalism, subdued palette of limestone, sea glass, oat, and misty blue, contemplative and dignified rather than gloomy. Photorealistic high-end editorial product photography, natural textures, shallow depth of field, square composition, no people, no lettering, no logo, no packaging.",
"width": 1024,
"height": 1024,
"providerSettings": {
"ideogram": {
"renderingSpeed": "DEFAULT",
"magicPrompt": "AUTO"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/6d31e158-65cc-470e-bd29-e4f4628c5cd0.jpg"
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "9892cc49-7295-4eba-a839-5b671583e4bf",
"imageUUID": "8a09b3b9-70fc-4aea-81fc-127c3f699c62",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/8a09b3b9-70fc-4aea-81fc-127c3f699c62.jpg",
"seed": 1246419517,
"cost": 0.04
}