Nano Banana

Model Information

Display Name: Nano Banana

API Model ID: google/nano-banana

Category: Text To Image

Description: Nano Banana is Google's state-of-the-art image generation and editing model (Gemini Flash Image), designed for fast, conversational, and multi-turn creative workflows. **Key Features:** - 2-3x faster than comparable models - Natural language editing without manual masking - Character and style consistency across images - Multi-image fusion (up to 3 images) - SynthID watermarking for AI content identification **Capabilities:** - High-quality text-to-image generation - Image editing with natural language instructions - Inpainting and outpainting - Background replacement - Object modification and removal - Style transfer and relighting **Output Options:** - **Aspect Ratios:** 1:1, 4:3, 3:4, 16:9, 9:16, 21:9 - **Formats:** JPEG, PNG, WebP - **Resolution:** Up to 4096px **Pricing:** Cost varies by resolution (per megapixel). Higher resolutions increase generation cost. **Use Cases:** - Creative content production - Product visualization - Marketing and advertising - Rapid design iteration - Conversational image editing

How to Use This Model

To use Nano Banana via the HInow.ai API, use the model ID: google/nano-banana

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "google/nano-banana",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images/generations
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "google/nano-banana",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.06

Available Parameters

  • aspect_ratio: Output image aspect ratio (Options: 1:1, 4:3, 3:4, 16:9, 9:16, 21:9)
  • output_format: Output image format (Options: jpeg, png, webp)

Quick Reference

To use this model, set: "model": "google/nano-banana"

Featured: Yes

Documentation: https://hinow.ai/models/google/nano-banana

API Endpoint: https://api.hinow.ai/v1

Back to Models
Nano Banana

Nano Banana

Featured

google/nano-banana

$0.060
per image

About

Nano Banana is Google's state-of-the-art image generation and editing model (Gemini Flash Image), designed for fast, conversational, and multi-turn creative workflows.

Key Features:

  • 2-3x faster than comparable models
  • Natural language editing without manual masking
  • Character and style consistency across images
  • Multi-image fusion (up to 3 images)
  • SynthID watermarking for AI content identification

Capabilities:

  • High-quality text-to-image generation
  • Image editing with natural language instructions
  • Inpainting and outpainting
  • Background replacement
  • Object modification and removal
  • Style transfer and relighting

Output Options:

  • Aspect Ratios: 1:1, 4:3, 3:4, 16:9, 9:16, 21:9
  • Formats: JPEG, PNG, WebP
  • Resolution: Up to 4096px

Pricing:

Cost varies by resolution (per megapixel). Higher resolutions increase generation cost.

Use Cases:

  • Creative content production
  • Product visualization
  • Marketing and advertising
  • Rapid design iteration
  • Conversational image editing

Capabilities

Text To ImageImage To Image

Parameters

aspect_ratio

Output image aspect ratio

1:14:33:416:99:1621:9
output_format

Output image format

jpegpngwebp

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "google/nano-banana",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "aspect_ratio": "1:1",
      "output_format": "jpeg"
    }
  }'