GPT Image 1

GPT Image 1 is OpenAI’s native GPT 4o image model. It creates detailed visuals from text prompts. It supports diverse styles and precise layouts. It can edit existing images with masks. It renders readable text in scenes. It suits design tools and production workflows.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
Patchwork Airship Regatta Panorama

Create a sweeping wide scene of an airborne regatta above a fertile river valley, inspired by the reference images. Feature multiple handcrafted airships with patched fabric envelopes, carved wooden gondolas, braided ropes, spinning pennants, and clever mechanical details powered by wind and ballast rather than engines. Below them, show terraced fields, curved bridges, clustered hillside homes, and soft haze opening into sunlit distance. Include spectators on rooftops and hill paths waving colored streamers. One lead airship carries a crisp readable banner that says "GRAND SKY RACE". Emphasize tactile textiles, stitched seams, painted insignias, layered depth, and believable atmosphere. Style: whimsical yet grounded storybook realism, highly detailed, dynamic composition, warm daylight, celebratory but elegant, no futuristic city elements.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:1@1',
positivePrompt: 'Create a sweeping wide scene of an airborne regatta above a fertile river valley, inspired by the reference images. Feature multiple handcrafted airships with patched fabric envelopes, carved wooden gondolas, braided ropes, spinning pennants, and clever mechanical details powered by wind and ballast rather than engines. Below them, show terraced fields, curved bridges, clustered hillside homes, and soft haze opening into sunlit distance. Include spectators on rooftops and hill paths waving colored streamers. One lead airship carries a crisp readable banner that says "GRAND SKY RACE". Emphasize tactile textiles, stitched seams, painted insignias, layered depth, and believable atmosphere. Style: whimsical yet grounded storybook realism, highly detailed, dynamic composition, warm daylight, celebratory but elegant, no futuristic city elements.',
width: 1536,
height: 1024,
providerSettings: {
openai: {
quality: 'high',
background: 'opaque'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/df2fd8bd-fe32-46c8-827d-c83c1df3fa68.jpg',
'https://assets.runware.ai/assets/inputs/1f3f4502-8429-4c45-958d-2712e4c11db0.jpg',
'https://assets.runware.ai/assets/inputs/b8a07ab8-d67a-4662-a078-099984916aa1.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": "openai:1@1",
"positivePrompt": "Create a sweeping wide scene of an airborne regatta above a fertile river valley, inspired by the reference images. Feature multiple handcrafted airships with patched fabric envelopes, carved wooden gondolas, braided ropes, spinning pennants, and clever mechanical details powered by wind and ballast rather than engines. Below them, show terraced fields, curved bridges, clustered hillside homes, and soft haze opening into sunlit distance. Include spectators on rooftops and hill paths waving colored streamers. One lead airship carries a crisp readable banner that says \"GRAND SKY RACE\". Emphasize tactile textiles, stitched seams, painted insignias, layered depth, and believable atmosphere. Style: whimsical yet grounded storybook realism, highly detailed, dynamic composition, warm daylight, celebratory but elegant, no futuristic city elements.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high",
"background": "opaque"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/df2fd8bd-fe32-46c8-827d-c83c1df3fa68.jpg",
"https://assets.runware.ai/assets/inputs/1f3f4502-8429-4c45-958d-2712e4c11db0.jpg",
"https://assets.runware.ai/assets/inputs/b8a07ab8-d67a-4662-a078-099984916aa1.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": "e038783d-efa6-45df-ae3f-f06d3a7c435f",
"model": "openai:1@1",
"positivePrompt": "Create a sweeping wide scene of an airborne regatta above a fertile river valley, inspired by the reference images. Feature multiple handcrafted airships with patched fabric envelopes, carved wooden gondolas, braided ropes, spinning pennants, and clever mechanical details powered by wind and ballast rather than engines. Below them, show terraced fields, curved bridges, clustered hillside homes, and soft haze opening into sunlit distance. Include spectators on rooftops and hill paths waving colored streamers. One lead airship carries a crisp readable banner that says \"GRAND SKY RACE\". Emphasize tactile textiles, stitched seams, painted insignias, layered depth, and believable atmosphere. Style: whimsical yet grounded storybook realism, highly detailed, dynamic composition, warm daylight, celebratory but elegant, no futuristic city elements.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high",
"background": "opaque"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/df2fd8bd-fe32-46c8-827d-c83c1df3fa68.jpg",
"https://assets.runware.ai/assets/inputs/1f3f4502-8429-4c45-958d-2712e4c11db0.jpg",
"https://assets.runware.ai/assets/inputs/b8a07ab8-d67a-4662-a078-099984916aa1.jpg"
]
}
}
]'runware run openai:1@1 \
positivePrompt="Create a sweeping wide scene of an airborne regatta above a fertile river valley, inspired by the reference images. Feature multiple handcrafted airships with patched fabric envelopes, carved wooden gondolas, braided ropes, spinning pennants, and clever mechanical details powered by wind and ballast rather than engines. Below them, show terraced fields, curved bridges, clustered hillside homes, and soft haze opening into sunlit distance. Include spectators on rooftops and hill paths waving colored streamers. One lead airship carries a crisp readable banner that says \"GRAND SKY RACE\". Emphasize tactile textiles, stitched seams, painted insignias, layered depth, and believable atmosphere. Style: whimsical yet grounded storybook realism, highly detailed, dynamic composition, warm daylight, celebratory but elegant, no futuristic city elements." \
width=1536 \
height=1024 \
providerSettings.openai.quality=high \
providerSettings.openai.background=opaque \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/df2fd8bd-fe32-46c8-827d-c83c1df3fa68.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/1f3f4502-8429-4c45-958d-2712e4c11db0.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/b8a07ab8-d67a-4662-a078-099984916aa1.jpg{
"taskType": "imageInference",
"taskUUID": "e038783d-efa6-45df-ae3f-f06d3a7c435f",
"model": "openai:1@1",
"positivePrompt": "Create a sweeping wide scene of an airborne regatta above a fertile river valley, inspired by the reference images. Feature multiple handcrafted airships with patched fabric envelopes, carved wooden gondolas, braided ropes, spinning pennants, and clever mechanical details powered by wind and ballast rather than engines. Below them, show terraced fields, curved bridges, clustered hillside homes, and soft haze opening into sunlit distance. Include spectators on rooftops and hill paths waving colored streamers. One lead airship carries a crisp readable banner that says \"GRAND SKY RACE\". Emphasize tactile textiles, stitched seams, painted insignias, layered depth, and believable atmosphere. Style: whimsical yet grounded storybook realism, highly detailed, dynamic composition, warm daylight, celebratory but elegant, no futuristic city elements.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high",
"background": "opaque"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/df2fd8bd-fe32-46c8-827d-c83c1df3fa68.jpg",
"https://assets.runware.ai/assets/inputs/1f3f4502-8429-4c45-958d-2712e4c11db0.jpg",
"https://assets.runware.ai/assets/inputs/b8a07ab8-d67a-4662-a078-099984916aa1.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "e038783d-efa6-45df-ae3f-f06d3a7c435f",
"imageUUID": "629c8f87-b67d-4de1-8da3-ea488c2336e4",
"imageURL": "https://im.runware.ai/image/os/a13d12/ws/3/ii/629c8f87-b67d-4de1-8da3-ea488c2336e4.jpg",
"cost": 0.25
}Submerged Ballroom Chess Banquet

An opulent underwater ballroom inside a sunken palace, viewed in a wide cinematic composition. A grand banquet table is arranged like a chessboard, with guests dressed as eccentric nobles and musicians, each posed like chess pieces in mid-celebration. Silver candelabras are sealed in glass domes, drifting ribbons curl through the water, and schools of tiny fish weave between crystal chandeliers. Through cracked arched windows, sea grass and distant ruins sway outside. On the central place cards and menu signage, render clearly readable text that says: "TIDEHOUSE GRAND MATCH" and "Table 7". Color palette of tarnished gold, deep teal, ivory, and coral. Highly detailed textures, elegant surrealism, dramatic depth, refined lighting beams filtering from above, crisp focal detail, imaginative yet believable staging.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:1@1',
positivePrompt: 'An opulent underwater ballroom inside a sunken palace, viewed in a wide cinematic composition. A grand banquet table is arranged like a chessboard, with guests dressed as eccentric nobles and musicians, each posed like chess pieces in mid-celebration. Silver candelabras are sealed in glass domes, drifting ribbons curl through the water, and schools of tiny fish weave between crystal chandeliers. Through cracked arched windows, sea grass and distant ruins sway outside. On the central place cards and menu signage, render clearly readable text that says: "TIDEHOUSE GRAND MATCH" and "Table 7". Color palette of tarnished gold, deep teal, ivory, and coral. Highly detailed textures, elegant surrealism, dramatic depth, refined lighting beams filtering from above, crisp focal detail, imaginative yet believable staging.',
width: 1536,
height: 1024,
providerSettings: {
openai: {
quality: 'high',
background: 'opaque'
}
}
})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": "openai:1@1",
"positivePrompt": "An opulent underwater ballroom inside a sunken palace, viewed in a wide cinematic composition. A grand banquet table is arranged like a chessboard, with guests dressed as eccentric nobles and musicians, each posed like chess pieces in mid-celebration. Silver candelabras are sealed in glass domes, drifting ribbons curl through the water, and schools of tiny fish weave between crystal chandeliers. Through cracked arched windows, sea grass and distant ruins sway outside. On the central place cards and menu signage, render clearly readable text that says: \"TIDEHOUSE GRAND MATCH\" and \"Table 7\". Color palette of tarnished gold, deep teal, ivory, and coral. Highly detailed textures, elegant surrealism, dramatic depth, refined lighting beams filtering from above, crisp focal detail, imaginative yet believable staging.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high",
"background": "opaque"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "2618f98c-7ed7-46bf-8bdd-073f8a4379de",
"model": "openai:1@1",
"positivePrompt": "An opulent underwater ballroom inside a sunken palace, viewed in a wide cinematic composition. A grand banquet table is arranged like a chessboard, with guests dressed as eccentric nobles and musicians, each posed like chess pieces in mid-celebration. Silver candelabras are sealed in glass domes, drifting ribbons curl through the water, and schools of tiny fish weave between crystal chandeliers. Through cracked arched windows, sea grass and distant ruins sway outside. On the central place cards and menu signage, render clearly readable text that says: \"TIDEHOUSE GRAND MATCH\" and \"Table 7\". Color palette of tarnished gold, deep teal, ivory, and coral. Highly detailed textures, elegant surrealism, dramatic depth, refined lighting beams filtering from above, crisp focal detail, imaginative yet believable staging.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high",
"background": "opaque"
}
}
}
]'runware run openai:1@1 \
positivePrompt="An opulent underwater ballroom inside a sunken palace, viewed in a wide cinematic composition. A grand banquet table is arranged like a chessboard, with guests dressed as eccentric nobles and musicians, each posed like chess pieces in mid-celebration. Silver candelabras are sealed in glass domes, drifting ribbons curl through the water, and schools of tiny fish weave between crystal chandeliers. Through cracked arched windows, sea grass and distant ruins sway outside. On the central place cards and menu signage, render clearly readable text that says: \"TIDEHOUSE GRAND MATCH\" and \"Table 7\". Color palette of tarnished gold, deep teal, ivory, and coral. Highly detailed textures, elegant surrealism, dramatic depth, refined lighting beams filtering from above, crisp focal detail, imaginative yet believable staging." \
width=1536 \
height=1024 \
providerSettings.openai.quality=high \
providerSettings.openai.background=opaque{
"taskType": "imageInference",
"taskUUID": "2618f98c-7ed7-46bf-8bdd-073f8a4379de",
"model": "openai:1@1",
"positivePrompt": "An opulent underwater ballroom inside a sunken palace, viewed in a wide cinematic composition. A grand banquet table is arranged like a chessboard, with guests dressed as eccentric nobles and musicians, each posed like chess pieces in mid-celebration. Silver candelabras are sealed in glass domes, drifting ribbons curl through the water, and schools of tiny fish weave between crystal chandeliers. Through cracked arched windows, sea grass and distant ruins sway outside. On the central place cards and menu signage, render clearly readable text that says: \"TIDEHOUSE GRAND MATCH\" and \"Table 7\". Color palette of tarnished gold, deep teal, ivory, and coral. Highly detailed textures, elegant surrealism, dramatic depth, refined lighting beams filtering from above, crisp focal detail, imaginative yet believable staging.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high",
"background": "opaque"
}
}
}{
"taskType": "imageInference",
"taskUUID": "2618f98c-7ed7-46bf-8bdd-073f8a4379de",
"imageUUID": "f00c2035-def7-47fe-9382-15e8fff90e71",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/2/ii/f00c2035-def7-47fe-9382-15e8fff90e71.jpg",
"cost": 0.25
}Rainy Tram Stop Signage

Create a detailed cinematic street scene at a rainy tram stop in a historic European-style city square. Use the reference images as inspiration: the first for the tram, wet pavement, and camera angle; the second for crisp readable transit signage; the third for surreal giant koi-shaped balloons drifting overhead. Show a red tram paused at the platform, commuters with umbrellas, puddle reflections, overhead wires, and a prominently visible stop sign with clearly readable text: 'RIVER LOOP', 'Platform B', and 'Next 6 min'. Blend realism with gentle absurdity, maintaining believable lighting and perspective. Emphasize sharp environmental detail, natural faces, accurate lettering, and a layered composition with foreground raindrops, midground passengers, and background architecture.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'openai:1@1',
positivePrompt: 'Create a detailed cinematic street scene at a rainy tram stop in a historic European-style city square. Use the reference images as inspiration: the first for the tram, wet pavement, and camera angle; the second for crisp readable transit signage; the third for surreal giant koi-shaped balloons drifting overhead. Show a red tram paused at the platform, commuters with umbrellas, puddle reflections, overhead wires, and a prominently visible stop sign with clearly readable text: \'RIVER LOOP\', \'Platform B\', and \'Next 6 min\'. Blend realism with gentle absurdity, maintaining believable lighting and perspective. Emphasize sharp environmental detail, natural faces, accurate lettering, and a layered composition with foreground raindrops, midground passengers, and background architecture.',
width: 1536,
height: 1024,
providerSettings: {
openai: {
quality: 'high',
background: 'opaque'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/e77f2c5d-e6a2-4562-b686-32aeb13653e4.jpg',
'https://assets.runware.ai/assets/inputs/fe9b0513-422a-48fe-af34-514ae3468f34.jpg',
'https://assets.runware.ai/assets/inputs/50356796-f120-4bea-a5a4-509ba21950fd.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": "openai:1@1",
"positivePrompt": "Create a detailed cinematic street scene at a rainy tram stop in a historic European-style city square. Use the reference images as inspiration: the first for the tram, wet pavement, and camera angle; the second for crisp readable transit signage; the third for surreal giant koi-shaped balloons drifting overhead. Show a red tram paused at the platform, commuters with umbrellas, puddle reflections, overhead wires, and a prominently visible stop sign with clearly readable text: 'RIVER LOOP', 'Platform B', and 'Next 6 min'. Blend realism with gentle absurdity, maintaining believable lighting and perspective. Emphasize sharp environmental detail, natural faces, accurate lettering, and a layered composition with foreground raindrops, midground passengers, and background architecture.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high",
"background": "opaque"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/e77f2c5d-e6a2-4562-b686-32aeb13653e4.jpg",
"https://assets.runware.ai/assets/inputs/fe9b0513-422a-48fe-af34-514ae3468f34.jpg",
"https://assets.runware.ai/assets/inputs/50356796-f120-4bea-a5a4-509ba21950fd.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": "23c525ae-b9fe-4eb4-8617-0ae8e8805bea",
"model": "openai:1@1",
"positivePrompt": "Create a detailed cinematic street scene at a rainy tram stop in a historic European-style city square. Use the reference images as inspiration: the first for the tram, wet pavement, and camera angle; the second for crisp readable transit signage; the third for surreal giant koi-shaped balloons drifting overhead. Show a red tram paused at the platform, commuters with umbrellas, puddle reflections, overhead wires, and a prominently visible stop sign with clearly readable text: 'RIVER LOOP', 'Platform B', and 'Next 6 min'. Blend realism with gentle absurdity, maintaining believable lighting and perspective. Emphasize sharp environmental detail, natural faces, accurate lettering, and a layered composition with foreground raindrops, midground passengers, and background architecture.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high",
"background": "opaque"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/e77f2c5d-e6a2-4562-b686-32aeb13653e4.jpg",
"https://assets.runware.ai/assets/inputs/fe9b0513-422a-48fe-af34-514ae3468f34.jpg",
"https://assets.runware.ai/assets/inputs/50356796-f120-4bea-a5a4-509ba21950fd.jpg"
]
}
}
]'runware run openai:1@1 \
positivePrompt="Create a detailed cinematic street scene at a rainy tram stop in a historic European-style city square. Use the reference images as inspiration: the first for the tram, wet pavement, and camera angle; the second for crisp readable transit signage; the third for surreal giant koi-shaped balloons drifting overhead. Show a red tram paused at the platform, commuters with umbrellas, puddle reflections, overhead wires, and a prominently visible stop sign with clearly readable text: 'RIVER LOOP', 'Platform B', and 'Next 6 min'. Blend realism with gentle absurdity, maintaining believable lighting and perspective. Emphasize sharp environmental detail, natural faces, accurate lettering, and a layered composition with foreground raindrops, midground passengers, and background architecture." \
width=1536 \
height=1024 \
providerSettings.openai.quality=high \
providerSettings.openai.background=opaque \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/e77f2c5d-e6a2-4562-b686-32aeb13653e4.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/fe9b0513-422a-48fe-af34-514ae3468f34.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/50356796-f120-4bea-a5a4-509ba21950fd.jpg{
"taskType": "imageInference",
"taskUUID": "23c525ae-b9fe-4eb4-8617-0ae8e8805bea",
"model": "openai:1@1",
"positivePrompt": "Create a detailed cinematic street scene at a rainy tram stop in a historic European-style city square. Use the reference images as inspiration: the first for the tram, wet pavement, and camera angle; the second for crisp readable transit signage; the third for surreal giant koi-shaped balloons drifting overhead. Show a red tram paused at the platform, commuters with umbrellas, puddle reflections, overhead wires, and a prominently visible stop sign with clearly readable text: 'RIVER LOOP', 'Platform B', and 'Next 6 min'. Blend realism with gentle absurdity, maintaining believable lighting and perspective. Emphasize sharp environmental detail, natural faces, accurate lettering, and a layered composition with foreground raindrops, midground passengers, and background architecture.",
"width": 1536,
"height": 1024,
"providerSettings": {
"openai": {
"quality": "high",
"background": "opaque"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/e77f2c5d-e6a2-4562-b686-32aeb13653e4.jpg",
"https://assets.runware.ai/assets/inputs/fe9b0513-422a-48fe-af34-514ae3468f34.jpg",
"https://assets.runware.ai/assets/inputs/50356796-f120-4bea-a5a4-509ba21950fd.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "23c525ae-b9fe-4eb4-8617-0ae8e8805bea",
"imageUUID": "cf931a2b-c0d3-4d4e-927a-c2ba1bf191f3",
"imageURL": "https://im.runware.ai/image/os/a19d05/ws/2/ii/cf931a2b-c0d3-4d4e-927a-c2ba1bf191f3.jpg",
"cost": 0.25
}