Marketplace/nano-banana
Nano Banana

Nano Banana

Active

by Faro

2 tools
upstream:

Generate and edit images using Google Gemini models. Standard tier uses Gemini 2.5 Flash Image for fast, affordable generation; Pro tier uses Gemini 3 Pro Image for higher quality and 4K support.

Imageimage-generationgeminigoogletext-to-image

Tools (2)

Standard

Usage-based · ~$0.05 per generated image (1024×1024). Supports image-to-image editing at the same rate. Charged only on successful responses.

Generate or edit an image with Google Nano Banana (Gemini 2.5 Flash Image). Pass only a prompt for text-to-image; add image_data+image_mime_type (base64) or image_url+image_url_mime_type (public URL) for image-to-image editing.

Usage-based · ~$0.05 per generated image (1024×1024). Supports image-to-image editing at the same rate. Charged only on successful responses.

Example prompts

  • Generate an image from a text prompt cheaply with Gemini
  • Quickly create a thumbnail or hero image for a blog post
  • Edit an image with a simple text instruction
  • Remove or replace the background of an image

Parameters

promptstringrequired

Text instruction for the image to generate or edit.

image_urlstringoptional

Publicly accessible URL of source image. Requires image_url_mime_type.

image_datastringoptional

Base64-encoded source image (PNG/JPEG/WebP/GIF). Requires image_mime_type.

image_mime_typestringoptional

MIME type of image_data.

image_url_mime_typestringoptional

MIME type of the image at image_url.

API Usage

curl -X POST "https://api.askfaro.com/invoke/nano-banana/generate_image" \
  -H "Authorization: Bearer <your_api_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "arguments": {
    "prompt": "<prompt>"
  }
}'

CLI Usage

faro invoke nano-banana/generate_image --params '{"prompt":"<prompt>"}'

Install pip install askfaro-cli, then faro auth login.

Pro

Usage-based · ~$0.17 per 1K/2K image, ~$0.30 per 4K image. Supports image-to-image editing. Charged only on successful responses.

Generate or edit an image with Google Nano Banana Pro (Gemini 3 Pro Image) — higher quality, 4K support. Pass only a prompt for text-to-image; add image_data+image_mime_type (base64) or image_url+image_url_mime_type (public URL) for image-to-image editing.

Usage-based · ~$0.17 per 1K/2K image, ~$0.30 per 4K image. Supports image-to-image editing. Charged only on successful responses.

Example prompts

  • Generate a 4K image from a text prompt
  • Edit a photo at 4K resolution preserving fine detail
  • Create a photorealistic 4K image for a marketing campaign
  • High-quality image generation or editing with Gemini Pro

Parameters

promptstringrequired

Text instruction for the image to generate or edit.

image_urlstringoptional

Publicly accessible URL of source image. Requires image_url_mime_type.

image_datastringoptional

Base64-encoded source image (PNG/JPEG/WebP/GIF). Requires image_mime_type.

image_mime_typestringoptional

MIME type of image_data.

image_url_mime_typestringoptional

MIME type of the image at image_url.

API Usage

curl -X POST "https://api.askfaro.com/invoke/nano-banana/generate_image_pro" \
  -H "Authorization: Bearer <your_api_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "arguments": {
    "prompt": "<prompt>"
  }
}'

CLI Usage

faro invoke nano-banana/generate_image_pro --params '{"prompt":"<prompt>"}'

Install pip install askfaro-cli, then faro auth login.

README

Nano Banana

Image generation and editing with Google's Gemini image models — codenamed "Nano Banana."

Tools

generate_image (Standard)

Gemini 2.5 Flash Image. Fast and affordable. Good for everyday image generation, asset variations, and prompt iteration.

{
  "prompt": "Isometric pixel-art bakery storefront, soft morning light",
  "aspect_ratio": "1:1"
}

generate_image_pro

Gemini 3 Pro Image. Higher fidelity, supports up to 4K output, better at fine detail and typography. Use when quality matters more than throughput.

{
  "prompt": "Editorial-style product photo of a ceramic teapot on dark walnut",
  "aspect_ratio": "16:9",
  "resolution": "2K"
}

Both tools also accept input images for editing / composition — pass reference images alongside the prompt and the model will use them as a visual anchor.

Useful options

  • aspect_ratio1:1, 4:3, 3:4, 16:9, 9:16
  • resolution (pro only) — 1K, 2K, 4K
  • images — reference images for edit / composition mode

Pricing

Variable, billed from upstream Google AI usage on completion. Roughly:

  • Standard 1024×1024: ~5 credits (≈ $0.005)
  • Pro 2K: ~30 credits (≈ $0.03)
  • Pro 4K: ~50 credits (≈ $0.05)

Charged only on success.

Auth

A Google AI Studio API key on the publisher's Faro connection — no user-side configuration required.