> ## 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 (Gemini 2.5 Flash Image) API

> Quickstart for Google Nano Banana — fast, cost-efficient text-to-image and natural-language image editing.

## Overview

**Nano Banana** (Gemini 2.5 Flash Image) is the original, cost-optimised tier of Google's Nano Banana image family, available on RouterBase. It delivers high-quality images with strong prompt fidelity at a flat per-image price — ideal for high-volume workloads, quick iteration, and batch generation. For the flagship tier see [Nano Banana Pro](/google-gemini-3-pro-image-api/quickstart); for the low-latency successor see [Gemini 3.1 Flash Image (Nano Banana 2)](/google-gemini-3-1-flash-image-api/quickstart).

|                     |                          |
| ------------------- | ------------------------ |
| **Provider**        | Google                   |
| **Family**          | `gemini-2-5-flash-image` |
| **Modality**        | Image                    |
| **Supported tasks** | `text-to-image`, `edit`  |
| **Price**           | \$0.037 per image (flat) |

## 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/text-to-image)
* [Edit](https://routerbase.com/models/google/nano-banana/edit)

## Supported Tasks

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

* [`text-to-image`](/google-gemini-2-5-flash-image-api/text-to-image)
* [`edit`](/google-gemini-2-5-flash-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-2-5-flash-image-t2i", "prompt": "…"}'
```
