Nano Banana 2
nano-banana-2-extFast Gemini 3.1 Flash Image route with reference editing and native high-resolution output.
/v1/images/generationsGenerate with Nano Banana 2
Use ImgRouter's unified request contract and this model ID. The example uses recommended defaults from the route's current parameter guide.
curl https://api.imgrouter.com/v1/images/generations \
-H "Authorization: Bearer $IMGROUTER_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: nano-banana-2-ext-generate-001" \
-d '{
"model": "nano-banana-2-ext",
"prompt": "Editorial product photograph, precise materials, soft studio light",
"size": "16:9",
"resolution": "2K",
"n": 1
}'Request body
modelstring · requiredUse nano-banana-2-ext.promptstring · requiredGeneration or editing instruction between 1 and 5,000 characters.sizestringSupported values: auto, 1:1, 3:2, 2:3, 4:3, 3:4, 16:9, 9:16, 5:4, 4:5, 21:9, 1:4, 4:1, 1:8, 8:1.resolutionstringSupported values: 0.5K, 1K, 2K, 4K.ninteger · 1–1Number of output images. Defaults to 1 and cannot exceed 1.reference_imagesstring[] · max 14Public HTTPS source images. Send this field to the edit endpoint.Supported options
Route notes
Supports generation and editing up to 4K with fourteen reference images.
Extreme banner and poster ratios are supported, including 1:8 and 8:1.
Use auto only when automatic framing is acceptable.
Edit with reference images
Send public HTTPS source images with the same core controls. This route accepts up to 14 reference images.
/v1/images/editscurl https://api.imgrouter.com/v1/images/edits \
-H "Authorization: Bearer $IMGROUTER_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: nano-banana-2-ext-edit-001" \
-d '{
"model": "nano-banana-2-ext",
"prompt": "Preserve the subject and composition. Change the scene to soft blue hour.",
"size": "16:9",
"resolution": "2K",
"n": 1,
"reference_images": [
"https://example.com/reference.jpg"
]
}'Describe both the intended change and the details that must remain consistent. Stable source URLs produce the most reliable edit requests.
Read the completed output
Successful requests return completed image URLs and a request ID. Store the assets you need permanently; routed output URLs may expire.
{
"id": "req_01K4…",
"object": "image.generation",
"created": 1787424152,
"data": [
{ "url": "https://static.imgrouter.com/images/req_01K4.webp" }
],
"usage": { "images": 1 }
}Use GET /v1/requests/{request_id} for reconciliation and GET /v1/balance for the authenticated key's current Credit position.