gpt-image-2-oai
gpt-image-2-oai
이미지OpenAIgpt-image-2gpt-image-2-oai
GPT-Image 2 是 OpenAI 的图像生成与编辑模型,适合文字生成图片、参考图改图、商品图优化、海报素材、创意概念图和营销视觉制作。它适合需要较高画面质量、指令理解和商业可用性的图片生成场景。
인증
- Base URL
https://api.dreamtoai.com- Authorization
Authorization: Bearer YOUR_API_KEY- Content-Type
application/json- 모델 이름 (model)
gpt-image-2-oai
연동 프로토콜
이 프로토콜을 선택하는 이유
适合已有 OpenAI Images 图片生成接口代码,且希望同步拿到图片结果的用户。
엔드포인트 URL
POST/v1/images/generations
Authorization: Bearer YOUR_API_KEYContent-Type: application/json요청 / 응답 JSON
요청 예제
이미지 URL 사용reference_images[]
{
"model": "gpt-image-2-oai",
"prompt": "生成一张产品海报,白色背景,商业摄影风格",
"size": "2752x1536",
"response_format": "url",
"reference_images": [
"https://example.com/reference.png"
]
}Base64 사용reference_images[].mime_type + data_base64
{
"model": "gpt-image-2-oai",
"prompt": "生成一张产品海报,白色背景,商业摄影风格",
"size": "2752x1536",
"response_format": "url",
"reference_images": [
{
"mime_type": "image/jpeg",
"data_base64": "BASE64_IMAGE_DATA"
}
]
}응답 예제
{
"created": 1710000000,
"data": [
{
"url": "https://example.com/output.png"
}
]
}요청 / 응답 필드
요청 필드
| 필드 | 타입 | 필수 |
|---|---|---|
| model | string | Y |
| prompt | string | Y |
| size | string | Y |
| response_format | string | Y |
| reference_images | array | Y |
응답 필드
| 필드 | 타입 | 필수 |
|---|---|---|
| created | integer | Y |
| data | array | Y |
| data[] | object | Y |
| data[].url | string | Y |
코드 예제
cURLrequest.sh
curl -X POST "https://api.dreamtoai.com/v1/images/generations" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-image-2-oai",
"prompt": "生成一张产品海报,白色背景,商业摄影风格",
"size": "2752x1536",
"response_format": "url",
"reference_images": [
"https://example.com/reference.png"
]
}'
# 참조 파일 업로드 cURL
curl -X POST "https://api.dreamtoai.com/v1/files/upload" \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "kind=image" \
-F "purpose=reference" \
-F "[email protected]"