Nano Banana
Generate images quickly with Nano Banana. Supports multiple aspect ratios and output formats with a streamlined parameter set.
Quick Start
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "nano-banana",
"version": "0.0.1",
"input": {
"prompt": "A cozy cabin in the woods during winter with snow on the roof",
"aspect_ratio": "16:9",
"num_images": 1,
"output_format": "png"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
aspect_ratio |
string |
1:1 |
Output aspect ratio. Options: 21:9, 1:1, 4:3, 3:2, 2:3, 5:4, 4:5, 3:4, 16:9, 9:16 |
limit_generations |
boolean |
true |
Experimental parameter to limit generations per processing round |
num_images |
integer |
1 |
Number of images to generate |
output_format |
string |
png |
Output format. Options: jpeg, png |
prompt |
string |
false |
Text prompt for image generation |
Output
Examples
Square Social Media Post
{
"model": "nano-banana",
"version": "0.0.1",
"input": {
"prompt": "A flat-lay arrangement of coffee, notebook, and flowers on a wooden table",
"aspect_ratio": "1:1",
"num_images": 1,
"output_format": "jpeg"
}
}
Widescreen Wallpaper
{
"model": "nano-banana",
"version": "0.0.1",
"input": {
"prompt": "A futuristic space station orbiting a gas giant planet with rings",
"aspect_ratio": "21:9",
"num_images": 2,
"output_format": "png"
}
}
Related Models
Documentation
1---2name: nano-banana3description: Fast image generation using Nano Banana. Trigger: Use when the user wants to quickly generate images, or requests 'nano banana', 'fast image generation', or 'quick image create'.4---56# Nano Banana78Generate images quickly with Nano Banana. Supports multiple aspect ratios and output formats with a streamlined parameter set.910## Quick Start1112```bash13curl -X POST https://api.eachlabs.ai/v1/prediction \14 -H "Content-Type: application/json" \15 -H "X-API-Key: $EACHLABS_API_KEY" \16 -d '{17 "model": "nano-banana",18 "version": "0.0.1",19 "input": {20 "prompt": "A cozy cabin in the woods during winter with snow on the roof",21 "aspect_ratio": "16:9",22 "num_images": 1,23 "output_format": "png"24 }25 }'26```2728## Parameters2930| Parameter | Type | Default | Description |31|-----------|------|---------|-------------|32| `aspect_ratio` | string | `1:1` | Output aspect ratio. Options: `21:9`, `1:1`, `4:3`, `3:2`, `2:3`, `5:4`, `4:5`, `3:4`, `16:9`, `9:16` |33| `limit_generations` | boolean | `true` | Experimental parameter to limit generations per processing round |34| `num_images` | integer | `1` | Number of images to generate |35| `output_format` | string | `png` | Output format. Options: `jpeg`, `png` |36| `prompt` | string | `false` | Text prompt for image generation |3738## Output3940- **Type:** array4142## Examples4344### Square Social Media Post45```json46{47 "model": "nano-banana",48 "version": "0.0.1",49 "input": {50 "prompt": "A flat-lay arrangement of coffee, notebook, and flowers on a wooden table",51 "aspect_ratio": "1:1",52 "num_images": 1,53 "output_format": "jpeg"54 }55}56```5758### Widescreen Wallpaper59```json60{61 "model": "nano-banana",62 "version": "0.0.1",63 "input": {64 "prompt": "A futuristic space station orbiting a gas giant planet with rings",65 "aspect_ratio": "21:9",66 "num_images": 2,67 "output_format": "png"68 }69}70```7172## Related Models7374- [Nano Banana Edit](../nano-banana-edit/SKILL.md) - Edit images with Nano Banana75- [Seedream V4 Text to Image](../seedream-v4-text-to-image/SKILL.md) - Higher-quality text-to-image76- [Imagen 4 Preview](../imagen4-preview/SKILL.md) - Google's image generation7778## Documentation7980- [EachLabs API Docs](https://docs.eachlabs.ai)