Nano Banana Pro (Gemini 3 Pro Image)
Model Overview
Setup your API Key
API Schema
post
Body
modelstring · enumRequiredPossible values:
promptstringRequired
The text prompt describing the content, style, or composition of the image to be generated.
aspect_ratiostring · enumOptionalDefault:
The aspect ratio of the generated image.
1:1Possible values: resolutionstring · enumOptionalDefault:
The size of the generated image.
1KPossible values: num_imagesnumber · min: 1 · max: 4OptionalDefault:
The number of images to generate.
1providerstringOptionalExample:
Provider routing override. google runs native Google with no fallback; fal runs the fal.ai mirror; auto (default) uses the Google -> fal.ai fallback chain. Case-insensitive.
autoResponses
200Success
application/json
post/v1/images/generations
curl -L \
--request POST \
--url 'https://api.aimlapi.com/v1/images/generations' \
--header 'Authorization: Bearer <YOUR_AIMLAPI_KEY>' \
--header 'Content-Type: application/json' \
--data '{
"model": "google/nano-banana-pro",
"prompt": "A T-Rex relaxing on a beach, lying on a sun lounger and wearing sunglasses."
}'200Success
{
"data": [
{
"url": "https://cdn.aimlapi.com/generations/hedgehog/1749730923700-29fe35d2-4aef-4bc5-a911-6c39884d16a8.png",
"b64_json": null
}
],
"meta": {
"usage": {
"credits_used": 120000
}
}
}Quick Example

"aspect_ratio": "1:1", "resolution": "1K"
"aspect_ratio": "16:9", "resolution": "2K"Last updated
Was this helpful?