🚀 Introduction
The Image Ad API allows you to generate IAB-compliant advertising banner images from a single input image. The API automatically produces multiple standard banner sizes suitable for display and mobile ad placements. This endpoint is ideal for creating ready-to-use ad creatives that comply with industry-standard IAB specifications, without manual resizing or design work.⚙️ Quickstart Guide
✅ Prerequisites
Before you begin, ensure you have:- A Creatify account with API access
- Your API credentials (see Quickstart)
📝 Step 1: Submit an IAB Image Generation Request
Use this endpoint to generate IAB-compliant advertising banner images from a single input image.POST /api/iab_images/
🎬 The response includes a unique image generation ID. Save it to check status.
⏳ Step 2: Check IAB Image Generation Status
You can monitor the image generation progress by polling the status endpoint using the returned ID until the status changes todone.
GET /api/iab_images/
✅ Whenstatusisdone, retrieve your generated banners from theoutptutfield.
🔔 Webhook Option
Instead of polling, you can provide awebhook_url in the request to receive the result automatically when the images are ready.When processing completes, the API will send a POST request to your webhook with a payload like this:
🎯 Summary
| Step | Endpoint |
|---|---|
| Create Task | POST /api/iab_images/ |
| Check Status | GET /api/iab_images/{id}/ |
| API Reference | IAB Images Reference |

