> ## Documentation Index
> Fetch the complete documentation index at: https://docs.routerbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Nano Banana Pro (Gemini 3 Pro Image) API

> Quickstart for Google Nano Banana Pro — flagship text-to-image and natural-language image editing up to 4K.

## Overview

**Nano Banana Pro** (Gemini 3 Pro Image) is Google's flagship image model, available on RouterBase. It produces up to 4K-resolution visuals with photo-real lighting, accurate typography, and precise prompt adherence, plus natural-language image editing with up to 14 reference images.

|                     |                         |
| ------------------- | ----------------------- |
| **Provider**        | Google                  |
| **Family**          | `gemini-3-pro-image`    |
| **Modality**        | Image                   |
| **Supported tasks** | `text-to-image`, `edit` |

## Endpoint

```http theme={null}
POST https://routerbase.com/v1/images/generations
```

## Playground

Try it live without writing code:

* [Text-to-image](https://routerbase.com/models/google/nano-banana-pro/text-to-image)
* [Edit](https://routerbase.com/models/google/nano-banana-pro/edit)

## Supported Tasks

Each task has its own reference page with full parameter docs and examples:

* [`text-to-image`](/google-gemini-3-pro-image-api/text-to-image)
* [`edit`](/google-gemini-3-pro-image-api/edit)

## Authentication

All requests require a Bearer token — create one at
[routerbase.com/api-key](https://routerbase.com/api-key).

```bash theme={null}
curl https://routerbase.com/v1/images/generations \
  -H "Authorization: Bearer $ROUTERBASE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "google/gemini-3-pro-image-t2i", "prompt": "…"}'
```
