Model
Parameters
Example Request
Response
Volume discounts are available for almost all models. Reach out at contact@unifically.com to discuss custom pricing.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Generate images with OpenAI’s GPT Image 2 model. See supported inputs, parameters, pricing, response fields, and API examples.
openai/gpt-image-2
| Parameter | Type | Required | Description |
|---|---|---|---|
prompt | string | Yes | Text description of the image to generate |
aspect_ratio | string | No | 1:1, 3:2, 2:3, 16:9. Default: 1:1 |
image_urls | array | No | Reference image URLs for image editing mode |
resolution | string | No | 1K, 2K, 4K. Default: 1K |
nsfw_check | boolean | No | Check uploaded media inputs for NSFW content. Default: true |
curl -X POST https://api.unifically.com/v1/tasks \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "openai/gpt-image-2",
"input": {
"prompt": "A serene mountain landscape",
"aspect_ratio": "16:9",
"resolution": "2K"
}
}'
{
"code": 200,
"success": true,
"data": {
"task_id": "abc123def456",
"status": "processing"
}
}
