Get Started
Generate your first AI image in a few simple steps.
What is Banatie?
Banatie is an image generation API for developers. Send a text prompt, get a production-ready image delivered via CDN.
Simple REST API. Optimized AI models that deliver consistent results. Images ready for production use immediately.
Your First Image
Once you have your API key, generate an image with a single request:
curl -X POST https://api.banatie.app/api/v1/generations \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"prompt": "a friendly robot waving hello"}'That's it. The response contains your image:
{
"success": true,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "success",
"outputImage": {
"storageUrl": "https://cdn.banatie.app/my-org/my-project/img/8a3b2c1d-4e5f-6789-abcd-ef0123456789",
"width": 1792,
"height": 1008
}
}
}Open storageUrl in your browser — there's your robot.
Production Ready
The image URL is permanent and served via global CDN. What this means for you:
- •Fast access — images load in milliseconds
- •Edge cached — served from locations closest to your users
- •Global distribution — works fast everywhere in the world
One request. Production-ready result. Drop the URL into your app and ship.
Live URLs
Want to skip the API call entirely? Generate images directly from a URL:
https://cdn.banatie.app/my-org/my-project/live/demo?prompt=a+friendly+robot+waving+helloPut this in an <img src="..."> tag. First request generates the image, all subsequent requests serve it from cache instantly.
Get Your API Key
We're currently in early access. API keys are issued personally.
To request access:
- Go to banatie.app
- Enter your email in the signup form
- We'll send your API key within 24 hours