Image · OpenAI

GPT Image

Text-to-image and image editing powered by OpenAI's image generation models.

Operational · 2 endpoints · 최저 $0.040
# Works with Claude Code, Codex, Gemini CLI, Cursor, and 50+ agents
npx skills add runapi-ai/gpt-image -g
The -g flag installs globally so every project picks it up.
Or paste this prompt to your AI agent:
Install the GPT Image skill for me:

1. Clone https://github.com/runapi-ai/gpt-image
2. Copy the skills/gpt-image/ directory into your
   user-level skills directory (e.g. ~/.claude/skills/
   for Claude Code, ~/.codex/skills/ for Codex).
3. Verify that SKILL.md is present.
4. Confirm the install path when done.
개요

GPT Image is OpenAI's image generation model supporting both text-to-image and image editing creation with strong compositional control. It produces high-quality visuals across photorealistic and stylized outputs.

  • Installable agent skill
  • Unified API key
  • SDK examples included
  • 실패한 생성은 과금되지 않습니다
요금

요금

실패한 생성은 과금되지 않습니다
Edit image
$0.04-$0.22 / image
Quality: high $0.22
Quality: medium $0.04
Text to image
$0.04-$0.22 / image
Quality: high $0.22
Quality: medium $0.04
스펙

스펙

Model ID gpt-image-1.5
제공사 OpenAI
모달리티 image
Task type asynchronous
과금 call
Endpoint /api/v1/gpt_image/edit_image
Commercial Yes
Status Operational
AGENT USAGE

Use this model from your agent

Prompt + SDK example
# User prompt to the agent
"Generate a flat-design illustration of a team collaborating around a whiteboard, vibrant colors, clean lines."
// Code generated by the agent via @runapi.ai/gpt-image
import { GptImageClient } from '@runapi.ai/gpt-image';

const client = new GptImageClient();
const result = await client.editImage.run({
  model: 'gpt-image-1.5',
  prompt: 'Generate a flat-design illustration of a team collaborating around a whiteboard, vibrant colors, clean lines.',
});
@runapi.ai/gpt-image npm
작동 방식

How to call this model

01

Install the skill

Add the model skill to your agent or install the SDK package.

02

Authenticate once

Use your RunAPI key for every supported model.

03

Send a request

Use the unified schema for the endpoint you need.

04

Receive output

Poll by task ID or handle the callback when the generation completes.

SDK QUICKSTART

SDK quickstart

runapi.ai
curl -X POST https://runapi.ai/api/v1/gpt_image/edit_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "gpt-image-1.5",
  "image_url": "https://cdn.runapi.ai/public/samples/image.jpg",
  "prompt": "Generate a flat-design illustration of a team collaborating around a whiteboard, vibrant colors, clean lines."
}'
import { GptImageClient } from "@runapi.ai/gpt-image";

const client = new GptImageClient();
const result = await client.editImage.run({
    model: "gpt-image-1.5",
    image_url: "https://cdn.runapi.ai/public/samples/image.jpg",
    prompt: "Generate a flat-design illustration of a team collaborating around a whiteboard, vibrant colors, clean lines.",
});
require "runapi/gpt_image"

client = RunApi::GptImage::Client.new
result = client.edit_image.run(
    model: "gpt-image-1.5",
    image_url: "https://cdn.runapi.ai/public/samples/image.jpg",
    prompt: "Generate a flat-design illustration of a team collaborating around a whiteboard, vibrant colors, clean lines."
)
@runapi.ai/gpt-image v1
컨텍스트

Where GPT Image fits

GPT Image is OpenAI's image generation model, supporting text-to-image and image editing. Through RunAPI, all GPT Image endpoints share one key and per-call pricing.

Provider
OpenAI
Modality
Image
RUNAPI를 선택하는 이유

Why use GPT Image through RunAPI

One API key

Use the same credentials across models and providers.

Agent-ready

Installable skills include docs and schema for tool calls.

Predictable billing

Usage-based pricing is visible before you call.

FAQ

Frequently asked questions

How do I call this model?

Use the RunAPI SDK, CLI, or REST endpoint shown on this page.

Do failed generations cost money?

실패한 생성은 과금되지 않습니다

Can agents use it directly?

Yes. Install the model skill and your agent gets the docs, schema, and examples.

지금 시작

Start building with GPT Image.

Endpoints
  • edit_image
  • text_to_image
Category
제공사
Docs