Nano Banana Pro (Gemini 3 Pro Image)
Both IDs listed above refer to the same model; we support them for backward compatibility.
Model Overview
Google’s smartest text-to-image model as of the November 2025 preview release.
Setup your API Key
If you don’t have an API key for the AI/ML API yet, feel free to use our Quickstart guide.
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.
1Responses
200Success
application/json
post
/v1/images/generations200Success
Quick Example
Let's generate an image of the specified aspect ratio using a simple prompt.
So we obtained the following 1024x1024 image by running this code example:

"aspect_ratio": "1:1", "resolution": "1K"Here’s an example of the output using alternative resolution and aspect_ratio parameters:

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