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

High-quality stylized 3D CGI big-head cartoon render of Harr...

High-quality stylized 3D CGI big-head cartoon render of Harry Potter, square profile picture composition, oversized head and small shoulders in a playful Pixar-style caricature. Head and facial features exaggerated while keeping him instantly recognizable: messy dark hair, round glasses, lightning-shaped scar on the forehead, curious and brave expression. Portrait framing focused on the large head with a small portion of the shoulders visible, wearing Hogwarts robe collar and tie. Smooth polished materials, glossy animated film shading with refined Pixar-style character rendering. Soft cinematic lighting creating gentle highlights on the glasses. Minimalist bright magical red background inspired by Hogwarts colors, clean composition optimized for social media profile pictures, ultra-detailed, no text, 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": "High-quality stylized 3D CGI big-head cartoon render of Harry Potter, square profile picture composition, oversized head and small shoulders in a playful Pixar-style caricature. Head and facial features exaggerated while keeping him instantly recognizable: messy dark hair, round glasses, lightning-shaped scar on the forehead, curious and brave expression. Portrait framing focused on the large head with a small portion of the shoulders visible, wearing Hogwarts robe collar and tie. Smooth polished materials, glossy animated film shading with refined Pixar-style character rendering. Soft cinematic lighting creating gentle highlights on the glasses. Minimalist bright magical red background inspired by Hogwarts colors, clean composition optimized for social media profile pictures, ultra-detailed, no text, no watermark."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

(Paris, PC) Anchor: [Location] :: [Material Concept]::4 Morp...

(Paris, PC) Anchor: [Location] :: [Material Concept]::4 Morphology: Miniature architectural cityscape of [Location], entire skyline constructed via the assemblage of [Material Concept] components, skyscrapers and structures formed from the constituent parts of [Material Concept], thematic structural engineering, hyper-detailed diorama::3 Material Physics: Physical properties of [Material Concept] applied to architecture, [Material Concept] textures replacing concrete and glass, innate material logic of [Material Concept], high-fidelity surface details::3 Illumination: Lighting exhibiting the surface properties of [Material Concept], ambient occlusion, volumetric atmosphere matching the material theme::2 Render Stack: Tilt-shift photography, macro lens, f/2.8, 8k, scale model aesthetic, detailed texture mapping, Unreal Engine 5 render::1 Negative: [Human presence, massive scale, blurry, low resolution, bad geometry, distortions, flat 2D, text, watermark]:: -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": "(Paris, PC) Anchor: [Location] :: [Material Concept]::4 Morphology: Miniature architectural cityscape of [Location], entire skyline constructed via the assemblage of [Material Concept] components, skyscrapers and structures formed from the constituent parts of [Material Concept], thematic structural engineering, hyper-detailed diorama::3 Material Physics: Physical properties of [Material Concept] applied to architecture, [Material Concept] textures replacing concrete and glass, innate material logic of [Material Concept], high-fidelity surface details::3 Illumination: Lighting exhibiting the surface properties of [Material Concept], ambient occlusion, volumetric atmosphere matching the material theme::2 Render Stack: Tilt-shift photography, macro lens, f/2.8, 8k, scale model aesthetic, detailed texture mapping, Unreal Engine 5 render::1 Negative: [Human presence, massive scale, blurry, low resolution, bad geometry, distortions, flat 2D, text, watermark]:: -1"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A handcrafted felt miniature scene featuring a soft wool dol...

A handcrafted felt miniature scene featuring a soft wool doll character with simplified facial features, round button eyes, rosy cheeks, and a gentle smile. The character wears a dark felt jacket, gray wool t-shirt, and matching trousers, styled in a minimal casual tech look. He is walking on grassy felt terrain alongside a small felt fox companion. Whimsical storybook environment with pastel greenery, soft clouds, and a bright blue sky, subtle miniature rockets blurred in the background. Macro photography style, shallow depth of field, soft natural daylight, stop-motion animation aesthetic, ultra-detailed felt fibers and fabric textures, cozy cinematic mood, high quality.

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 handcrafted felt miniature scene featuring a soft wool doll character with simplified facial features, round button eyes, rosy cheeks, and a gentle smile. The character wears a dark felt jacket, gray wool t-shirt, and matching trousers, styled in a minimal casual tech look. He is walking on grassy felt terrain alongside a small felt fox companion. Whimsical storybook environment with pastel greenery, soft clouds, and a bright blue sky, subtle miniature rockets blurred in the background. Macro photography style, shallow depth of field, soft natural daylight, stop-motion animation aesthetic, ultra-detailed felt fibers and fabric textures, cozy cinematic mood, high quality."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

{ "Objective": "Create a heartwarming, whimsical portrait...

{ "Objective": "Create a heartwarming, whimsical portrait blending photorealistic realism with a tiny Pixar-style animated character", "PersonaDetails": { "PrimarySubject": { "Type": "Young girl", "Expression": "Bright, joyful smile", "Hair": { "Style": "Long light-brown hair", "Accessories": "Cute ribbon bows" }, "Wardrobe": { "Outerwear": "Casual denim jacket", "Top": "Soft neutral-colored shirt" } }, "SecondarySubject": { "Type": "Tiny 3D cartoon version of the girl", "Scale": "Miniature, held delicately between fingers", "Style": "Pixar-style 3D character", "Proportions": "Oversized expressive eyes, rounded features", "Hair": "Pigtails matching the real girl", "Wardrobe": "Denim outfit matching the real subject", "Pose": "Arms raised joyfully" } }, "Composition": { "Framing": "Close-up to medium portrait", "Interaction": "Clear playful interaction between girl and miniature character", "DepthOfField": "Shallow depth of field", "Focus": "Ultra-sharp focus on both faces" }, "LightingAndBackground": { "Lighting": "Warm natural daylight", "Background": { "Style": "Soft golden bokeh", "Mood": "Dreamy, magical" } }, "ArtDirection": { "StyleFusion": [ "Photorealistic child portrait photography", "Pixar-style 3D animated character" ], "Aesthetic": "Magical realism with playful scale contrast", "TextureDetail": "Ultra-detailed skin, fabric, and 3D materials" }, "MoodAndTone": { "Mood": "Heartwarming, joyful, whimsical", "EmotionalFeel": "Wonder, innocence, playful imagination" }, "PhotographyStyle": { "Genre": "Cinematic lifestyle portrait photography", "LensFeel": "Portrait lens with creamy bokeh", "ImageQuality": "8K ultra-high realism" }, "NegativePrompt": [ "uncanny valley", "scary doll", "low-quality 3D", "harsh lighting", "oversaturated colors", "blurry focus", "flat expression" ], "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 heartwarming, whimsical portrait blending photorealistic realism with a tiny Pixar-style animated character\", \"PersonaDetails\": { \"PrimarySubject\": { \"Type\": \"Young girl\", \"Expression\": \"Bright, joyful smile\", \"Hair\": { \"Style\": \"Long light-brown hair\", \"Accessories\": \"Cute ribbon bows\" }, \"Wardrobe\": { \"Outerwear\": \"Casual denim jacket\", \"Top\": \"Soft neutral-colored shirt\" } }, \"SecondarySubject\": { \"Type\": \"Tiny 3D cartoon version of the girl\", \"Scale\": \"Miniature, held delicately between fingers\", \"Style\": \"Pixar-style 3D character\", \"Proportions\": \"Oversized expressive eyes, rounded features\", \"Hair\": \"Pigtails matching the real girl\", \"Wardrobe\": \"Denim outfit matching the real subject\", \"Pose\": \"Arms raised joyfully\" } }, \"Composition\": { \"Framing\": \"Close-up to medium portrait\", \"Interaction\": \"Clear playful interaction between girl and miniature character\", \"DepthOfField\": \"Shallow depth of field\", \"Focus\": \"Ultra-sharp focus on both faces\" }, \"LightingAndBackground\": { \"Lighting\": \"Warm natural daylight\", \"Background\": { \"Style\": \"Soft golden bokeh\", \"Mood\": \"Dreamy, magical\" } }, \"ArtDirection\": { \"StyleFusion\": [ \"Photorealistic child portrait photography\", \"Pixar-style 3D animated character\" ], \"Aesthetic\": \"Magical realism with playful scale contrast\", \"TextureDetail\": \"Ultra-detailed skin, fabric, and 3D materials\" }, \"MoodAndTone\": { \"Mood\": \"Heartwarming, joyful, whimsical\", \"EmotionalFeel\": \"Wonder, innocence, playful imagination\" }, \"PhotographyStyle\": { \"Genre\": \"Cinematic lifestyle portrait photography\", \"LensFeel\": \"Portrait lens with creamy bokeh\", \"ImageQuality\": \"8K ultra-high realism\" }, \"NegativePrompt\": [ \"uncanny valley\", \"scary doll\", \"low-quality 3D\", \"harsh lighting\", \"oversaturated colors\", \"blurry focus\", \"flat expression\" ], \"ResponseFormat\": { \"Type\": \"Single image\", \"Orientation\": \"Portrait\", \"AspectRatio\": \"2:3\" } }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A hyper-realistic 3D photo concept showing a hand holding a...

A hyper-realistic 3D photo concept showing a hand holding a square polaroid photo labeled “[ELEMENT]”. Inside the photo, there’s a close-up of [ELEMENT], and it flows seamlessly out of the photo frame into the real world, naturally interacting with the surface below. The text “[ELEMENT]” appears printed cleanly on the white border of the photo. Realistic cinematic lighting, ultra-detailed textures, artistic composition

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 hyper-realistic 3D photo concept showing a hand holding a square polaroid photo labeled “[ELEMENT]”. Inside the photo, there’s a close-up of [ELEMENT], and it flows seamlessly out of the photo frame into the real world, naturally interacting with the surface below. The text “[ELEMENT]” appears printed cleanly on the white border of the photo. Realistic cinematic lighting, ultra-detailed textures, artistic composition"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Pixar/Disney 3D CGI animated movie poster. Soft volumetric l...

Pixar/Disney 3D CGI animated movie poster. Soft volumetric lighting, smooth subsurface skin shading, expressive Pixar-style faces, polished studio render quality. Vertical poster, 3:4 ratio. Show/Movie: [SHOW/MOVIE] Automatically select the 3 most iconic characters from [SHOW/MOVIE]. Render each as a Pixar 3D CGI character with recognizable likeness, wearing their single most iconic outfit. TITLE — LOCKED: Show title at the very top. ALL CAPS. Pure white. Extra bold sans-serif block font. No outlines, no graphic boxes, no mixed case. Large, centered, one line if possible. PANELS — LOCKED: Three vertical panels below the title. Each panel shows ONE character, UPPER BODY from waist up, filling the panel with face large and centered. Panel outline is a bold thick stroke in the most iconic accent color of [SHOW/MOVIE] — vivid and saturated, not dark or muted. ∙Left panel: perfectly straight ∙Center panel: perfectly straight, slightly larger than the side panels ∙Right panel: perfectly straight BACKGROUND — LOCKED FORMAT, VARIABLE PATTERN: Background uses the 2 most iconic colors of [SHOW/MOVIE] — fully saturated, vivid and punchy, NOT darkened or desaturated. High contrast and visually striking. Behind the panels, fill the background with a large abstract graphic pattern directly inspired by the most iconic visual symbol of [SHOW/MOVIE] — blown up, repeating, semi-transparent. Examples: Breaking Bad = oversized molecular/chemical structures in bright yellow-green. Stranger Things = tangled vine tendrils in vivid red. Peaky Blinders = repeating razor blade motif in sharp silver-burgundy. The Sopranos = bold pinstripe pattern in navy and gold. No scenes, no characters, no locations in the background. Pattern only. Overall image must feel bold, vibrant, energetic and eye-catching — like a premium comic poster, not a muted cinematic still. RULES: ∙Upper body only — waist to top of head, face prominent and large inside panel ∙Pure white ALL CAPS bold title only — no other text ∙No character names, no watermarks, no logos, no extra graphic elements ∙Colors must be vivid, saturated and high contrast throughout — no muted, faded or desaturated tones anywhere ∙8K, professional Pixar studio render quality

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": "Pixar/Disney 3D CGI animated movie poster. Soft volumetric lighting, smooth subsurface skin shading, expressive Pixar-style faces, polished studio render quality. Vertical poster, 3:4 ratio. Show/Movie: [SHOW/MOVIE] Automatically select the 3 most iconic characters from [SHOW/MOVIE]. Render each as a Pixar 3D CGI character with recognizable likeness, wearing their single most iconic outfit. TITLE — LOCKED: Show title at the very top. ALL CAPS. Pure white. Extra bold sans-serif block font. No outlines, no graphic boxes, no mixed case. Large, centered, one line if possible. PANELS — LOCKED: Three vertical panels below the title. Each panel shows ONE character, UPPER BODY from waist up, filling the panel with face large and centered. Panel outline is a bold thick stroke in the most iconic accent color of [SHOW/MOVIE] — vivid and saturated, not dark or muted. ∙Left panel: perfectly straight ∙Center panel: perfectly straight, slightly larger than the side panels ∙Right panel: perfectly straight BACKGROUND — LOCKED FORMAT, VARIABLE PATTERN: Background uses the 2 most iconic colors of [SHOW/MOVIE] — fully saturated, vivid and punchy, NOT darkened or desaturated. High contrast and visually striking. Behind the panels, fill the background with a large abstract graphic pattern directly inspired by the most iconic visual symbol of [SHOW/MOVIE] — blown up, repeating, semi-transparent. Examples: Breaking Bad = oversized molecular/chemical structures in bright yellow-green. Stranger Things = tangled vine tendrils in vivid red. Peaky Blinders = repeating razor blade motif in sharp silver-burgundy. The Sopranos = bold pinstripe pattern in navy and gold. No scenes, no characters, no locations in the background. Pattern only. Overall image must feel bold, vibrant, energetic and eye-catching — like a premium comic poster, not a muted cinematic still. RULES: ∙Upper body only — waist to top of head, face prominent and large inside panel ∙Pure white ALL CAPS bold title only — no other text ∙No character names, no watermarks, no logos, no extra graphic elements ∙Colors must be vivid, saturated and high contrast throughout — no muted, faded or desaturated tones anywhere ∙8K, professional Pixar studio render quality"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Hyper-stylized dynamic 3D floating head portrait of the atta...

Hyper-stylized dynamic 3D floating head portrait of the attached reference image, perfectly centered, upright, symmetrical, filling 80% of the 4:5 frame. No neck. No shoulder edges. Clean cut-out. Subject floating in white space.Predominantly white background enhanced with subtle tonal gradients and soft volumetric glow. A thin luminous neon halo ring glows behind the head, slightly diffused but clean and circular. Facial features match reference photo precisely. Expression: confident, dominant smirk with focused eye contact. Diamond-studded braces sparkle under sharp lighting. Sleek silver sports sunglasses reflect digital stadium lights and neon streaks. Chrome stud earrings and polished silver chain subtly visible. Official lakers shirt strictly front view chest logo and sponsor visible only. Lighting combines bright frontal fill with strong rim lights. Subtle neon reflections trace along jawline edges. Micro lens flares appear at high-intensity highlights. White-on-white energy with controlled neon accents. Futuristic champion aura. Glossy skin, exaggerated reflections, cinematic intensity. Aspect ratio 4:5.

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": "Hyper-stylized dynamic 3D floating head portrait of the attached reference image, perfectly centered, upright, symmetrical, filling 80% of the 4:5 frame. No neck. No shoulder edges. Clean cut-out. Subject floating in white space.Predominantly white background enhanced with subtle tonal gradients and soft volumetric glow. A thin luminous neon halo ring glows behind the head, slightly diffused but clean and circular. Facial features match reference photo precisely. Expression: confident, dominant smirk with focused eye contact. Diamond-studded braces sparkle under sharp lighting. Sleek silver sports sunglasses reflect digital stadium lights and neon streaks. Chrome stud earrings and polished silver chain subtly visible. Official lakers shirt strictly front view chest logo and sponsor visible only. Lighting combines bright frontal fill with strong rim lights. Subtle neon reflections trace along jawline edges. Micro lens flares appear at high-intensity highlights. White-on-white energy with controlled neon accents. Futuristic champion aura. Glossy skin, exaggerated reflections, cinematic intensity. Aspect ratio 4:5."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

{ "type": "image_generation_prompt", "style": "ultra-rea...

{ "type": "image_generation_prompt", "style": "ultra-realistic, cinematic, sci-fi mech aesthetic, cyberpunk", "resolution": "8K", "aspect_ratio": "2:3", "scene": { "location": "industrial workshop", "background": "clean minimal workshop environment with subtle machinery elements and soft atmospheric haze" }, "subject": { "gender": "female", "role": "cyberpunk mechanic", "identity": { "same_face": true, "same_character": true, "preserve_facial_features": true, "realism": "exact facial structure, skin texture, and expression retained" }, "pose": { "stance": "standing strong and confident", "body_language": "powerful, grounded posture" }, "appearance": { "outfit": { "jacket": "purple futuristic techwear jacket", "details": [ "tactical straps", "utility pouches", "reinforced armored panels", "futuristic cyberpunk textures" ] } }, "equipment": { "exosuit_backpack": { "type": "massive mechanical industrial exosuit", "components": [ "large industrial engine core", "exposed wires and cables", "metal pipes and hydraulic tubes", "heavy mechanical armor plates", "mechanical joints and connectors" ], "style": "futuristic sci-fi mech design, functional and industrial" } } }, "lighting": { "type": "cinematic industrial lighting", "details": [ "soft dramatic shadows", "cool and warm mixed highlights", "subtle volumetric light", "metal reflections and glow accents" ] }, "camera": { "focus": "sharp focus on subject and exosuit", "depth_of_field": "shallow with soft background separation", "composition": "centered, full-body or mid-body portrait" }, "quality": { "detail_level": "hyper detailed", "textures": "ultra realistic skin, fabric, and metal textures", "sharpness": "extremely sharp", "noise": "clean high-resolution render" }, "mood": "powerful, futuristic, cinematic, sci-fi industrial", "constraints": [ "no cartoon style", "no low detail", "no distortion", "no watermark", "no text overlay", "no unrealistic anatomy" ], "output_goal": "Create a hyper-realistic cinematic portrait of a cyberpunk mechanic girl wearing a massive mechanical exosuit backpack with industrial engine components, wires, pipes, and metal armor, standing strong in a minimal workshop environment with dramatic lighting and ultra-detailed sci-fi mech aesthetics." }

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": "{ \"type\": \"image_generation_prompt\", \"style\": \"ultra-realistic, cinematic, sci-fi mech aesthetic, cyberpunk\", \"resolution\": \"8K\", \"aspect_ratio\": \"2:3\", \"scene\": { \"location\": \"industrial workshop\", \"background\": \"clean minimal workshop environment with subtle machinery elements and soft atmospheric haze\" }, \"subject\": { \"gender\": \"female\", \"role\": \"cyberpunk mechanic\", \"identity\": { \"same_face\": true, \"same_character\": true, \"preserve_facial_features\": true, \"realism\": \"exact facial structure, skin texture, and expression retained\" }, \"pose\": { \"stance\": \"standing strong and confident\", \"body_language\": \"powerful, grounded posture\" }, \"appearance\": { \"outfit\": { \"jacket\": \"purple futuristic techwear jacket\", \"details\": [ \"tactical straps\", \"utility pouches\", \"reinforced armored panels\", \"futuristic cyberpunk textures\" ] } }, \"equipment\": { \"exosuit_backpack\": { \"type\": \"massive mechanical industrial exosuit\", \"components\": [ \"large industrial engine core\", \"exposed wires and cables\", \"metal pipes and hydraulic tubes\", \"heavy mechanical armor plates\", \"mechanical joints and connectors\" ], \"style\": \"futuristic sci-fi mech design, functional and industrial\" } } }, \"lighting\": { \"type\": \"cinematic industrial lighting\", \"details\": [ \"soft dramatic shadows\", \"cool and warm mixed highlights\", \"subtle volumetric light\", \"metal reflections and glow accents\" ] }, \"camera\": { \"focus\": \"sharp focus on subject and exosuit\", \"depth_of_field\": \"shallow with soft background separation\", \"composition\": \"centered, full-body or mid-body portrait\" }, \"quality\": { \"detail_level\": \"hyper detailed\", \"textures\": \"ultra realistic skin, fabric, and metal textures\", \"sharpness\": \"extremely sharp\", \"noise\": \"clean high-resolution render\" }, \"mood\": \"powerful, futuristic, cinematic, sci-fi industrial\", \"constraints\": [ \"no cartoon style\", \"no low detail\", \"no distortion\", \"no watermark\", \"no text overlay\", \"no unrealistic anatomy\" ], \"output_goal\": \"Create a hyper-realistic cinematic portrait of a cyberpunk mechanic girl wearing a massive mechanical exosuit backpack with industrial engine components, wires, pipes, and metal armor, standing strong in a minimal workshop environment with dramatic lighting and ultra-detailed sci-fi mech aesthetics.\" }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Vertical 4:5 surreal 3D scene featuring a photorealistic cha...

Vertical 4:5 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 his own scooter or motorbike directly on top of the blue GPS route line itself, moving forward toward a red destination pin. The character wears culturally neutral, realistic urban clothing inspired by [COUNTRY], with accurate fabric behavior and natural riding posture. Below, a stylized GPS-style city map of [CITY] fills the scene. A chaos zone at [LANDMARK / AREA] 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": "Vertical 4:5 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 his own scooter or motorbike directly on top of the blue GPS route line itself, moving forward toward a red destination pin. The character wears culturally neutral, realistic urban clothing inspired by [COUNTRY], with accurate fabric behavior and natural riding posture. Below, a stylized GPS-style city map of [CITY] fills the scene. A chaos zone at [LANDMARK / AREA] 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

3D Pixar-style animated girl shown in a 6-panel grid, same c...

3D Pixar-style animated girl shown in a 6-panel grid, same character with short brown hair and big blue eyes, different emotions (happy, shocked, angry, caring, confident, thumbs up), colorful solid backgrounds (yellow, blue, red, pink, purple, green), soft studio lighting, smooth 3D render, vibrant colors, ultra-detailed, 4K, animated movie quality.

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": "3D Pixar-style animated girl shown in a 6-panel grid, same character with short brown hair and big blue eyes, different emotions (happy, shocked, angry, caring, confident, thumbs up), colorful solid backgrounds (yellow, blue, red, pink, purple, green), soft studio lighting, smooth 3D render, vibrant colors, ultra-detailed, 4K, animated movie quality."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A highly detailed pebble mosaic portrait of a beautiful woma...

A highly detailed pebble mosaic portrait of a beautiful woman, where the entire image is constructed from thousands of smooth natural stones and pebbles. The pebbles vary in size and color to form realistic facial features, hair, skin tones, and clothing patterns. The woman has long flowing hair and is wearing a richly patterned red traditional dress. The background is also composed of carefully arranged river stones creating a textured mosaic wall. Ultra-detailed stone texture, gemini natural earthy colors, soft lighting, artistic stone mosaic craftsmanship, gemini photorealistic composition, 8k resolution, intricate pebble placement, handcrafted mosaic art 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 highly detailed pebble mosaic portrait of a beautiful woman, where the entire image is constructed from thousands of smooth natural stones and pebbles. The pebbles vary in size and color to form realistic facial features, hair, skin tones, and clothing patterns. The woman has long flowing hair and is wearing a richly patterned red traditional dress. The background is also composed of carefully arranged river stones creating a textured mosaic wall. Ultra-detailed stone texture, gemini natural earthy colors, soft lighting, artistic stone mosaic craftsmanship, gemini photorealistic composition, 8k resolution, intricate pebble placement, handcrafted mosaic art style."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

{ "scene": { "description": "Artistic miniature dioram...

{ "scene": { "description": "Artistic miniature diorama of youthful figurines collaboratively painting a vibrant environmental mural on a small outdoor wall near Gedung Sate, Bandung.", "location": "Near Gedung Sate, Bandung, Indonesia", "environment": "Urban cultural landmark setting with a cozy, handcrafted miniature scale" }, "subjects": { "characters": "Miniature youth figurines", "actions": [ "painting a large colorful mural", "climbing tiny ladders", "holding paint brushes and buckets", "splashing paint playfully" ], "expressions": "Energetic, joyful, creative" }, "mural_details": { "theme": "Environmental awareness and positivity", "elements": [ "green mountains", "lush trees", "bicycles symbolizing eco-friendly transport", "clean flowing rivers" ], "text": "You're the best, Sharon" }, "props": { "items": [ "tiny paint buckets", "mini ladders", "small paint brushes", "paint splashes on ground and wall" ] }, "style": { "art_form": "Miniature diorama", "photography": "Cinematic macro photography", "detail_level": "Highly detailed textures and figures" }, "lighting": { "type": "Warm, soft lighting", "mood": "Bright, cheerful, uplifting" }, "camera": { "depth_of_field": "Shallow depth of field", "focus": "Sharp focus on figurines and mural" }, "color_palette": { "tones": [ "Bright", "Cheerful", "Vivid" ] }, "render_settings": { "aspect_ratio": "4:5", "quality": 2, "stylization": "2/5" } }

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": "{ \"scene\": { \"description\": \"Artistic miniature diorama of youthful figurines collaboratively painting a vibrant environmental mural on a small outdoor wall near Gedung Sate, Bandung.\", \"location\": \"Near Gedung Sate, Bandung, Indonesia\", \"environment\": \"Urban cultural landmark setting with a cozy, handcrafted miniature scale\" }, \"subjects\": { \"characters\": \"Miniature youth figurines\", \"actions\": [ \"painting a large colorful mural\", \"climbing tiny ladders\", \"holding paint brushes and buckets\", \"splashing paint playfully\" ], \"expressions\": \"Energetic, joyful, creative\" }, \"mural_details\": { \"theme\": \"Environmental awareness and positivity\", \"elements\": [ \"green mountains\", \"lush trees\", \"bicycles symbolizing eco-friendly transport\", \"clean flowing rivers\" ], \"text\": \"You're the best, Sharon\" }, \"props\": { \"items\": [ \"tiny paint buckets\", \"mini ladders\", \"small paint brushes\", \"paint splashes on ground and wall\" ] }, \"style\": { \"art_form\": \"Miniature diorama\", \"photography\": \"Cinematic macro photography\", \"detail_level\": \"Highly detailed textures and figures\" }, \"lighting\": { \"type\": \"Warm, soft lighting\", \"mood\": \"Bright, cheerful, uplifting\" }, \"camera\": { \"depth_of_field\": \"Shallow depth of field\", \"focus\": \"Sharp focus on figurines and mural\" }, \"color_palette\": { \"tones\": [ \"Bright\", \"Cheerful\", \"Vivid\" ] }, \"render_settings\": { \"aspect_ratio\": \"4:5\", \"quality\": 2, \"stylization\": \"2/5\" } }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

{ "prompt": "Three K-pop idols sitting on a train. Left girl...

{ "prompt": "Three K-pop idols sitting on a train. Left girl is Rosé with pale skin and long blonde hair, looking at a phone. Middle girl is Tzuyu with warm fair skin and dark brown hair, sleeping, making a peace sign. Right girl is Karina with sharp facial features and long dark hair, sleeping, wearing a navy vest. Uniforms: white shirts, navy plaid skirts, bow ties. Train window background. --ar 3:4", "aspect_ratio": "3:4", "subjects": [ { "position": "left", "identity": "Rosé", "physical_characteristics": "slender face, pale skin, long straight blonde hair, soft monolid eyes, petite build", "pose": "looking down, holding phone", "outfit": "white cotton long-sleeve shirt, navy/white plaid pleated skirt, navy striped bow tie", "items": "smartphone" }, { "position": "middle", "identity": "Tzuyu", "physical_characteristics": "elegant features, warm fair skin, large doe eyes, long dark brown wavy hair, tall build", "pose": "head tilted left, eyes closed, right hand making peace sign", "outfit": "white cotton long-sleeve shirt, navy/white plaid pleated skirt, navy striped bow tie" }, { "position": "right", "identity": "Karina", "physical_characteristics": "sharp V-line jaw, small face, fair skin, long straight dark black hair, AI-like flawless features", "pose": "head tilted right, eyes closed, resting, legs crossed", "outfit": "white cotton shirt, navy knit vest, navy/white plaid pleated skirt, navy striped bow tie, black patent leather loafers" } ], "background": { "setting": "Train interior", "details": "Black ribbed seat, window showing daytime suburban houses and power lines." }, "color_grading": { "style": "Natural daylight, slightly muted, soft contrast", "lighting": "Backlit from window, diffuse interior fill" }, "color_palette": { "navy_blue": "#1C2841", "white": "#F0F0F0", "plaid_grey": "#5A6A7A", "skin_tone_pale": "#F3E3D3", "skin_tone_warm": "#EACCA9", "hair_blonde": "#E8D3A2", "hair_dark": "#1A1A1A", "shoe_black": "#050505" } }

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\": \"Three K-pop idols sitting on a train. Left girl is Rosé with pale skin and long blonde hair, looking at a phone. Middle girl is Tzuyu with warm fair skin and dark brown hair, sleeping, making a peace sign. Right girl is Karina with sharp facial features and long dark hair, sleeping, wearing a navy vest. Uniforms: white shirts, navy plaid skirts, bow ties. Train window background. --ar 3:4\", \"aspect_ratio\": \"3:4\", \"subjects\": [ { \"position\": \"left\", \"identity\": \"Rosé\", \"physical_characteristics\": \"slender face, pale skin, long straight blonde hair, soft monolid eyes, petite build\", \"pose\": \"looking down, holding phone\", \"outfit\": \"white cotton long-sleeve shirt, navy/white plaid pleated skirt, navy striped bow tie\", \"items\": \"smartphone\" }, { \"position\": \"middle\", \"identity\": \"Tzuyu\", \"physical_characteristics\": \"elegant features, warm fair skin, large doe eyes, long dark brown wavy hair, tall build\", \"pose\": \"head tilted left, eyes closed, right hand making peace sign\", \"outfit\": \"white cotton long-sleeve shirt, navy/white plaid pleated skirt, navy striped bow tie\" }, { \"position\": \"right\", \"identity\": \"Karina\", \"physical_characteristics\": \"sharp V-line jaw, small face, fair skin, long straight dark black hair, AI-like flawless features\", \"pose\": \"head tilted right, eyes closed, resting, legs crossed\", \"outfit\": \"white cotton shirt, navy knit vest, navy/white plaid pleated skirt, navy striped bow tie, black patent leather loafers\" } ], \"background\": { \"setting\": \"Train interior\", \"details\": \"Black ribbed seat, window showing daytime suburban houses and power lines.\" }, \"color_grading\": { \"style\": \"Natural daylight, slightly muted, soft contrast\", \"lighting\": \"Backlit from window, diffuse interior fill\" }, \"color_palette\": { \"navy_blue\": \"#1C2841\", \"white\": \"#F0F0F0\", \"plaid_grey\": \"#5A6A7A\", \"skin_tone_pale\": \"#F3E3D3\", \"skin_tone_warm\": \"#EACCA9\", \"hair_blonde\": \"#E8D3A2\", \"hair_dark\": \"#1A1A1A\", \"shoe_black\": \"#050505\" } }"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Create a miniature 3D isometric diorama showing the inventio...

Create a miniature 3D isometric diorama showing the invention of [INVENTION NAME] at the moment of [KEY BREAKTHROUGH]. Camera angle around 40° from above. Textures feel soft and polished. Materials follow realistic PBR rules. Lighting feels natural and balanced. The raised base includes tools, workshop elements, notes, and early prototypes. Tiny stylized inventors interact with objects. Faces are visible and recognizable with clean shapes and expressions. Background stays solid [BACKGROUND COLOR]. Top center text shows [INVENTION NAME] in bold. Second line shows [YEAR OR INVENTOR]. A simple line icon of the invention sits below. Text color adapts to background contrast.

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 miniature 3D isometric diorama showing the invention of [INVENTION NAME] at the moment of [KEY BREAKTHROUGH]. Camera angle around 40° from above. Textures feel soft and polished. Materials follow realistic PBR rules. Lighting feels natural and balanced. The raised base includes tools, workshop elements, notes, and early prototypes. Tiny stylized inventors interact with objects. Faces are visible and recognizable with clean shapes and expressions. Background stays solid [BACKGROUND COLOR]. Top center text shows [INVENTION NAME] in bold. Second line shows [YEAR OR INVENTOR]. A simple line icon of the invention sits below. Text color adapts to background contrast."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A high-resolution, photorealistic three-panel composition fe...

A high-resolution, photorealistic three-panel composition featuring a woman with long, voluminous wavy brown hair and elegant features, integrated into an abstract mixed-media collage background. Panel Layout: Left Panel (Vertical, full height): A tall portrait of the woman looking upwards at a dramatic angle, wearing a mustard yellow turtleneck. Cinematic lighting highlights her face and hair, with strong shadows and depth. Top Right Panel (Square): A close-up angled side profile, soft gaze to the right, wearing a black modern blazer with minimal jewelry. Expression is calm and confident. Bottom Right Panel (Square): A slightly top-down perspective, playful yet elegant pose, wearing a white textured dress, subtle smile, natural lighting. Art Style & Background (applies to all panels): The image is layered with an abstract mixed-media collage background incorporating geometric shapes like circles and rectangles in ochre, burnt orange, and charcoal grey. Include textural elements such as vintage parchment paper, blueprint-style technical sketches, and subtle floral etchings. Use a flat graphic design overlay that partially blends into each outfit, seamlessly merging the 3D subject with 2D modernist art. Overall Style: Cinematic lighting, fine art photography aesthetic, ultra-detailed, 8K resolution, modern editorial fashion magazine layout.

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 high-resolution, photorealistic three-panel composition featuring a woman with long, voluminous wavy brown hair and elegant features, integrated into an abstract mixed-media collage background. Panel Layout: Left Panel (Vertical, full height): A tall portrait of the woman looking upwards at a dramatic angle, wearing a mustard yellow turtleneck. Cinematic lighting highlights her face and hair, with strong shadows and depth. Top Right Panel (Square): A close-up angled side profile, soft gaze to the right, wearing a black modern blazer with minimal jewelry. Expression is calm and confident. Bottom Right Panel (Square): A slightly top-down perspective, playful yet elegant pose, wearing a white textured dress, subtle smile, natural lighting. Art Style & Background (applies to all panels): The image is layered with an abstract mixed-media collage background incorporating geometric shapes like circles and rectangles in ochre, burnt orange, and charcoal grey. Include textural elements such as vintage parchment paper, blueprint-style technical sketches, and subtle floral etchings. Use a flat graphic design overlay that partially blends into each outfit, seamlessly merging the 3D subject with 2D modernist art. Overall Style: Cinematic lighting, fine art photography aesthetic, ultra-detailed, 8K resolution, modern editorial fashion magazine layout."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Transform the uploaded image into a stylized 3D claymation c...

Transform the uploaded image into a stylized 3D claymation character. Soft felt / fuzzy texture skin, rounded exaggerated facial features, big expressive eyes, thick soft eyebrows, slightly oversized nose, warm blush tones on cheeks. Playful open-mouth expression. Clean pure white studio background. Soft diffused studio lighting, subtle rim light, shallow depth of field. Pixar-style charm, stop-motion aesthetic, highly detailed fibers and soft materials, cinematic render, warm vibrant tones.

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": "Transform the uploaded image into a stylized 3D claymation character. Soft felt / fuzzy texture skin, rounded exaggerated facial features, big expressive eyes, thick soft eyebrows, slightly oversized nose, warm blush tones on cheeks. Playful open-mouth expression. Clean pure white studio background. Soft diffused studio lighting, subtle rim light, shallow depth of field. Pixar-style charm, stop-motion aesthetic, highly detailed fibers and soft materials, cinematic render, warm vibrant tones."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A cute stylized 3D collectible figurine inspired by Cristian...

A cute stylized 3D collectible figurine inspired by Cristiano Ronaldo, with short styled hair and an athletic build, wearing a modern football kit and standing confidently with hands on hips. Next to him is a large Kinder Joy egg featuring a cartoon avatar of the same football star printed on the shell. The scene is placed on a wooden table with soft natural lighting, shallow depth of field, cozy indoor background with blurred plants, highly detailed Pixar-style 3D render, glossy toy texture, cinematic lighting, ultra-detailed product photography, designer toy 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": "A cute stylized 3D collectible figurine inspired by Cristiano Ronaldo, with short styled hair and an athletic build, wearing a modern football kit and standing confidently with hands on hips. Next to him is a large Kinder Joy egg featuring a cartoon avatar of the same football star printed on the shell. The scene is placed on a wooden table with soft natural lighting, shallow depth of field, cozy indoor background with blurred plants, highly detailed Pixar-style 3D render, glossy toy texture, cinematic lighting, ultra-detailed product photography, designer toy aesthetic. ⚽🥚"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

hyper-realistic food photography of a pancake shaped precise...

hyper-realistic food photography of a pancake shaped precisely like the [brand name] logo, natural golden-brown pancake texture, soft porous surface with realistic bubbles, slightly crispy edges, placed on a pure white background, minimal composition, soft natural shadow beneath, top-down flat lay perspective, subtle bite taken from one edge revealing fluffy interior, realistic crumb texture, soft diffused studio lighting, ultra detailed, clean commercial aesthetic, sharp focus

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": "hyper-realistic food photography of a pancake shaped precisely like the [brand name] logo, natural golden-brown pancake texture, soft porous surface with realistic bubbles, slightly crispy edges, placed on a pure white background, minimal composition, soft natural shadow beneath, top-down flat lay perspective, subtle bite taken from one edge revealing fluffy interior, realistic crumb texture, soft diffused studio lighting, ultra detailed, clean commercial aesthetic, sharp focus"
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A clean, minimal 3D isometric diorama of a [BUILDING TYPE] s...

A clean, minimal 3D isometric diorama of a [BUILDING TYPE] section, featuring [INTERIOR / EXTERIOR ELEMENTS] visible in a [CUTAWAY / OPEN STYLE], simple [STRUCTURAL FRAME], subtle [INFORMATIONAL SIGNAGE], smooth [MATERIAL FINISH], soft studio lighting, realistic materials, rounded edges, miniature architectural model style, high detail, neutral background.

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 clean, minimal 3D isometric diorama of a [BUILDING TYPE] section, featuring [INTERIOR / EXTERIOR ELEMENTS] visible in a [CUTAWAY / OPEN STYLE], simple [STRUCTURAL FRAME], subtle [INFORMATIONAL SIGNAGE], smooth [MATERIAL FINISH], soft studio lighting, realistic materials, rounded edges, miniature architectural model style, high detail, neutral background."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Transform the person from the attached photo into a smooth s...

Transform the person from the attached photo into a smooth stylized 3D cartoon character in the same style as the reference. Keep all real facial features fully recognizable but translated into exaggerated proportions (elongated head, big eyelids, soft rounded shapes). Skin should look glossy and plastic-like with clean gradients and subtle highlights. Use soft studio lighting, a solid [COLOR] color background, and high-end Pixar- inspired rendering. Simplify details, add gentle rim light, and preserve the person's hairstyle and accessories in stylized form. The final look must match the clean polished 3D aesthetic of the reference, 4:5 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": "Transform the person from the attached photo into a smooth stylized 3D cartoon character in the same style as the reference. Keep all real facial features fully recognizable but translated into exaggerated proportions (elongated head, big eyelids, soft rounded shapes). Skin should look glossy and plastic-like with clean gradients and subtle highlights. Use soft studio lighting, a solid [COLOR] color background, and high-end Pixar- inspired rendering. Simplify details, add gentle rim light, and preserve the person's hairstyle and accessories in stylized form. The final look must match the clean polished 3D aesthetic of the reference, 4:5 dimension."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Hyper-realistic full-body portrait of a woman, using the exa...

Hyper-realistic full-body portrait of a woman, using the exact pose from the uploaded photo, transformed into a stylish female doll. she stands confidently with arms crossed on a giant Microsoft Surface Tablet as a platform, wearing urban streetwear (black hoodie, jeans, sneakers) and sleek red tech glasses. Surrounding him in a dynamic, floating arrangement are masculine graphic design tools: a futuristic camera with blue holographic glow, a geometric computer mouse with electric sparks, a digital pen creating digital wireframe trails, a floating Pantone swatch book in bold blue and black colors, and a minimalist black coffee mug with binary code steam. The scene features a vibrant blue and orange color scheme with dynamic lighting. Cyberpunk aesthetic, neon accents, particle effects. Style is a blend of 3D animation and tech photography. Sharp focus, cinematic lighting, 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": "Hyper-realistic full-body portrait of a woman, using the exact pose from the uploaded photo, transformed into a stylish female doll. she stands confidently with arms crossed on a giant Microsoft Surface Tablet as a platform, wearing urban streetwear (black hoodie, jeans, sneakers) and sleek red tech glasses. Surrounding him in a dynamic, floating arrangement are masculine graphic design tools: a futuristic camera with blue holographic glow, a geometric computer mouse with electric sparks, a digital pen creating digital wireframe trails, a floating Pantone swatch book in bold blue and black colors, and a minimalist black coffee mug with binary code steam. The scene features a vibrant blue and orange color scheme with dynamic lighting. Cyberpunk aesthetic, neon accents, particle effects. Style is a blend of 3D animation and tech photography. Sharp focus, cinematic lighting, 8k resolution."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A hyper-realistic, 8k, medium shot photograph captured with...

A hyper-realistic, 8k, medium shot photograph captured with a standard lens and shallow depth of field, showcasing a surreal indoor scene with cinematic lighting. The composition features a normal-sized woman, using the uploaded face as reference, sitting cross-legged inside a colossal, highly detailed Kinder Joy egg that functions as a swing chair. The giant egg is split, with its white interior forming the seat and the orange, textured exterior visible, suspended by dark metal chains from a curved, dark metal stand. The woman wears a black t-shirt and blue and white plaid pajama pants, holding a small white teacup with both hands, looking directly at the viewer with a calm and relaxed expression. To the left in the foreground, on a highly detailed polished wooden table, stands another gigantic, fully wrapped Kinder Joy egg, exhibiting intricate foil texture and branding. To the right of the swing's base, also on the table, are miniature props: a vintage-style wooden radio with white dials and a tiny bonsai tree in a small pot. The lighting is soft, warm, and directional from the left, casting subtle shadows and highlighting the highly detailed textures of the egg wrappers, the woman’s clothing, and the wooden surface. The background is a softly blurred, warm-toned interior wall, creating a pleasing bokeh effect.

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 hyper-realistic, 8k, medium shot photograph captured with a standard lens and shallow depth of field, showcasing a surreal indoor scene with cinematic lighting. The composition features a normal-sized woman, using the uploaded face as reference, sitting cross-legged inside a colossal, highly detailed Kinder Joy egg that functions as a swing chair. The giant egg is split, with its white interior forming the seat and the orange, textured exterior visible, suspended by dark metal chains from a curved, dark metal stand. The woman wears a black t-shirt and blue and white plaid pajama pants, holding a small white teacup with both hands, looking directly at the viewer with a calm and relaxed expression. To the left in the foreground, on a highly detailed polished wooden table, stands another gigantic, fully wrapped Kinder Joy egg, exhibiting intricate foil texture and branding. To the right of the swing's base, also on the table, are miniature props: a vintage-style wooden radio with white dials and a tiny bonsai tree in a small pot. The lighting is soft, warm, and directional from the left, casting subtle shadows and highlighting the highly detailed textures of the egg wrappers, the woman’s clothing, and the wooden surface. The background is a softly blurred, warm-toned interior wall, creating a pleasing bokeh effect."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

Create a hyper-realistic miniature planet showcasing [KASHMI...

Create a hyper-realistic miniature planet showcasing [KASHMIR] with famous landmarks seamlessly curving around the spherical surface. Position bold 3D white text “[KASHMIR]” naturally integrated across the lush green central parkland with realistic shadows and dimensional depth. Capture from a top-down orbiting angle that emphasizes the dramatic planet curvature. Use soft golden hour daylight filtering through partly cloudy skies, casting gentle shadows on emerald grass and surrounding trees. The background should blend into a swirling atmospheric sky. Apply vibrant greens, warm earth tones, and soft blues. Render in polished photorealistic style with fine architectural detail. 1080x1080 format.

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 hyper-realistic miniature planet showcasing [KASHMIR] with famous landmarks seamlessly curving around the spherical surface. Position bold 3D white text “[KASHMIR]” naturally integrated across the lush green central parkland with realistic shadows and dimensional depth. Capture from a top-down orbiting angle that emphasizes the dramatic planet curvature. Use soft golden hour daylight filtering through partly cloudy skies, casting gentle shadows on emerald grass and surrounding trees. The background should blend into a swirling atmospheric sky. Apply vibrant greens, warm earth tones, and soft blues. Render in polished photorealistic style with fine architectural detail. 1080x1080 format."
}
JSON
IM
Image
Illustration & 3D nano-banana-2

A highly detailed 3D caricature of a cheerful man with an ov...

A highly detailed 3D caricature of a cheerful man with an oversized head, a big smile showcasing large teeth, and curly voluminous hair. He is wearing a short-sleeved white button-up shirt, brown high-waisted pants with a belt, and traditional sandals. His pose is casual and friendly, with one hand touching his chin in a thoughtful manner. The art style is semi-realistic with exaggerated cartoonish features, set aw against a clean white background.""A highly detailed 3D caricature of a cheerful man with an oversized head, a big smile showcasing large teeth, and curly voluminous hair. He is wearing a short-sleeved white button-up shirt, brown high-waisted pants with a belt, and traditional sandals. His pose is casual and friendly, with one hand touching his chin in a thoughtful manner. The art style is semi-realistic with exaggerated cartoonish features, set against a clean white background.

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 highly detailed 3D caricature of a cheerful man with an oversized head, a big smile showcasing large teeth, and curly voluminous hair. He is wearing a short-sleeved white button-up shirt, brown high-waisted pants with a belt, and traditional sandals. His pose is casual and friendly, with one hand touching his chin in a thoughtful manner. The art style is semi-realistic with exaggerated cartoonish features, set aw against a clean white background.\"\"A highly detailed 3D caricature of a cheerful man with an oversized head, a big smile showcasing large teeth, and curly voluminous hair. He is wearing a short-sleeved white button-up shirt, brown high-waisted pants with a belt, and traditional sandals. His pose is casual and friendly, with one hand touching his chin in a thoughtful manner. The art style is semi-realistic with exaggerated cartoonish features, set against a clean white background."
}
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.