GPT Image 2 API integration
Rivya Public API v1 দিয়ে GPT Image 2 ব্যবহার করুন: model id gpt-image-2, supported inputs, parameters, Files API rules, credits এবং response examples সহ।
gpt-image-2
text, file
reference modes-এর জন্য required
3
ইমেজ
FIXED
20000 characters
Request contract
model id top level-এ পাঠান। Model-specific controls params-এ থাকবে।
| Key | Type | Required | Default | বিবরণ |
|---|---|---|---|---|
| model | string | Yes | gpt-image-2 | gpt-image-2 API model id ব্যবহার করুন। |
| prompt | string | Yes | - | এই model-এর জন্য maximum 20000 characters। |
| params | object | No | - | Model-specific parameter object। allowed keys-এর জন্য নিচের rows ব্যবহার করুন। |
| client_request_id | string | No | - | আপনার system-এ requests trace করার optional client-side id। |
Model parameters
| Key | Type | Required | Default | Range | Options | বিবরণ |
|---|---|---|---|---|---|---|
| aspect_ratio | select | No | 1:1 | - | auto, 1:1, 9:16, 16:9, 4:3, 3:4 | Aspect ratio |
| resolution | select | No | 1K | - | 1K, 2K, 4K | Resolution |
Upload policy
প্রথমে reference files upload করুন, তারপর returned URL এবং duration token params.referenceMediaItems-এর মধ্যে দিন।
Reference images: GPT Image 2 image-to-image task-এর জন্য 16টি পর্যন্ত image reference upload করুন।
16
image
duration verification required হলে video এবং audio references /api/v1/files থেকে durationToken carry করবে।
| kind | Max size | MIME types |
|---|---|---|
| image | 10 MB | image/jpeg, image/png, image/webp |
Minimal request
{
"model": "gpt-image-2",
"prompt": "A clean editorial product image on a soft studio background",
"params": {
"aspect_ratio": "1:1",
"resolution": "1K"
}
}রেফারেন্স ফাইল রিকোয়েস্ট
{
"model": "gpt-image-2",
"prompt": "A clean editorial product image on a soft studio background",
"params": {
"aspect_ratio": "1:1",
"resolution": "1K",
"referenceMediaItems": [
{
"url": "https://cdn.example.com/reference-image.png",
"kind": "image",
"name": "reference-image.png",
"mimeType": "image/png"
}
]
}
}Create response
create endpoint public task id return করে। task succeeds বা fails না করা পর্যন্ত status endpoint poll করুন।
{
"id": "task_gpt_image_2_example",
"status": "queued",
"model": "gpt-image-2",
"reserved_credits": 3,
"final_credits": 0,
"created_at": "2026-05-11T00:00:00.000Z",
"updated_at": "2026-05-11T00:00:00.000Z",
"result": null,
"error": null
}Common errors
validation_failed, insufficient_credits, idempotency_conflict, rate_limited, not_found
কিছু modes-এর জন্য Files API reference uploads দরকার।