편집 정밀도가 가장 중요한 작업을 위한 OpenAI의 최고 성능 이미지 모델입니다. 지시를 충실히 따르며, 요청한 부분만 바꾸고 인물의 정체성·구도·조명은 그대로 유지합니다. 가격은 더 빠른 GPT Image 2.5 Flare와 같습니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "openai/gpt-image-2.5-sunburst",
"input": {
"prompt": "A golden retriever puppy wearing tiny sunglasses on a sunny beach, photorealistic, shallow depth of field",
"quality": "high",
"aspect_ratio": "1:1"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 생성할 이미지 설명 또는 입력 이미지를 어떻게 편집할지에 대한 지시. 들어갈 문구는 "따옴표" 안에 넣으세요. |
input_images | array | No | - | 편집/합성용 참조 이미지. 1장을 넣으면 편집, 여러 장을 넣으면 인물·스타일을 하나의 결과로 합성합니다. 자동으로 고해상도로 처리됩니다. |
quality | string | No | auto | 품질 단계. 높을수록 느리고 장당 비용이 큽니다: low 28, medium 109, high 298, xhigh 581, max 1,163 크레딧. auto는 xhigh 요율로 과금됩니다. lowmediumhighxhighmaxauto |
aspect_ratio | string | No | 1:1 | 비율 이름, 명시적 크기, 또는 모델이 고르는 auto. 2560x1440을 넘는 크기는 실험적이라 결과 편차가 클 수 있습니다. 1:13:22:34:33:416:99:16auto1024x10241536x10241024x15361536x11521152x15362048x20482048x11521152x20483840x21602160x3840 |
number_of_images | integer | No | 1 | 생성할 이미지 수 (1~10). 장당 과금됩니다. |
background | string | No | auto | 배경 모드. 투명 배경은 png 또는 webp 출력과 함께 사용하세요. autotransparentopaque |
output_format | string | No | webp | 출력 이미지 포맷 pngjpegwebp |
output_compression | integer | No | 90 | webp/jpeg 출력 압축 수준 (0~100) |
moderation | string | No | auto | 콘텐츠 모더레이션 수준 — low는 필터링이 덜 엄격합니다 autolow |
user_id | string | No | - | 최종 사용자를 식별하는 선택적 고유 ID. OpenAI가 남용 여부를 모니터링하고 탐지하는 데 도움이 됩니다. |
openai_api_key | string | No | - | 본인 OpenAI API 키 (선택 사항 — 비워 두면 게이트웨이 사용) |
이 모델의 input_images 파라미터에 파일을 전달하는 방법은 3가지입니다.
공개 접근 가능한 URL을 직접 전달합니다. Storage API(POST /v1/files/upload-url)로 업로드하면 파일이 S3로 직접 올라가고(파일당 50MB), 반환된 file_url을 그대로 쓰면 됩니다.
{
"model": "openai/gpt-image-2.5-sunburst",
"input": {
"prompt": "your prompt here",
"input_images": ["https://example.com/image.jpg"]
}
}POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 없는 대신, 파일이 API 서버를 거치므로 요청 전체 10MB 제한이 적용됩니다.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=openai/gpt-image-2.5-sunburst" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:input_images=@your_file.png"POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 식별자 |
input | object | Yes | - | 위 테이블의 모델별 파라미터를 포함하는 객체 |
output_folder | string | No | - | 결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가) |
webhook_url | string | No | - | 완료 시 호출할 Webhook URL |
is_public | boolean | No | false | true 시 결과물을 영구 공개 URL로도 제공 |
high 품질 + 사진 용어(심도)로 사실적인 결과
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "openai/gpt-image-2.5-sunburst",
"input": {
"prompt": "A golden retriever puppy wearing tiny sunglasses on a sunny beach, photorealistic, shallow depth of field",
"quality": "high",
"aspect_ratio": "1:1"
}
}'한 가지 요소만 바꾸고 나머지는 고정
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "openai/gpt-image-2.5-sunburst",
"input": {
"prompt": "Replace the grey sofa with a light blue velvet sofa. Keep the camera angle, room layout, lighting and every other object exactly the same.",
"input_images": [
"https://example.com/living-room.jpg"
],
"quality": "high",
"aspect_ratio": "auto"
}
}'인물과 제품을 하나의 장면으로 합성
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "openai/gpt-image-2.5-sunburst",
"input": {
"prompt": "Place the person from the first image holding the handbag from the second image, walking down a Paris street in morning light. Preserve the person's face and the bag's exact design.",
"input_images": [
"https://example.com/model.jpg",
"https://example.com/handbag.png"
],
"quality": "high",
"aspect_ratio": "2:3"
}
}'디자인은 유지한 채 포스터 문구만 현지화
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "openai/gpt-image-2.5-sunburst",
"input": {
"prompt": "Translate all English text on this poster into Korean. The headline should read \"여름 한정 세일\". Keep the layout, fonts' weight and colors unchanged.",
"input_images": [
"https://example.com/poster.png"
],
"quality": "high",
"output_format": "png"
}
}'