GPT 4o Image Reverse

GPT 4o Image VIP Model (Reverse enginereed model)

Pricing:

  • Successful generation: $0.05

Here's how you can use curl to request. You must replace YOUR_API_KEY with your actual API key. Streamed requests are the main option for this model, non-stream are not recommended.

Generate request
curl --location 'https://api.unifically.com/4o-image/generate' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "prompt": "example prompt"
}'

// for images
{
  "prompt": "Make them hug",
  "image_urls": [
    "https://upload.wikimedia.org/wikipedia/en/thumb/5/5c/Mario_by_Shigehisa_Nakaue.png/250px-Mario_by_Shigehisa_Nakaue.png",
    "https://upload.wikimedia.org/wikipedia/en/d/d4/Donkey_Kong_character.png"
  ]
}
Fetch status
curl --location 'https://api.unifically.com/4o-image/status/4926fe1a-b7fb-4da4-b726-8f5de4a33767' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json'
Response
{
    "code": 200,
    "data": {
        "task_id": "4926fe1a-b7fb-4da4-b726-8f5de4a33767",
        "status": "completed",
        "prompt": "prompt here",
        "output": {
            "image_url": "https://filesystem.site/gptimage/vg-assets/assets%2Ftask_015m29x15fwhapyqnrt0m4qj1%2F1758388903_src_0.png?st=2025-09-20T15%3A34%3A08Z&se=2025-09-26T16%3A34%3A08Z&sks=b&skt=2025-09-20T15%3A34%3A08Z&ske=2025-09-26T16%3A34%3A08Z&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skoid=b4ab33b8-2ad4-40af-8ed0-a2b350b6603c&skv=2019-02-02&sv=2018-11-09&sr=b&sp=r&spr=https%2Chttp&sig=lJJuwXdhfeCGQUuNjj8fvn9MMH8xD3n2%2FO9a50%3D&az=oaivgprodscus"
        },
        "error": {}
    }
}

{
    "code": 200,
    "data": {
        "task_id": "4996fe1a-b7fb-4da4-b726-8f5de4a33767",
        "status": "processing", // or "failed"
        "output": {},
        "error": {}
    }
}

Last updated