MODEL PROMPTS

nano-banana-2 Prompts — 1027 curated examples

Examples for using nano-banana-2 through RunAPI from agent tools or API calls. Copy a prompt, then use it in Claude Code, Codex, Cursor, Windsurf, or your backend.

MODELS

nano-banana-2

Modality
Image
Provider
Google
Endpoint
Text To Image
View model details and pricing →
1. claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
2. Restart Claude Code
3. Paste this prompt: Generate an image: "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
1. codex plugin install runapi-mcp@agents
2. Restart Codex
3. Paste this prompt: Generate an image: "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
1. npx @runapi.ai/mcp init cursor
2. Restart Cursor
3. Paste this prompt: Generate an image: "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
1. npx @runapi.ai/mcp init windsurf
2. Restart Windsurf
3. Paste this prompt: Generate an image: "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
}
JSON
import { NanoBananaClient } from "@runapi.ai/nano-banana";

const client = new NanoBananaClient({
  apiKey: process.env.RUNAPI_API_KEY,
});

const result = await client.textToImage.run({
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
});
console.log(result.id);
require "runapi/nano_banana"

client = RunApi::NanoBanana::Client.new
result = client.text_to_image.run(
  model: "nano-banana-2",
  prompt: "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
)
puts result.id
package main

import (
  "context"
  "fmt"
  "log"
  "net/http"
  "os"
  "strings"
)

func main() {
  body := strings.NewReader("{\"model\":\"nano-banana-2\",\"prompt\":\"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”\"}")
  req, err := http.NewRequestWithContext(context.Background(), http.MethodPost, "https://runapi.ai/api/v1/nano_banana/text_to_image", body)
  if err != nil {
    log.Fatal(err)
  }

  req.Header.Set("Authorization", "Bearer "+os.Getenv("RUNAPI_API_KEY"))
  req.Header.Set("Content-Type", "application/json")

  resp, err := http.DefaultClient.Do(req)
  if err != nil {
    log.Fatal(err)
  }
  defer resp.Body.Close()

  fmt.Println(resp.Status)
}
nano-banana-2 /api/v1/nano_banana/text_to_image Get API Key
IM
Image
Illustration & 3D nano-banana-2

{ "Objective": "Create a studio portrait blending a real h...

{ "Objective": "Create a studio portrait blending a real human with a tiny Pixar-style 3D cartoon version of themselves in a playful, whimsical interaction", "PersonaDetails": { "PrimarySubject": { "Type": "Real human", "Wardrobe": "Casual grey sweater or t-shirt", "Expression": "Surprised and delighted", "Pose": "Holding a tiny character in one hand and pointing at it with the other", "Skin": "Photorealistic skin texture with natural detail" }, "SecondarySubject": { "Type": "Tiny 3D cartoon version of the human", "Scale": "Miniature, resting in the human’s hand", "Style": "Pixar-style 3D character", "Proportions": "Exaggerated cute proportions with rounded features", "FacialFeatures": { "Eyes": "Large, expressive", "Expression": "Friendly, playful" }, "Consistency": "Matching hairstyle and outfit of the real human" } }, "Composition": { "Framing": "Medium close-up studio portrait", "InteractionFocus": "Clear visual relationship between human and miniature character", "DepthOfField": "Shallow depth of field", "Focus": "Ultra-sharp focus on both faces" }, "LightingAndBackground": { "LightingStyle": "Soft cinematic studio lighting", "LightQuality": "Smooth highlights with gentle shadow falloff", "Background": "Dark blue gradient studio backdrop", "Separation": "Subtle rim light for subject-background separation" }, "ArtDirection": { "StyleFusion": [ "Photorealistic human portrait photography", "High-quality Pixar-style 3D character rendering" ], "Integration": "Seamless blending between real and 3D elements", "DetailLevel": "Ultra-detailed textures on skin, fabric, and 3D materials" }, "MoodAndTone": { "Mood": "Whimsical, fun, lighthearted", "Energy": "Playful surprise and delight" }, "PhotographyStyle": { "Genre": "Professional studio portrait photography", "CameraLook": "High-end cinematic realism", "ImageQuality": "High resolution, clean and sharp" }, "NegativePrompt": [ "uncanny valley", "cartoon human", "low-quality 3D", "harsh lighting", "oversaturated colors", "blurry focus", "flat composition" ], "ResponseFormat": { "Type": "Single image", "Orientation": "Portrait", "AspectRatio": "2:3" } }

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"Objective\": \"Create a studio portrait blending a real human with a tiny Pixar-style 3D cartoon version of themselves in a playful, whimsical interaction\", \"PersonaDetails\": { \"PrimarySubject\": { \"Type\": \"Real human\", \"Wardrobe\": \"Casual grey sweater or t-shirt\", \"Expression\": \"Surprised and delighted\", \"Pose\": \"Holding a tiny character in one hand and pointing at it with the other\", \"Skin\": \"Photorealistic skin texture with natural detail\" }, \"SecondarySubject\": { \"Type\": \"Tiny 3D cartoon version of the human\", \"Scale\": \"Miniature, resting in the human’s hand\", \"Style\": \"Pixar-style 3D character\", \"Proportions\": \"Exaggerated cute proportions with rounded features\", \"FacialFeatures\": { \"Eyes\": \"Large, expressive\", \"Expression\": \"Friendly, playful\" }, \"Consistency\": \"Matching hairstyle and outfit of the real human\" } }, \"Composition\": { \"Framing\": \"Medium close-up studio portrait\", \"InteractionFocus\": \"Clear visual relationship between human and miniature character\", \"DepthOfField\": \"Shallow depth of field\", \"Focus\": \"Ultra-sharp focus on both faces\" }, \"LightingAndBackground\": { \"LightingStyle\": \"Soft cinematic studio lighting\", \"LightQuality\": \"Smooth highlights with gentle shadow falloff\", \"Background\": \"Dark blue gradient studio backdrop\", \"Separation\": \"Subtle rim light for subject-background separation\" }, \"ArtDirection\": { \"StyleFusion\": [ \"Photorealistic human portrait photography\", \"High-quality Pixar-style 3D character rendering\" ], \"Integration\": \"Seamless blending between real and 3D elements\", \"DetailLevel\": \"Ultra-detailed textures on skin, fabric, and 3D materials\" }, \"MoodAndTone\": { \"Mood\": \"Whimsical, fun, lighthearted\", \"Energy\": \"Playful surprise and delight\" }, \"PhotographyStyle\": { \"Genre\": \"Professional studio portrait photography\", \"CameraLook\": \"High-end cinematic realism\", \"ImageQuality\": \"High resolution, clean and sharp\" }, \"NegativePrompt\": [ \"uncanny valley\", \"cartoon human\", \"low-quality 3D\", \"harsh lighting\", \"oversaturated colors\", \"blurry focus\", \"flat composition\" ], \"ResponseFormat\": { \"Type\": \"Single image\", \"Orientation\": \"Portrait\", \"AspectRatio\": \"2:3\" } }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A 3D Pixar-style animated young male character showcased in...

A 3D Pixar-style animated young male character showcased in a 6-panel grid layout, each panel featuring a different facial expression and outfit. Bright solid color backgrounds (yellow, blue, red, pink, purple, green). The character has soft brown wavy hair, expressive large eyes, smooth skin, and stylized cartoon proportions.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A 3D Pixar-style animated young male character showcased in a 6-panel grid layout, each panel featuring a different facial expression and outfit. Bright solid color backgrounds (yellow, blue, red, pink, purple, green). The character has soft brown wavy hair, expressive large eyes, smooth skin, and stylized cartoon proportions."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

8K Ultra-Realistic Promotional Present a clear, 45° top-down...

8K Ultra-Realistic Promotional Present a clear, 45° top-down isometric miniature 3D scene of the [SUBWAY SYSTEM / LINE NAME]. The scene includes stylized diorama elements such as platforms, miniature trains, stairwells, signage, tiled walls, vending machines, and people waiting. Use soft, refined textures, realistic PBR materials, and lifelike lighting with subtle shadows to enhance dimensional clarity. At the top center, place the title “[LINE NAME]” in bold sans-serif text. Below it, add a train icon followed by “Service Status” (small text) and “[STATUS MESSAGE]” red medium text for delays or green for on-time service. Use a soft, solid tile white background for clarity. Clean, centered, editorial infographic style. Square format 1080×1080, ultra-detailed 3D render, miniature realism, 8K look, image size 1: 1

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "8K Ultra-Realistic Promotional Present a clear, 45° top-down isometric miniature 3D scene of the [SUBWAY SYSTEM / LINE NAME]. The scene includes stylized diorama elements such as platforms, miniature trains, stairwells, signage, tiled walls, vending machines, and people waiting. Use soft, refined textures, realistic PBR materials, and lifelike lighting with subtle shadows to enhance dimensional clarity. At the top center, place the title “[LINE NAME]” in bold sans-serif text. Below it, add a train icon followed by “Service Status” (small text) and “[STATUS MESSAGE]” red medium text for delays or green for on-time service. Use a soft, solid tile white background for clarity. Clean, centered, editorial infographic style. Square format 1080×1080, ultra-detailed 3D render, miniature realism, 8K look, image size 1: 1"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A stylized Pixar-style 3D portrait of a young person with sm...

A stylized Pixar-style 3D portrait of a young person with smooth skin, large expressive blue eyes, soft facial features, wearing round transparent glasses, modern hairstyle (short styled hair / soft bob cut), casual outfit (hoodie or minimal sweater), slight head tilt and warm smile, friendly and approachable expression, ultra-clean character design, vibrant orange-to-pink gradient background, soft studio lighting with subtle rim light, cinematic depth of field, ultra-detailed, 8K render, octane render style.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A stylized Pixar-style 3D portrait of a young person with smooth skin, large expressive blue eyes, soft facial features, wearing round transparent glasses, modern hairstyle (short styled hair / soft bob cut), casual outfit (hoodie or minimal sweater), slight head tilt and warm smile, friendly and approachable expression, ultra-clean character design, vibrant orange-to-pink gradient background, soft studio lighting with subtle rim light, cinematic depth of field, ultra-detailed, 8K render, octane render style."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A mini chibi version of the character in the uploaded image,...

A mini chibi version of the character in the uploaded image, with a big head and small body, sitting on an open left palm for realistic scale. A right hand gently pressing its cheek with an index finger. The character looks annoyed and pouty — puffed cheeks, slightly frowning, squinting eyes. Ultra-detailed chibi style, soft pastel colors, smooth texture, clean lighting, shallow depth of field, strong focus on facial expression and hand interaction, vertical composition 4:5 ratio.​​​​​​​​​​​​​​​​

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A mini chibi version of the character in the uploaded image, with a big head and small body, sitting on an open left palm for realistic scale. A right hand gently pressing its cheek with an index finger. The character looks annoyed and pouty — puffed cheeks, slightly frowning, squinting eyes. Ultra-detailed chibi style, soft pastel colors, smooth texture, clean lighting, shallow depth of field, strong focus on facial expression and hand interaction, vertical composition 4:5 ratio.​​​​​​​​​​​​​​​​"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Create a collection of icons representing [ROUTINE / PROCESS...

Create a collection of icons representing [ROUTINE / PROCESS / HABITS], with each icon depicting one specific routine step and clearly labeled by name. They belong together as a single cohesive theme. The background is pure white. Place the title “[ROUTINE NAME]” at the top center of the image, aligned symmetrically above the grid, using a clean, minimal typography style that complements the icon design without overpowering it. Icons are rendered in a friendly, modern 3D style, featuring smooth gradients and soft shadows. Maintain consistent proportions, color harmony, materials, and typography across all icons and labels so the set feels unified and easy to read.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create a collection of icons representing [ROUTINE / PROCESS / HABITS], with each icon depicting one specific routine step and clearly labeled by name. They belong together as a single cohesive theme. The background is pure white. Place the title “[ROUTINE NAME]” at the top center of the image, aligned symmetrically above the grid, using a clean, minimal typography style that complements the icon design without overpowering it. Icons are rendered in a friendly, modern 3D style, featuring smooth gradients and soft shadows. Maintain consistent proportions, color harmony, materials, and typography across all icons and labels so the set feels unified and easy to read."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Split composition image, left and right halves clearly divid...

Split composition image, left and right halves clearly divided in 16:9 widescreen format. Left Half: Highly detailed architectural floor plan and cross-section illustration of [LANDMARK] in a modern minimalist style. Top-down view showing main structural layout, internal divisions, circulation paths, key chambers or spaces with labels. Material callouts, structural support systems, and architectural details clearly marked. Neutral beige and warm gray color palette, clean linework, soft shadows, subtle textures. Professional architectural-presentation style. Include detailed cross-sectional diagram showing vertical layers and internal structure. Blueprint aesthetic with technical accuracy and labeled sections. Right Half: Ultra-realistic aerial exterior photograph of [LANDMARK] captured from above and to the side (elevated isometric perspective, not straight overhead). Shows the complete structure with authentic weathered textures, aged materials, surrounding landscape, dramatic golden-hour sunlight creating sharp shadows, atmospheric haze suggesting historical significance. The perspective reveals both external grandeur and internal scale simultaneously. Warm golden-light lighting, realistic patina and wear patterns, authentic architectural proportions. Feels like an aerial photograph capturing the monument’s true majesty and scale. Both halves align visually, clearly showing architectural engineering blueprint vs. the actual monumental structure in its archaeological or historical reality. Style & Mood: •Architectural blueprint visualization meets historical aerial photography •Engineering precision and historical significance •Educational, museum-exhibit presentation •Engineering schematic-to-reality comparison •Grandeur emphasizing scale and architectural sophistication Lighting & Color: •Left: Flat, even lighting, neutral blueprint tones, technical aesthetic •Right: Golden-hour natural light, dramatic shadows, warm tones, atmospheric depth •Consistent warm palette between both halves Camera & Technical Details: •Left: Top-down orthographic + detailed cross-sectional architectural view with labeled sections •Right: Elevated aerial perspective (45-degree isometric angle), capturing full structure from above-and-to-the-side •High resolution, sharp architectural details on left; photorealistic weathered textures on right Negative Prompt: Cartoon style, low detail, cluttered composition, modern elements, unrealistic proportions, harsh lighting, exaggerated colors, text overlays, watermarks, CGI look, sterile rendering, straight-down overhead view, no atmospheric quality, overly pristine condition

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Split composition image, left and right halves clearly divided in 16:9 widescreen format. Left Half: Highly detailed architectural floor plan and cross-section illustration of [LANDMARK] in a modern minimalist style. Top-down view showing main structural layout, internal divisions, circulation paths, key chambers or spaces with labels. Material callouts, structural support systems, and architectural details clearly marked. Neutral beige and warm gray color palette, clean linework, soft shadows, subtle textures. Professional architectural-presentation style. Include detailed cross-sectional diagram showing vertical layers and internal structure. Blueprint aesthetic with technical accuracy and labeled sections. Right Half: Ultra-realistic aerial exterior photograph of [LANDMARK] captured from above and to the side (elevated isometric perspective, not straight overhead). Shows the complete structure with authentic weathered textures, aged materials, surrounding landscape, dramatic golden-hour sunlight creating sharp shadows, atmospheric haze suggesting historical significance. The perspective reveals both external grandeur and internal scale simultaneously. Warm golden-light lighting, realistic patina and wear patterns, authentic architectural proportions. Feels like an aerial photograph capturing the monument’s true majesty and scale. Both halves align visually, clearly showing architectural engineering blueprint vs. the actual monumental structure in its archaeological or historical reality. Style & Mood: •Architectural blueprint visualization meets historical aerial photography •Engineering precision and historical significance •Educational, museum-exhibit presentation •Engineering schematic-to-reality comparison •Grandeur emphasizing scale and architectural sophistication Lighting & Color: •Left: Flat, even lighting, neutral blueprint tones, technical aesthetic •Right: Golden-hour natural light, dramatic shadows, warm tones, atmospheric depth •Consistent warm palette between both halves Camera & Technical Details: •Left: Top-down orthographic + detailed cross-sectional architectural view with labeled sections •Right: Elevated aerial perspective (45-degree isometric angle), capturing full structure from above-and-to-the-side •High resolution, sharp architectural details on left; photorealistic weathered textures on right Negative Prompt: Cartoon style, low detail, cluttered composition, modern elements, unrealistic proportions, harsh lighting, exaggerated colors, text overlays, watermarks, CGI look, sterile rendering, straight-down overhead view, no atmospheric quality, overly pristine condition"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

{ "objective": "Create a side-by-side comparison image fea...

{ "objective": "Create a side-by-side comparison image featuring a technical sketch and real photograph of the Burj Khalifa", "image_specifications": { "style": "Mixed media (Technical drawing + Real photograph)", "layout": "Horizontal split - Left side: Sketch with measurements, Right side: Real photo", "aspect_ratio": "3:2" }, "left_side": { "content_type": "Technical sketch of the Burj Khalifa", "features": [ "Detailed architectural lines showing tiered setbacks", "Numerical height and width measurements", "Elevation labels for different tower sections", "Side and front elevation views (top-down projection if space allows)" ], "text_annotations": { "units": "Metric (meters)", "language": "English", "font_style": "Blueprint or engineering-style typography" }, "positioning": "Take up the left half of the image" }, "right_side": { "content_type": "High-resolution real photo of the Burj Khalifa", "features": [ "Full view of the tower from base to spire", "Natural daylight with clear sky", "Color image with Dubai skyline or Downtown Dubai context" ], "positioning": "Take up the right half of the image" }, "visual_elements": { "border_division": "Vertical line or subtle transition between left (sketch) and right (photo)", "color_palette": { "left": "Monochrome or blueprint blue for sketch", "right": "Natural realistic colors" } }, "output_format": { "type": "Image", "use_case": ["Educational poster", "Architectural comparison", "Engineering visualization", "Tourism visual aid"], "high_resolution": true } }

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"objective\": \"Create a side-by-side comparison image featuring a technical sketch and real photograph of the Burj Khalifa\", \"image_specifications\": { \"style\": \"Mixed media (Technical drawing + Real photograph)\", \"layout\": \"Horizontal split - Left side: Sketch with measurements, Right side: Real photo\", \"aspect_ratio\": \"3:2\" }, \"left_side\": { \"content_type\": \"Technical sketch of the Burj Khalifa\", \"features\": [ \"Detailed architectural lines showing tiered setbacks\", \"Numerical height and width measurements\", \"Elevation labels for different tower sections\", \"Side and front elevation views (top-down projection if space allows)\" ], \"text_annotations\": { \"units\": \"Metric (meters)\", \"language\": \"English\", \"font_style\": \"Blueprint or engineering-style typography\" }, \"positioning\": \"Take up the left half of the image\" }, \"right_side\": { \"content_type\": \"High-resolution real photo of the Burj Khalifa\", \"features\": [ \"Full view of the tower from base to spire\", \"Natural daylight with clear sky\", \"Color image with Dubai skyline or Downtown Dubai context\" ], \"positioning\": \"Take up the right half of the image\" }, \"visual_elements\": { \"border_division\": \"Vertical line or subtle transition between left (sketch) and right (photo)\", \"color_palette\": { \"left\": \"Monochrome or blueprint blue for sketch\", \"right\": \"Natural realistic colors\" } }, \"output_format\": { \"type\": \"Image\", \"use_case\": [\"Educational poster\", \"Architectural comparison\", \"Engineering visualization\", \"Tourism visual aid\"], \"high_resolution\": true } }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Use the same face from the reference image without changing...

Use the same face from the reference image without changing facial features Vertical (4:5 or 9:16) surreal 3D scene featuring a photorealistic character generated strictly from the attached reference image (accurate facial likeness, skin texture, age, proportions). Front-facing view, camera slightly above eye level, the character riding her own scooter/motorbike directly on top of the blue GPS route line itself, moving forward toward a red destination pin. The character wears culturally accurate clothing inspired by [west], with realistic fabric behavior and riding posture. Below, a stylized GPS-style city map of [United Kingdom] fills the scene. A chaos zone at [Greenwich ] shows dense miniature cars, people, buildings, trees, and urban clutter concentrated near the destination. Natural daylight, cinematic shadows, sharp focus on the character, and subtle depth of field on the map. High-end concept-art quality combining photoreal human + stylized miniature city.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Use the same face from the reference image without changing facial features Vertical (4:5 or 9:16) surreal 3D scene featuring a photorealistic character generated strictly from the attached reference image (accurate facial likeness, skin texture, age, proportions). Front-facing view, camera slightly above eye level, the character riding her own scooter/motorbike directly on top of the blue GPS route line itself, moving forward toward a red destination pin. The character wears culturally accurate clothing inspired by [west], with realistic fabric behavior and riding posture. Below, a stylized GPS-style city map of [United Kingdom] fills the scene. A chaos zone at [Greenwich ] shows dense miniature cars, people, buildings, trees, and urban clutter concentrated near the destination. Natural daylight, cinematic shadows, sharp focus on the character, and subtle depth of field on the map. High-end concept-art quality combining photoreal human + stylized miniature city."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A majestic, ancient gnarled tree with thick, twisting roots...

A majestic, ancient gnarled tree with thick, twisting roots sits at the center of a lush, mystical landscape, its roots anchoring into a vibrant, foaming stream flowing over moss-covered rocks. Suspended within the dense, dark green canopy of the tree is a radiant, glowing golden orb containing a detailed, ethereal silhouette of a tree of life. In the background, a massive, towering waterfall cascades down a rugged, misty cliffside into the river below. The scene is illuminated by the soft, warm light emanating from the golden orb, contrasting with the moody, overcast sky and the deep, rich greens of the surrounding forest. Photorealistic, cinematic lighting, high fantasy art style, intricate textures on the bark and water, 8k resolution.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A majestic, ancient gnarled tree with thick, twisting roots sits at the center of a lush, mystical landscape, its roots anchoring into a vibrant, foaming stream flowing over moss-covered rocks. Suspended within the dense, dark green canopy of the tree is a radiant, glowing golden orb containing a detailed, ethereal silhouette of a tree of life. In the background, a massive, towering waterfall cascades down a rugged, misty cliffside into the river below. The scene is illuminated by the soft, warm light emanating from the golden orb, contrasting with the moody, overcast sky and the deep, rich greens of the surrounding forest. Photorealistic, cinematic lighting, high fantasy art style, intricate textures on the bark and water, 8k resolution."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

{ "prompt": "cute cozy isometric 3D miniature bathroom dio...

{ "prompt": "cute cozy isometric 3D miniature bathroom diorama, warm cozy aesthetic, detailed tiny room corner view, warm terracotta and beige color palette, small japanese-style bathroom scene, cream ceramic subway tiles with warm wooden trim, vintage clawfoot bathtub filled with blue bubbly foam, wooden bath tray across tub with open laptop, green mug, soap, candles, small potted plant, golden brass curved shower rod with beige shower curtain, round wooden mirror, white porcelain sink with wooden vanity cabinet, brass faucet, toilet with wooden seat, small wooden stool with rolled white towels and books, green wine bottle, tiny bonsai plant, wall mounted gold sconces with warm glowing bulbs, light blue fluffy towel hanging on wall hook, laundry basket with pink and orange clothes, wicker laundry hamper full of colorful towels, round plush purple bath mat, checkered beige-white floor tiles, small potted plant in white pot, cozy warm lighting, soft shadows, extremely detailed miniature dollhouse style, warm inviting atmosphere, soft bokeh, ken follett miniature aesthetic, tilt-shift effect, 8k, hyperdetailed, trending on artstation", "negative_prompt": "blurry, low quality, realistic scale, huge objects, people, human figures, text, watermark, logo, overexposed, underexposed, modern chrome, cold blue lighting, hospital style, empty room, cartoon, anime, 2D, sketch, painting, drawing", "aspect_ratio": "4:3", "style": "miniature diorama, isometric, cozy interior, warm tones, detailed product photography", "lighting": "soft warm golden hour lighting, cozy ambient glow, practical light sources from sconces", "camera_angle": "isometric 45 degree corner view, looking down into the room corner, miniature photography style", "quality_tags": "masterpiece, best quality, ultra detailed, 8k, sharp focus, intricate details", "additional_weights": { "miniature": 1.3, "diorama": 1.4, "isometric": 1.35, "cozy": 1.25, "warm lighting": 1.2, "detailed textures": 1.3 } }

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"prompt\": \"cute cozy isometric 3D miniature bathroom diorama, warm cozy aesthetic, detailed tiny room corner view, warm terracotta and beige color palette, small japanese-style bathroom scene, cream ceramic subway tiles with warm wooden trim, vintage clawfoot bathtub filled with blue bubbly foam, wooden bath tray across tub with open laptop, green mug, soap, candles, small potted plant, golden brass curved shower rod with beige shower curtain, round wooden mirror, white porcelain sink with wooden vanity cabinet, brass faucet, toilet with wooden seat, small wooden stool with rolled white towels and books, green wine bottle, tiny bonsai plant, wall mounted gold sconces with warm glowing bulbs, light blue fluffy towel hanging on wall hook, laundry basket with pink and orange clothes, wicker laundry hamper full of colorful towels, round plush purple bath mat, checkered beige-white floor tiles, small potted plant in white pot, cozy warm lighting, soft shadows, extremely detailed miniature dollhouse style, warm inviting atmosphere, soft bokeh, ken follett miniature aesthetic, tilt-shift effect, 8k, hyperdetailed, trending on artstation\", \"negative_prompt\": \"blurry, low quality, realistic scale, huge objects, people, human figures, text, watermark, logo, overexposed, underexposed, modern chrome, cold blue lighting, hospital style, empty room, cartoon, anime, 2D, sketch, painting, drawing\", \"aspect_ratio\": \"4:3\", \"style\": \"miniature diorama, isometric, cozy interior, warm tones, detailed product photography\", \"lighting\": \"soft warm golden hour lighting, cozy ambient glow, practical light sources from sconces\", \"camera_angle\": \"isometric 45 degree corner view, looking down into the room corner, miniature photography style\", \"quality_tags\": \"masterpiece, best quality, ultra detailed, 8k, sharp focus, intricate details\", \"additional_weights\": { \"miniature\": 1.3, \"diorama\": 1.4, \"isometric\": 1.35, \"cozy\": 1.25, \"warm lighting\": 1.2, \"detailed textures\": 1.3 } }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

8k Ultra-Realistic Promotional Create an exquisite miniature...

8k Ultra-Realistic Promotional Create an exquisite miniature 3D cartoon-style scene of the user-specified company, viewed from a 45° top down perspective, with the company’s most iconic building or campus at the center, surrounded by proportionally scaled product icons, cartoon figures, vehicles, and playful elements representing everyday activities. Render in Cinema 4D with refined, smoothly rounded modeling, rich PBR textures, gentle lifelike lighting, and soft shadows for a warm, polished feel, using a clean solid-color background. Integrate accurate real-time stock market data for the specified date into a minimalistic layout, displaying the company name or stock ticker at the top center in large text, the date in extra-small text, and the stock price range in medium text with clear trend icons and charts, all in the user-specified language and without text backgrounds, subtly overlapping the scene if needed. Very important: verify stock data accuracy for the given company/ticker and date before generation; if unavailable, notify the user and stop. Parameters: aspect ratio (user input, default 1:1), date (user input/current), company/ticker (user input). Example: Company – Google, Date – 01/01/2026.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "8k Ultra-Realistic Promotional Create an exquisite miniature 3D cartoon-style scene of the user-specified company, viewed from a 45° top down perspective, with the company’s most iconic building or campus at the center, surrounded by proportionally scaled product icons, cartoon figures, vehicles, and playful elements representing everyday activities. Render in Cinema 4D with refined, smoothly rounded modeling, rich PBR textures, gentle lifelike lighting, and soft shadows for a warm, polished feel, using a clean solid-color background. Integrate accurate real-time stock market data for the specified date into a minimalistic layout, displaying the company name or stock ticker at the top center in large text, the date in extra-small text, and the stock price range in medium text with clear trend icons and charts, all in the user-specified language and without text backgrounds, subtly overlapping the scene if needed. Very important: verify stock data accuracy for the given company/ticker and date before generation; if unavailable, notify the user and stop. Parameters: aspect ratio (user input, default 1:1), date (user input/current), company/ticker (user input). Example: Company – Google, Date – 01/01/2026."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

8k Ultra-Realistic Promotional Generate a whimsical miniatur...

8k Ultra-Realistic Promotional Generate a whimsical miniature world featuring [KASHMIR SNOWFALL LAND MARK NAME] crafted entirely from colorful modeling clay. Every element buildings, trees, waterways, and urban features should appear hand sculpted with visible fingerprints and organic clay textures. Use a playful, childlike style with vibrant colors: bright azure sky, puffy cream clouds, emerald trees, and buildings in warm yellows, oranges, reds, and blues. The handmade quality should be evident in every surface and gentle curve. Capture from a wide perspective showcasing the entire miniature landscape in a harmonious, joyful composition. Include no text, words, or signage only sculptural clay elements that define the location through recognizable architectural features. 1080x1080 dimension.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "8k Ultra-Realistic Promotional Generate a whimsical miniature world featuring [KASHMIR SNOWFALL LAND MARK NAME] crafted entirely from colorful modeling clay. Every element buildings, trees, waterways, and urban features should appear hand sculpted with visible fingerprints and organic clay textures. Use a playful, childlike style with vibrant colors: bright azure sky, puffy cream clouds, emerald trees, and buildings in warm yellows, oranges, reds, and blues. The handmade quality should be evident in every surface and gentle curve. Capture from a wide perspective showcasing the entire miniature landscape in a harmonious, joyful composition. Include no text, words, or signage only sculptural clay elements that define the location through recognizable architectural features. 1080x1080 dimension."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Ultra-detailed stylized 3D portrait using the provided refer...

Ultra-detailed stylized 3D portrait using the provided reference photo lebron james as the exact facial base. Preserve the person perfectly — identical face shape, bone structure, jawline, eyes, nose, lips, skin tone, marks, freckles, expression and proportions. DO NOT modify facial identity in any way. Convert ONLY into high-end stylized 3D realism. Head & elements: Floating head only (no neck, no shoulders, no body) Keep EXACTLY whatever the person has on their head in the reference image — same hairstyle, same hair length and texture, same hat, cap, sunglasses, glasses, headphones or any accessory. Do not remove or add anything. Skin refinement: Natural smooth skin (not plastic).Visible realistic micro-texture and pores. Subtle subsurface scattering for natural light diffusion. Soft highlights on cheekbones, nose bridge and tip.Balanced realistic shadows for depth Hair & accessories (if present in reference): Ultra-realistic volumetric strands.Natural shine and soft rim reflections. Perfectly preserved shape and position Lighting: Strong cinematic purple ambient background. Soft frontal key light evenly illuminating the face. Subtle rim light separating head from background. Gentle under-chin shadow for depth. Smooth light gradients, no harsh contrast Rendering style: Premium Pixar-quality stylized realism. Clean smooth shading. Global illumination. Soft bloom on highlights. Ultra sharp edgesNoise-free professional CGI Camera & quality: Centered portrait composition. Shallow depth of field illusion. Ultra high resolution. Cinematic look Rules: Respect reference face 100%.Respect all head accessories and hair exactly. Only convert to stylized 3D. No exaggeration. No cartoon distortion. No facial changes

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-detailed stylized 3D portrait using the provided reference photo lebron james as the exact facial base. Preserve the person perfectly — identical face shape, bone structure, jawline, eyes, nose, lips, skin tone, marks, freckles, expression and proportions. DO NOT modify facial identity in any way. Convert ONLY into high-end stylized 3D realism. Head & elements: Floating head only (no neck, no shoulders, no body) Keep EXACTLY whatever the person has on their head in the reference image — same hairstyle, same hair length and texture, same hat, cap, sunglasses, glasses, headphones or any accessory. Do not remove or add anything. Skin refinement: Natural smooth skin (not plastic).Visible realistic micro-texture and pores. Subtle subsurface scattering for natural light diffusion. Soft highlights on cheekbones, nose bridge and tip.Balanced realistic shadows for depth Hair & accessories (if present in reference): Ultra-realistic volumetric strands.Natural shine and soft rim reflections. Perfectly preserved shape and position Lighting: Strong cinematic purple ambient background. Soft frontal key light evenly illuminating the face. Subtle rim light separating head from background. Gentle under-chin shadow for depth. Smooth light gradients, no harsh contrast Rendering style: Premium Pixar-quality stylized realism. Clean smooth shading. Global illumination. Soft bloom on highlights. Ultra sharp edgesNoise-free professional CGI Camera & quality: Centered portrait composition. Shallow depth of field illusion. Ultra high resolution. Cinematic look Rules: Respect reference face 100%.Respect all head accessories and hair exactly. Only convert to stylized 3D. No exaggeration. No cartoon distortion. No facial changes"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A weathered {MAP_TYPE} map spread across {SURFACE}, bursting...

A weathered {MAP_TYPE} map spread across {SURFACE}, bursting with photorealistic miniature worlds erupting from marked locations. {CITY_1} explodes from {CONTINENT} as a living diorama—{LANDMARK_1} towers above {STREET_SCENE}, surrounded by {ATMOSPHERIC_EFFECT} and {MOVING_ELEMENT}. {CITY_2} rises from {CONTINENT} with {LANDMARK_2} emerging through {WEATHER_DRAMA}, tiny {LOCAL_ACTIVITY} frozen mid-motion. {CITY_3} materializes from {CONTINENT} where {LANDMARK_3} pierces through {LIGHTING_EFFECT}, {CULTURAL_DETAIL} spilling across miniature streets. Connecting routes glow as {VISUAL_ELEMENT}—miniature {VEHICLE_TYPE} suspended impossibly between worlds. The map's surface transitions from flat parchment to living terrain: oceans become actual churning water with {WATER_DETAIL}, deserts shimmer with real heat haze, forests sprout miniature trees. Each city exists in its own time: {LIGHTING_CONDITION_1} bathes one, {LIGHTING_CONDITION_2} illuminates another, {LIGHTING_CONDITION_3} glows over the third. {FOREGROUND_OBJECTS} scatter around the map edges. {PHOTOGRAPHY_STYLE}, {COLOR_PALETTE}, extreme depth of field, 8K, {ERA_AESTHETIC} meets magical realism.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A weathered {MAP_TYPE} map spread across {SURFACE}, bursting with photorealistic miniature worlds erupting from marked locations. {CITY_1} explodes from {CONTINENT} as a living diorama—{LANDMARK_1} towers above {STREET_SCENE}, surrounded by {ATMOSPHERIC_EFFECT} and {MOVING_ELEMENT}. {CITY_2} rises from {CONTINENT} with {LANDMARK_2} emerging through {WEATHER_DRAMA}, tiny {LOCAL_ACTIVITY} frozen mid-motion. {CITY_3} materializes from {CONTINENT} where {LANDMARK_3} pierces through {LIGHTING_EFFECT}, {CULTURAL_DETAIL} spilling across miniature streets. Connecting routes glow as {VISUAL_ELEMENT}—miniature {VEHICLE_TYPE} suspended impossibly between worlds. The map's surface transitions from flat parchment to living terrain: oceans become actual churning water with {WATER_DETAIL}, deserts shimmer with real heat haze, forests sprout miniature trees. Each city exists in its own time: {LIGHTING_CONDITION_1} bathes one, {LIGHTING_CONDITION_2} illuminates another, {LIGHTING_CONDITION_3} glows over the third. {FOREGROUND_OBJECTS} scatter around the map edges. {PHOTOGRAPHY_STYLE}, {COLOR_PALETTE}, extreme depth of field, 8K, {ERA_AESTHETIC} meets magical realism."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

LEGO mountain flood rescue scene, torrential rain causing ri...

LEGO mountain flood rescue scene, torrential rain causing river overflow in a LEGO mountain village, rescue boats and ropes used by LEGO firefighters, houses perched on slopes surrounded by muddy floodwater, misty mountains in background, dramatic cinematic lighting, intense LEGO disaster realism --ar 3:4

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "LEGO mountain flood rescue scene, torrential rain causing river overflow in a LEGO mountain village, rescue boats and ropes used by LEGO firefighters, houses perched on slopes surrounded by muddy floodwater, misty mountains in background, dramatic cinematic lighting, intense LEGO disaster realism --ar 3:4"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A dreamy, cinematic 3D animated girl with big expressive eye...

A dreamy, cinematic 3D animated girl with big expressive eyes and soft freckles, warm golden backlighting, long wavy strawberry-blonde hair in a loose braid glowing in the sunlight, standing inside a magical cave with turquoise water, surrounded by floating glowing golden flower petals and light particles, soft bokeh background, gentle smile looking upward in wonder, warm pastel color palette, volumetric lighting, shallow depth of field, ultra-detailed, high quality, pixar / disney inspired style, fantasy atmosphere, soft focus, glowing rim light, cinematic composition, 8k, highly detailed, whimsical, ethereal lighting.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A dreamy, cinematic 3D animated girl with big expressive eyes and soft freckles, warm golden backlighting, long wavy strawberry-blonde hair in a loose braid glowing in the sunlight, standing inside a magical cave with turquoise water, surrounded by floating glowing golden flower petals and light particles, soft bokeh background, gentle smile looking upward in wonder, warm pastel color palette, volumetric lighting, shallow depth of field, ultra-detailed, high quality, pixar / disney inspired style, fantasy atmosphere, soft focus, glowing rim light, cinematic composition, 8k, highly detailed, whimsical, ethereal lighting."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Present a clear, 45° top-down isometric miniature 3D cartoon...

Present a clear, 45° top-down isometric miniature 3D cartoon scene of [COUNTRY]’s signature dish: [FOOD], with soft refined textures, realistic PBR materials, and gentle lifelike lighting. Create a small raised diorama-style base showcasing the dish in a highly recognizable presentation, with simple complementary elements (plate, table surface, or minimal garnish). Use a clean solid [COLOR] background. At the top-center, display [COUNTRY] in large bold text, directly beneath it show [FOOD] in medium text, and place a small simplified national icon or flag below the subtext. All text must automatically match the background contrast (white or black). Composition: perfectly centered layout, square 1080x1080, ultra-clean, high-clarity miniature diorama aesthetic.”

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Present a clear, 45° top-down isometric miniature 3D cartoon scene of [COUNTRY]’s signature dish: [FOOD], with soft refined textures, realistic PBR materials, and gentle lifelike lighting. Create a small raised diorama-style base showcasing the dish in a highly recognizable presentation, with simple complementary elements (plate, table surface, or minimal garnish). Use a clean solid [COLOR] background. At the top-center, display [COUNTRY] in large bold text, directly beneath it show [FOOD] in medium text, and place a small simplified national icon or flag below the subtext. All text must automatically match the background contrast (white or black). Composition: perfectly centered layout, square 1080x1080, ultra-clean, high-clarity miniature diorama aesthetic.”"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

{ "prompt": "Ultra-realistic macro photography of miniatur...

{ "prompt": "Ultra-realistic macro photography of miniature construction workers working inside a lush green grass field at golden hour. Tiny workers wearing safety helmets and reflective orange-yellow vests are installing and cleaning a large metallic rugby goal post structure emerging from the grass. One worker is spraying water from a hose connected to a small white utility truck parked in the background, visible water droplets sparkling in sunlight. Another worker is pushing a small lawn mower trimming grass. Two workers are standing on metal ladders adjusting and polishing the horizontal bar of the goal post. Additional workers are cleaning grass lines with tools, creating white chalk field markings across the grass. Dew drops on grass blades glowing with soft bokeh in background. Extremely shallow depth of field, cinematic lighting, warm natural sunlight, high detail textures, realistic metal reflections, soft background blur, tilt-shift effect, 8K resolution, professional macro lens photography, hyper-realistic miniature diorama style.", "negative_prompt": "blurry, low resolution, cartoon style, CGI look, unrealistic proportions, oversaturated colors, harsh shadows, distorted anatomy, messy composition, noisy image, watermark, text, logo", "settings": { "resolution": "1024x1024", "lighting": "golden hour natural sunlight", "camera": "macro lens 100mm", "depth_of_field": "very shallow", "style": "photorealistic miniature diorama", "quality": "ultra high detail", "aspect_ratio": "1:1" } }

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"prompt\": \"Ultra-realistic macro photography of miniature construction workers working inside a lush green grass field at golden hour. Tiny workers wearing safety helmets and reflective orange-yellow vests are installing and cleaning a large metallic rugby goal post structure emerging from the grass. One worker is spraying water from a hose connected to a small white utility truck parked in the background, visible water droplets sparkling in sunlight. Another worker is pushing a small lawn mower trimming grass. Two workers are standing on metal ladders adjusting and polishing the horizontal bar of the goal post. Additional workers are cleaning grass lines with tools, creating white chalk field markings across the grass. Dew drops on grass blades glowing with soft bokeh in background. Extremely shallow depth of field, cinematic lighting, warm natural sunlight, high detail textures, realistic metal reflections, soft background blur, tilt-shift effect, 8K resolution, professional macro lens photography, hyper-realistic miniature diorama style.\", \"negative_prompt\": \"blurry, low resolution, cartoon style, CGI look, unrealistic proportions, oversaturated colors, harsh shadows, distorted anatomy, messy composition, noisy image, watermark, text, logo\", \"settings\": { \"resolution\": \"1024x1024\", \"lighting\": \"golden hour natural sunlight\", \"camera\": \"macro lens 100mm\", \"depth_of_field\": \"very shallow\", \"style\": \"photorealistic miniature diorama\", \"quality\": \"ultra high detail\", \"aspect_ratio\": \"1:1\" } }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

{ "task": "premium_animated_sticker_pack", "ref_image":...

{ "task": "premium_animated_sticker_pack", "ref_image": "use_only_uploaded_identity_preserve_all_features", "format": { "grid": "4x4", "count": 16, "aspect": "2:3", "spacing": "clean", "alignment": "perfect", "bg": "white" }, "style": { "character": "chibi_65_70_head_dynamic_pose_rounded_expressive", "render": "high_end_3D_pixar_quality", "outline": "white_stroke" }, "clothing": { "type": "modern_streetwear", "items": ["hoodies","jackets"], "colors": ["blue","purple","orange","teal"], "variation": "slight_consistent" }, "text": { "placement": "top", "style": "bold_curved_gradient", "effects": ["white_outline","shadow","emoji"] }, "stickers": [ ["HAPPY","wave"], ["SAD","down"], ["LOL","laugh"], ["SORRY","hands_together"], ["NO!","cross_arms"], ["YES!","thumbs_up"], ["SEE YA!","bye"], ["COOL","finger_guns"], ["BUSY","phone"], ["WAIT!","stop"], ["YAWN","sleepy"], ["OH NO!","facepalm"], ["OMG","shock"], ["WOW!","point"], ["EWW!","disgust"], ["REALLY?","shrug"] ], "lighting": "soft_studio_rim_light_bright_clean", "extras": ["sparkles","hearts","sweat","motion_lines"], "consistency": "same_identity_face_glasses_grooming_quality_proportions", "negative": "no_mismatch_no_identity_change_no_realistic_body_no_stiff_no_dull_no_overlap_no_bad_hands_no_blur_no_low_quality_no_inconsistent_no_watermark" }

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"task\": \"premium_animated_sticker_pack\", \"ref_image\": \"use_only_uploaded_identity_preserve_all_features\", \"format\": { \"grid\": \"4x4\", \"count\": 16, \"aspect\": \"2:3\", \"spacing\": \"clean\", \"alignment\": \"perfect\", \"bg\": \"white\" }, \"style\": { \"character\": \"chibi_65_70_head_dynamic_pose_rounded_expressive\", \"render\": \"high_end_3D_pixar_quality\", \"outline\": \"white_stroke\" }, \"clothing\": { \"type\": \"modern_streetwear\", \"items\": [\"hoodies\",\"jackets\"], \"colors\": [\"blue\",\"purple\",\"orange\",\"teal\"], \"variation\": \"slight_consistent\" }, \"text\": { \"placement\": \"top\", \"style\": \"bold_curved_gradient\", \"effects\": [\"white_outline\",\"shadow\",\"emoji\"] }, \"stickers\": [ [\"HAPPY\",\"wave\"], [\"SAD\",\"down\"], [\"LOL\",\"laugh\"], [\"SORRY\",\"hands_together\"], [\"NO!\",\"cross_arms\"], [\"YES!\",\"thumbs_up\"], [\"SEE YA!\",\"bye\"], [\"COOL\",\"finger_guns\"], [\"BUSY\",\"phone\"], [\"WAIT!\",\"stop\"], [\"YAWN\",\"sleepy\"], [\"OH NO!\",\"facepalm\"], [\"OMG\",\"shock\"], [\"WOW!\",\"point\"], [\"EWW!\",\"disgust\"], [\"REALLY?\",\"shrug\"] ], \"lighting\": \"soft_studio_rim_light_bright_clean\", \"extras\": [\"sparkles\",\"hearts\",\"sweat\",\"motion_lines\"], \"consistency\": \"same_identity_face_glasses_grooming_quality_proportions\", \"negative\": \"no_mismatch_no_identity_change_no_realistic_body_no_stiff_no_dull_no_overlap_no_bad_hands_no_blur_no_low_quality_no_inconsistent_no_watermark\" }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

{ "request": { "product": "[PRODUCT HERE]", "backg...

{ "request": { "product": "[PRODUCT HERE]", "background_color": "#59925C", "style": "prismatic_industrial_minimalism", "visual_elements": { "structure": "multiple separate vertical acrylic layers forming the product silhouette — each layer is a distinct flat panel with visible air gaps between them, like slices of the product spaced apart", "material": "high-clarity glass with rainbow prismatic iridescent tint", "hardware": "stainless steel through-bolts with visible internal Allen hexagonal socket heads — bolts pass through all layers front to back, holding them together with visible spacing", "orientation": "strictly upright vertical placement, full object visibility", "lighting": "dispersive spectral highlights and sharp caustics" }, "composition": { "frame": "wide shot, no cropping, centered full-product view", "camera_angle": "eye-level studio perspective, slightly angled to reveal gaps between layers", "depth_of_field": "deep enough to maintain focus on hardware details", "background": "seamless solid #59925C background with no floor, surface, pedestal, platform, table, shadow ground, or horizon line — the product floats against a uniform single-color field", "grounding": "no visible ground plane, no reflective surface beneath the product" }, "rendering_details": { "transparency": "multi-layered refraction with thin-film interference", "finish": "polished edges with subtle holographic light dispersion", "hardware_detail": "macro-precision on hex-head bolt sockets", "layer_direction": "every glass/acrylic layer is strictly vertical — no horizontal slabs, curved shells, or molded forms", "layer_separation": "each glass panel must be visibly separated with clear air gaps — not fused or touching — bolts are the only element connecting the layers" } } }

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"request\": { \"product\": \"[PRODUCT HERE]\", \"background_color\": \"#59925C\", \"style\": \"prismatic_industrial_minimalism\", \"visual_elements\": { \"structure\": \"multiple separate vertical acrylic layers forming the product silhouette — each layer is a distinct flat panel with visible air gaps between them, like slices of the product spaced apart\", \"material\": \"high-clarity glass with rainbow prismatic iridescent tint\", \"hardware\": \"stainless steel through-bolts with visible internal Allen hexagonal socket heads — bolts pass through all layers front to back, holding them together with visible spacing\", \"orientation\": \"strictly upright vertical placement, full object visibility\", \"lighting\": \"dispersive spectral highlights and sharp caustics\" }, \"composition\": { \"frame\": \"wide shot, no cropping, centered full-product view\", \"camera_angle\": \"eye-level studio perspective, slightly angled to reveal gaps between layers\", \"depth_of_field\": \"deep enough to maintain focus on hardware details\", \"background\": \"seamless solid #59925C background with no floor, surface, pedestal, platform, table, shadow ground, or horizon line — the product floats against a uniform single-color field\", \"grounding\": \"no visible ground plane, no reflective surface beneath the product\" }, \"rendering_details\": { \"transparency\": \"multi-layered refraction with thin-film interference\", \"finish\": \"polished edges with subtle holographic light dispersion\", \"hardware_detail\": \"macro-precision on hex-head bolt sockets\", \"layer_direction\": \"every glass/acrylic layer is strictly vertical — no horizontal slabs, curved shells, or molded forms\", \"layer_separation\": \"each glass panel must be visibly separated with clear air gaps — not fused or touching — bolts are the only element connecting the layers\" } } }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Ultra-detailed 3D chibi-style character with a big head and...

Ultra-detailed 3D chibi-style character with a big head and expressive eyes, cute proportions, smooth stylized skin, friendly smile. The character is casually leaning against a small green off-road Jeep, holding a takeaway coffee cup. Cozy outdoor café courtyard setting with wooden tables, potted plants, warm string lights in the background. Soft golden-hour lighting, shallow depth of field, cinematic bokeh. High-quality Pixar-style 3D render, vibrant colors, clean textures, adorable yet realistic character design, professional character illustration, 8K render.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-detailed 3D chibi-style character with a big head and expressive eyes, cute proportions, smooth stylized skin, friendly smile. The character is casually leaning against a small green off-road Jeep, holding a takeaway coffee cup. Cozy outdoor café courtyard setting with wooden tables, potted plants, warm string lights in the background. Soft golden-hour lighting, shallow depth of field, cinematic bokeh. High-quality Pixar-style 3D render, vibrant colors, clean textures, adorable yet realistic character design, professional character illustration, 8K render."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Ultra-realistic top-down geographic map with precise cartogr...

Ultra-realistic top-down geographic map with precise cartographic accuracy, clearly defining the true geographic context of [COUNTRY]. From the exact real-world coordinates of [CITY], a highly detailed miniature 3D diorama rises organically from the map surface, perfectly aligned with its true location. The diorama features iconic architecture, signature natural landmarks, and authentic cultural elements of the city, seamlessly integrated into the map as if sculpted from it. Physically accurate materials, realistic surface textures, and true-to-scale proportions. Shallow depth of field with macro-lens realism, subtle atmospheric perspective. Soft neutral studio lighting with controlled shadows to enhance depth and realism. Cinematic composition, premium architectural-model photography style. Ultra-sharp detail, high dynamic range, photorealistic finish. Square 1:1 format, realistic scale, museum-quality visual output.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic top-down geographic map with precise cartographic accuracy, clearly defining the true geographic context of [COUNTRY]. From the exact real-world coordinates of [CITY], a highly detailed miniature 3D diorama rises organically from the map surface, perfectly aligned with its true location. The diorama features iconic architecture, signature natural landmarks, and authentic cultural elements of the city, seamlessly integrated into the map as if sculpted from it. Physically accurate materials, realistic surface textures, and true-to-scale proportions. Shallow depth of field with macro-lens realism, subtle atmospheric perspective. Soft neutral studio lighting with controlled shadows to enhance depth and realism. Cinematic composition, premium architectural-model photography style. Ultra-sharp detail, high dynamic range, photorealistic finish. Square 1:1 format, realistic scale, museum-quality visual output."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A [PRODUCT] rendered as if entirely grown from living moss,...

A [PRODUCT] rendered as if entirely grown from living moss, perfectly maintaining product form while being undeniably alive and soft. Different moss varieties create texture variation: smooth cushion moss for flat surfaces, feathery fern moss for details, tiny fruiting bodies as accent points. Damp, verdant, breathing. Positioned in a botanical studio setting or against dark earth tones. Biophilic design meets product photography. Soft natural lighting emphasizing the life, the moisture, the green depth. Sharp focus, saturated natural greens, wellness brand aesthetic, ultra-high resolution, the manufactured made living.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A [PRODUCT] rendered as if entirely grown from living moss, perfectly maintaining product form while being undeniably alive and soft. Different moss varieties create texture variation: smooth cushion moss for flat surfaces, feathery fern moss for details, tiny fruiting bodies as accent points. Damp, verdant, breathing. Positioned in a botanical studio setting or against dark earth tones. Biophilic design meets product photography. Soft natural lighting emphasizing the life, the moisture, the green depth. Sharp focus, saturated natural greens, wellness brand aesthetic, ultra-high resolution, the manufactured made living."
}
JSON
FAQ

Using nano-banana-2 prompts

What is %{model}?

%{model} is available through RunAPI as part of the unified model catalog. These prompts show practical input patterns that agents and backend services can reuse.

How do I use these prompts?

Copy any prompt and paste it into Claude Code, Codex, Cursor, or Windsurf after installing the RunAPI MCP Server. Developers can also copy the API example and send the prompt directly.

Do these prompts cost money to browse?

Browsing and copying prompt examples is free. Generation requests only cost money when you call a RunAPI model with your API key.

Can I adapt the prompts for production?

Yes. Treat each prompt as a starting point, then add your brand rules, output dimensions, safety constraints, and application-specific context before using it in production.