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
Product & Brand nano-banana-2

A high-resolution advertising photograph of a realistic, min...

A high-resolution advertising photograph of a realistic, miniature product in the attached image, held delicately between a person's thumb and index finger: clean and white background, studio lighting, soft shadows. The hand is well-groomed, with a natural skin tone, and positioned to highlight the product’s shape and details. The product appears extremely small but hyper-detailed and brand-accurate, centered in the frame with a shallow depth of field. Emulates luxury product photography and minimalist commercial 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 high-resolution advertising photograph of a realistic, miniature product in the attached image, held delicately between a person's thumb and index finger: clean and white background, studio lighting, soft shadows. The hand is well-groomed, with a natural skin tone, and positioned to highlight the product’s shape and details. The product appears extremely small but hyper-detailed and brand-accurate, centered in the frame with a shallow depth of field. Emulates luxury product photography and minimalist commercial style"
}
JSON
IM
Image
Product & Brand nano-banana-2

Multi-image product collage poster featuring beige/tan Crocs...

Multi-image product collage poster featuring beige/tan Crocs clog shoes, designed as a modern footwear advertisement. The layout combines multiple product angles arranged in a structured grid: Side profile view showing the clog silhouette and ventilation holes Rear view highlighting the heel strap and branding Top-down view showing the cushioned footbed texture Close-up detail of the sole tread and side logo A hero product image in the foreground with one shoe stacked against another, creating depth Clean studio background with a warm brown-to-black gradient, giving a cozy, lifestyle-oriented tone. The Crocs appear matte, lightweight, and comfortable, with realistic foam texture and soft shadows. Large bold headline typography at the bottom reads: “CROCS” Subheading: “MORE THAN JUST SHOES” Small blocks of descriptive lifestyle copy appear subtly in the background, reinforcing comfort, durability, and versatility. Overall composition feels like a social media brand post or poster ad. Visual Style Modern product advertising Lifestyle + catalog hybrid Warm earthy color palette Soft studio lighting Photorealistic textures Clean composition Professional footwear photography Camera & Composition Multiple angles combined into one layout 85mm–100mm product photography look Sharp focus on shoes Soft shadows beneath products Balanced exposure No distortion Mood & Branding Comfort Everyday lifestyle Durable Casual confidence Practical yet stylish Approachable brand feel Negative Prompt Low resolution, incorrect shoe shape, warped branding, misspelled logo, glossy plastic look, harsh reflections, cluttered layout, inconsistent lighting, cartoon style, CGI look, watermark, text artifacts

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": "Multi-image product collage poster featuring beige/tan Crocs clog shoes, designed as a modern footwear advertisement. The layout combines multiple product angles arranged in a structured grid: Side profile view showing the clog silhouette and ventilation holes Rear view highlighting the heel strap and branding Top-down view showing the cushioned footbed texture Close-up detail of the sole tread and side logo A hero product image in the foreground with one shoe stacked against another, creating depth Clean studio background with a warm brown-to-black gradient, giving a cozy, lifestyle-oriented tone. The Crocs appear matte, lightweight, and comfortable, with realistic foam texture and soft shadows. Large bold headline typography at the bottom reads: “CROCS” Subheading: “MORE THAN JUST SHOES” Small blocks of descriptive lifestyle copy appear subtly in the background, reinforcing comfort, durability, and versatility. Overall composition feels like a social media brand post or poster ad. Visual Style Modern product advertising Lifestyle + catalog hybrid Warm earthy color palette Soft studio lighting Photorealistic textures Clean composition Professional footwear photography Camera & Composition Multiple angles combined into one layout 85mm–100mm product photography look Sharp focus on shoes Soft shadows beneath products Balanced exposure No distortion Mood & Branding Comfort Everyday lifestyle Durable Casual confidence Practical yet stylish Approachable brand feel Negative Prompt Low resolution, incorrect shoe shape, warped branding, misspelled logo, glossy plastic look, harsh reflections, cluttered layout, inconsistent lighting, cartoon style, CGI look, watermark, text artifacts"
}
JSON
IM
Image
Product & Brand nano-banana-2

Create a 1:1 cinematic product poster (1080×1080) of [BRAND...

Create a 1:1 cinematic product poster (1080×1080) of [BRAND & PRODUCT], centered and fully visible, floating against a clean background inspired by the brand’s core color palette. The product must remain intact and uncut, but be conceptually split by design: • One half is photorealistic, showcasing accurate materials, textures, reflections, buttons, surfaces, and premium build quality • The other half transforms seamlessly into flat digital elements that represent the brand’s ecosystem — UI fragments, abstract tech shapes, interface cards, schematic overlays, soft holographic effects, or minimal glitch-style geometry Lighting: Cinematic, high-end studio lighting with controlled highlights and soft shadows, emphasizing form and depth. Typography: Bold double-exposure style text displaying the product or brand name, integrated cleanly into the composition. Official logo placed subtly and professionally in one corner.

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 1:1 cinematic product poster (1080×1080) of [BRAND & PRODUCT], centered and fully visible, floating against a clean background inspired by the brand’s core color palette. The product must remain intact and uncut, but be conceptually split by design: • One half is photorealistic, showcasing accurate materials, textures, reflections, buttons, surfaces, and premium build quality • The other half transforms seamlessly into flat digital elements that represent the brand’s ecosystem — UI fragments, abstract tech shapes, interface cards, schematic overlays, soft holographic effects, or minimal glitch-style geometry Lighting: Cinematic, high-end studio lighting with controlled highlights and soft shadows, emphasizing form and depth. Typography: Bold double-exposure style text displaying the product or brand name, integrated cleanly into the composition. Official logo placed subtly and professionally in one corner."
}
JSON
IM
Image
Product & Brand nano-banana-2

BAGEL LABS. Act as a creative director curating a wide-rangi...

BAGEL LABS. Act as a creative director curating a wide-ranging, eclectic collection of “recontextualized everyday objects.” DIVERSE OBJECT SELECTION (MANDATORY VARIETY): Randomly select ONE object from these distinct categories to ensure diversity: Analog Office & Desk: Sport & Leisure: Barware & Kitchen: Utility & Tools: Grooming: Travel: SELECTED CATEGORY: Barware & Kitchen CHOSEN OBJECT: A coffee machine and coffee cup — instantly recognizable, reimagined as a luxury technological artifact. THE CONCEPT: Recontextualize the everyday coffee machine as a transparent, high-precision object of engineered beauty. A fully glass espresso machine reveals its internal systems: hot water circulation, pressure chambers, coffee bean hopper, grinding mechanism, and extraction pathway. Integrated computer circuitry runs through the machine like a nervous system, visually linking ritual, data, and energy. Fresh coffee is actively pouring from the machine into a matching glass cup, captured mid-flow. The moment feels frozen, precise, and intentional—ritual meets technology. MATERIALS & FINISH: - COFFEE MACHINE BODY: Precision-molded optical glass with subtle green-tinted transparency. Internal structure is fully visible and meticulously organized. - INTERNAL COMPONENTS: - Hot water tubes and pressure lines clearly visible, rendered in brushed titanium and warm grey. - Coffee bean chamber visible at the top with realistic roasted beans. - Grinding and extraction mechanisms exposed, engineered and clean. - CIRCUITRY: Integrated PC-style circuitry embedded within the machine’s internal architecture. - Circuit paths in muted industrial orange. - Supporting components in graphite and titanium tones. Circuits are physical and structural, not glowing or decorative. - COFFEE CUP: Matching optical glass cup with weighted base and refined silhouette. Subtle BAGEL LABS logomark engraved near the base. - BRAND INTEGRATION: BAGEL LABS logomark engraved into the glass body of the machine (side or rear plane), and subtly etched on the cup. No stickers. No printed logos. ACTION / MOMENT: Coffee is visibly flowing from the machine into the glass cup. Liquid motion is realistic and smooth. Crema and color gradient are visible through the glass, emphasizing transparency and material depth. PRESENTATION (NO BOXES): The coffee machine and cup stand fully exposed on a minimal pedestal or surface. No packaging, no housing, no covers. All components are visible by design. PHOTOGRAPHY & LIGHTING: Style: High-end product editorial (Wallpaper* / Dezeen). Lighting: Soft, studio high-key lighting with carefully controlled reflections to highlight glass thickness, liquid motion, and internal depth. No harsh shadows. Background: Clean, seamless light grey or white cyclorama. COLOR & GRADING: Primary tones: transparent glass with subtle green tint, warm greys, titanium neutrals. Accent: restrained BAGEL LABS orange within the circuitry only. Overall mood: clean, intelligent, technological luxury. GRAPHIC OVERLAYS (UI): - Bottom Left: A small, minimalist two-line descriptor identifying the object. - Bottom Right: A small, discreet, monochrome BAGEL LABS logomark. Do not visualize font names or color codes. CAMERA & DETAIL: Full-frame, 50mm equivalent. Ultra-high realism: accurate glass refraction, liquid physics, micro-detail in circuits and mechanical parts. Shallow depth of field allowed, but machine and cup must remain fully legible. NEGATIVE PROMPT: No people, no hands, no kitchens, no cafes, no clutter, no packaging, no stickers, no printed text on surfaces, no neon colors, no glow effects, no cartoon or CGI look, no fingerprints, no dust, no watermarks.

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": "BAGEL LABS. Act as a creative director curating a wide-ranging, eclectic collection of “recontextualized everyday objects.” DIVERSE OBJECT SELECTION (MANDATORY VARIETY): Randomly select ONE object from these distinct categories to ensure diversity: Analog Office & Desk: Sport & Leisure: Barware & Kitchen: Utility & Tools: Grooming: Travel: SELECTED CATEGORY: Barware & Kitchen CHOSEN OBJECT: A coffee machine and coffee cup — instantly recognizable, reimagined as a luxury technological artifact. THE CONCEPT: Recontextualize the everyday coffee machine as a transparent, high-precision object of engineered beauty. A fully glass espresso machine reveals its internal systems: hot water circulation, pressure chambers, coffee bean hopper, grinding mechanism, and extraction pathway. Integrated computer circuitry runs through the machine like a nervous system, visually linking ritual, data, and energy. Fresh coffee is actively pouring from the machine into a matching glass cup, captured mid-flow. The moment feels frozen, precise, and intentional—ritual meets technology. MATERIALS & FINISH: - COFFEE MACHINE BODY: Precision-molded optical glass with subtle green-tinted transparency. Internal structure is fully visible and meticulously organized. - INTERNAL COMPONENTS: - Hot water tubes and pressure lines clearly visible, rendered in brushed titanium and warm grey. - Coffee bean chamber visible at the top with realistic roasted beans. - Grinding and extraction mechanisms exposed, engineered and clean. - CIRCUITRY: Integrated PC-style circuitry embedded within the machine’s internal architecture. - Circuit paths in muted industrial orange. - Supporting components in graphite and titanium tones. Circuits are physical and structural, not glowing or decorative. - COFFEE CUP: Matching optical glass cup with weighted base and refined silhouette. Subtle BAGEL LABS logomark engraved near the base. - BRAND INTEGRATION: BAGEL LABS logomark engraved into the glass body of the machine (side or rear plane), and subtly etched on the cup. No stickers. No printed logos. ACTION / MOMENT: Coffee is visibly flowing from the machine into the glass cup. Liquid motion is realistic and smooth. Crema and color gradient are visible through the glass, emphasizing transparency and material depth. PRESENTATION (NO BOXES): The coffee machine and cup stand fully exposed on a minimal pedestal or surface. No packaging, no housing, no covers. All components are visible by design. PHOTOGRAPHY & LIGHTING: Style: High-end product editorial (Wallpaper* / Dezeen). Lighting: Soft, studio high-key lighting with carefully controlled reflections to highlight glass thickness, liquid motion, and internal depth. No harsh shadows. Background: Clean, seamless light grey or white cyclorama. COLOR & GRADING: Primary tones: transparent glass with subtle green tint, warm greys, titanium neutrals. Accent: restrained BAGEL LABS orange within the circuitry only. Overall mood: clean, intelligent, technological luxury. GRAPHIC OVERLAYS (UI): - Bottom Left: A small, minimalist two-line descriptor identifying the object. - Bottom Right: A small, discreet, monochrome BAGEL LABS logomark. Do not visualize font names or color codes. CAMERA & DETAIL: Full-frame, 50mm equivalent. Ultra-high realism: accurate glass refraction, liquid physics, micro-detail in circuits and mechanical parts. Shallow depth of field allowed, but machine and cup must remain fully legible. NEGATIVE PROMPT: No people, no hands, no kitchens, no cafes, no clutter, no packaging, no stickers, no printed text on surfaces, no neon colors, no glow effects, no cartoon or CGI look, no fingerprints, no dust, no watermarks."
}
JSON
IM
Image
Product & Brand nano-banana-2

Nano Banana 2 on @Hailuo_AI Prompt: Ultra-realistic premium...

Nano Banana 2 on @Hailuo_AI Prompt: Ultra-realistic premium product advertisement of a cappuccino coffee bottle, centered composition, surrounded by dynamic liquid splashes of coffee and milk forming elegant swirling shapes in mid-air. Dramatic environments blending elements of fire, lava, ice shards, marble textures, and dark studio backgrounds. Hyper-detailed liquid physics, droplets frozen in motion, cinematic lighting with high contrast, glowing highlights, and volumetric light. Coffee splashes mixed with creamy textures, energetic explosion effects, sparks, smoke, and mist. Luxury branding style, glossy reflections on bottle, sharp label details, rich brown and gold color palette, macro photography, shallow depth of field, 85mm lens, commercial advertising style, studio + fantasy hybrid scene, ultra-detailed, 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": "Nano Banana 2 on @Hailuo_AI Prompt: Ultra-realistic premium product advertisement of a cappuccino coffee bottle, centered composition, surrounded by dynamic liquid splashes of coffee and milk forming elegant swirling shapes in mid-air. Dramatic environments blending elements of fire, lava, ice shards, marble textures, and dark studio backgrounds. Hyper-detailed liquid physics, droplets frozen in motion, cinematic lighting with high contrast, glowing highlights, and volumetric light. Coffee splashes mixed with creamy textures, energetic explosion effects, sparks, smoke, and mist. Luxury branding style, glossy reflections on bottle, sharp label details, rich brown and gold color palette, macro photography, shallow depth of field, 85mm lens, commercial advertising style, studio + fantasy hybrid scene, ultra-detailed, 8K resolution."
}
JSON
IM
Image
Product & Brand nano-banana-2

A slow, sensual luxury chocolate commercial shot in ultra-hi...

A slow, sensual luxury chocolate commercial shot in ultra-high definition. The scene opens in near darkness as a premium espresso-brown gift box with soft gold accents slowly rotates on a reflective surface. A warm spotlight reveals the embossed title “SWEET PROMISE” in an elegant serif font, paired with a subtle botanical emblem. As the lid gently lifts in slow motion, molten milk chocolate surges upward in a gravity-defying burst, captured at 120fps for dramatic fluid motion. Glossy heart-shaped chocolates rise and orbit the splash, rotating gracefully at different depths, their surfaces catching highlights like polished jewels. Thick chocolate ribbons stretch, drip, and shatter into silky droplets mid-air while cocoa powder blooms softly like a golden mist. Cinematic mocha-and-gold color grading, shallow depth of field, creamy bokeh background, soft rim lighting outlining every chocolate curve. Macro close-ups transition into wide hero shots, emphasizing texture, gloss, and richness. The motion feels slow, seductive, and indulgent—pure luxury confectionery advertising, premium product film, elegant pacing, emotionally rich, visually irresistible.

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 slow, sensual luxury chocolate commercial shot in ultra-high definition. The scene opens in near darkness as a premium espresso-brown gift box with soft gold accents slowly rotates on a reflective surface. A warm spotlight reveals the embossed title “SWEET PROMISE” in an elegant serif font, paired with a subtle botanical emblem. As the lid gently lifts in slow motion, molten milk chocolate surges upward in a gravity-defying burst, captured at 120fps for dramatic fluid motion. Glossy heart-shaped chocolates rise and orbit the splash, rotating gracefully at different depths, their surfaces catching highlights like polished jewels. Thick chocolate ribbons stretch, drip, and shatter into silky droplets mid-air while cocoa powder blooms softly like a golden mist. Cinematic mocha-and-gold color grading, shallow depth of field, creamy bokeh background, soft rim lighting outlining every chocolate curve. Macro close-ups transition into wide hero shots, emphasizing texture, gloss, and richness. The motion feels slow, seductive, and indulgent—pure luxury confectionery advertising, premium product film, elegant pacing, emotionally rich, visually irresistible."
}
JSON
IM
Image
Product & Brand nano-banana-2

Ultra-realistic luxury cosmetic product photography in a dra...

Ultra-realistic luxury cosmetic product photography in a dramatic monochromatic blue-violet composition. A sleek satin-finish periwinkle-blue squeeze tube labeled “STENDERS” stands vertically centered in the frame, featuring elegant silver typography and a reflective metallic chrome cap. The tube is surrounded by voluminous swirling clouds of ink-like smoke in layered shades of lavender, indigo, and icy blue, creating a soft, billowing texture that wraps around the product. Interwoven throughout the smoke are fresh purple and lilac flowers with intricate petal details and vibrant yellow centers, along with delicate sprigs of tiny violet blossoms for added dimension. Soft directional lighting from the upper left highlights the smooth curvature of the tube, adds subtle sheen to the metallic cap, and creates depth within the smoke plumes. The background seamlessly blends cool blue and purple tones, enhancing the ethereal, floral fragrance aesthetic. Hyper-detailed textures of petals and vapor, cinematic depth, high-end perfumed skincare advertising style, 8K ultra-high 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": "Ultra-realistic luxury cosmetic product photography in a dramatic monochromatic blue-violet composition. A sleek satin-finish periwinkle-blue squeeze tube labeled “STENDERS” stands vertically centered in the frame, featuring elegant silver typography and a reflective metallic chrome cap. The tube is surrounded by voluminous swirling clouds of ink-like smoke in layered shades of lavender, indigo, and icy blue, creating a soft, billowing texture that wraps around the product. Interwoven throughout the smoke are fresh purple and lilac flowers with intricate petal details and vibrant yellow centers, along with delicate sprigs of tiny violet blossoms for added dimension. Soft directional lighting from the upper left highlights the smooth curvature of the tube, adds subtle sheen to the metallic cap, and creates depth within the smoke plumes. The background seamlessly blends cool blue and purple tones, enhancing the ethereal, floral fragrance aesthetic. Hyper-detailed textures of petals and vapor, cinematic depth, high-end perfumed skincare advertising style, 8K ultra-high resolution"
}
JSON
IM
Image
Product & Brand nano-banana-2

Create a brand visual storyboard for presenting your product...

Create a brand visual storyboard for presenting your product with Nano Banana Pro: Create ONE final image. A clean 3×3 [ratio] storyboard grid with nine equal [ratio] sized panels on [4:5] ratio. Use the reference image as the base product reference. Keep the same product, packaging design, branding, materials, colors, proportions and overall identity across all nine panels exactly as the reference. The product must remain clearly recognizable in every frame. The label, logo and proportions must stay exactly the same. This storyboard is a high-end designer mockup presentation for a branding portfolio. The focus is on form, composition, materiality and visual rhythm rather than realism or lifestyle narrative. The overall look should feel curated, editorial and design-driven. FRAME 1: Front-facing hero shot of the product in a clean studio setup. Neutral background, balanced composition, calm and confident presentation of the product. FRAME 2: Close-up shot with the focus centered on the middle of the product. Focusing on surface texture, materials and print details. FRAME 3: Shows the reference product placed in an environment that naturally fits the brand and product category. Studio setting inspired by the product design elements and colours. FRAME 4: Product shown in use or interaction on a neutral studio background. Hands and interaction elements are minimal and restrained, the look matches the style of the package. FRAME 5: Isometric composition showing multiple products arranged in a precise geometric order from the top isometric angle. All products are placed at the same isometric top angle, evenly spaced, clean, structured and graphic. FRAME 6: Product levitating slightly tilted on a neutral background that matches the reference image color palette. Floating position is angled and intentional, the product is floating naturally in space. FRAME 7: is an extreme close-up focusing on a specific detail of the label, edge, texture or material behavior. FRAME 8: The product in an unexpected yet aesthetically strong setting that feels bold, editorial and visually striking. Unexpected but highly stylized setting. Studio-based, and designer-driven. Bold composition that elevates the brand. FRAME 9: Wide composition showing the product in use, placed within a refined designer setup. Clean props, controlled styling, cohesive with the rest of the series. CAMERA & STYLE: Ultra high-quality studio imagery with a real camera look. Different camera angles and framings across frames. Controlled depth of field, precise lighting, accurate materials and reflections. Lighting logic, color palette, mood and visual language must remain consistent across all nine panels as one cohesive series. OUTPUT: A clean 3×3 grid with no borders, no text, no captions and no watermarks.

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 brand visual storyboard for presenting your product with Nano Banana Pro: Create ONE final image. A clean 3×3 [ratio] storyboard grid with nine equal [ratio] sized panels on [4:5] ratio. Use the reference image as the base product reference. Keep the same product, packaging design, branding, materials, colors, proportions and overall identity across all nine panels exactly as the reference. The product must remain clearly recognizable in every frame. The label, logo and proportions must stay exactly the same. This storyboard is a high-end designer mockup presentation for a branding portfolio. The focus is on form, composition, materiality and visual rhythm rather than realism or lifestyle narrative. The overall look should feel curated, editorial and design-driven. FRAME 1: Front-facing hero shot of the product in a clean studio setup. Neutral background, balanced composition, calm and confident presentation of the product. FRAME 2: Close-up shot with the focus centered on the middle of the product. Focusing on surface texture, materials and print details. FRAME 3: Shows the reference product placed in an environment that naturally fits the brand and product category. Studio setting inspired by the product design elements and colours. FRAME 4: Product shown in use or interaction on a neutral studio background. Hands and interaction elements are minimal and restrained, the look matches the style of the package. FRAME 5: Isometric composition showing multiple products arranged in a precise geometric order from the top isometric angle. All products are placed at the same isometric top angle, evenly spaced, clean, structured and graphic. FRAME 6: Product levitating slightly tilted on a neutral background that matches the reference image color palette. Floating position is angled and intentional, the product is floating naturally in space. FRAME 7: is an extreme close-up focusing on a specific detail of the label, edge, texture or material behavior. FRAME 8: The product in an unexpected yet aesthetically strong setting that feels bold, editorial and visually striking. Unexpected but highly stylized setting. Studio-based, and designer-driven. Bold composition that elevates the brand. FRAME 9: Wide composition showing the product in use, placed within a refined designer setup. Clean props, controlled styling, cohesive with the rest of the series. CAMERA & STYLE: Ultra high-quality studio imagery with a real camera look. Different camera angles and framings across frames. Controlled depth of field, precise lighting, accurate materials and reflections. Lighting logic, color palette, mood and visual language must remain consistent across all nine panels as one cohesive series. OUTPUT: A clean 3×3 grid with no borders, no text, no captions and no watermarks."
}
JSON
IM
Image
Product & Brand nano-banana-2

Ultra-realistic premium skincare serum bottle (dark green gl...

Ultra-realistic premium skincare serum bottle (dark green glass with dropper), golden liquid inside, placed on sunlit marble surface with fresh orange slices around, natural citrus vibe, water splash frozen mid-air, detailed droplets and reflections, soft natural sunlight with sharp shadows, minimal aesthetic, macro photography, high detail textures, glossy glass reflections, fresh and vibrant color tones, luxury skincare advertising, 8K, perfect 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": "Ultra-realistic premium skincare serum bottle (dark green glass with dropper), golden liquid inside, placed on sunlit marble surface with fresh orange slices around, natural citrus vibe, water splash frozen mid-air, detailed droplets and reflections, soft natural sunlight with sharp shadows, minimal aesthetic, macro photography, high detail textures, glossy glass reflections, fresh and vibrant color tones, luxury skincare advertising, 8K, perfect composition."
}
JSON
IM
Image
Product & Brand nano-banana-2

Use the uploaded image as the exact visual reference. Keep t...

Use the uploaded image as the exact visual reference. Keep the product centered. Do not change the tube position, lighting tone, flower placement, or color palette. Maintain the deep blue monochromatic aesthetic. No additional lights. No color grading changes. Camera: Locked camera. No zoom. No rotation. No angle change. Static premium composition. Action: Animate the surrounding voluminous blue swirling clouds in ultra slow motion. The cloud-like forms (soft fabric/ink-style swirls) gently move and curl around the product. Movement should feel fluid, heavy, and luxurious. Soft rolling motion from bottom to top. Subtle inward spiral motion around the tube. No aggressive motion. No fast movement. No deformation of the product. Flowers: Remain mostly stable. Very subtle natural micro movement as if lightly affected by airflow. Petals should not detach. No new petals added. Physics: Smooth, dense, smoke-like simulation. Velvety texture. Soft shadow transitions within the folds. Natural depth and layering. Mood: Elegant. Premium. Artistic beauty campaign. High-end cosmetic advertisement. Sound (optional if supported): Soft ambient atmospheric tone. Very subtle airy texture. No voiceover. End Frame: Clouds continue slowly flowing around the product. Product remains sharp and perfectly centered. Ultra realistic. Luxury slow-motion finish.

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 uploaded image as the exact visual reference. Keep the product centered. Do not change the tube position, lighting tone, flower placement, or color palette. Maintain the deep blue monochromatic aesthetic. No additional lights. No color grading changes. Camera: Locked camera. No zoom. No rotation. No angle change. Static premium composition. Action: Animate the surrounding voluminous blue swirling clouds in ultra slow motion. The cloud-like forms (soft fabric/ink-style swirls) gently move and curl around the product. Movement should feel fluid, heavy, and luxurious. Soft rolling motion from bottom to top. Subtle inward spiral motion around the tube. No aggressive motion. No fast movement. No deformation of the product. Flowers: Remain mostly stable. Very subtle natural micro movement as if lightly affected by airflow. Petals should not detach. No new petals added. Physics: Smooth, dense, smoke-like simulation. Velvety texture. Soft shadow transitions within the folds. Natural depth and layering. Mood: Elegant. Premium. Artistic beauty campaign. High-end cosmetic advertisement. Sound (optional if supported): Soft ambient atmospheric tone. Very subtle airy texture. No voiceover. End Frame: Clouds continue slowly flowing around the product. Product remains sharp and perfectly centered. Ultra realistic. Luxury slow-motion finish."
}
JSON
IM
Image
Product & Brand nano-banana-2

The soft touch. Nano Banana pro on Gemini Prompt { "p...

The soft touch. Nano Banana pro on Gemini Prompt { "product_photography_prompt": { "subject": "Hands holding a shampoo bottle with lather.", "hands": { "description": "A person's hands with natural skin tone.", "action": "One hand holds the bottle, the other is cupped to catch foam.", "condition": "Covered in thick, white, bubbly soap lather." }, "bottle": { "type": "Pump bottle.", "material": "Matte white plastic.", "dispenser": "Light blue pump.", "contents": "White shampoo, visible as foam." }, "label": { "color": "White", "text_color": "Black", "logo": "Circular with 'WAATAL' inside.", "main_text": "Hydrate SHAMPOO (script and bold font).", "sub_text": "Super Hydrating Shampoo. For All Hair Types. Made in Australia. 500ml." }, "foam": { "texture": "Thick, rich, bubbly lather.", "color": "White", "location": "Covering hands, bottle neck, and dispenser." }, "background": { "color": "Solid soft light blue.", "texture": "Seamless, smooth studio background." }, "lighting": { "type": "Soft, diffused studio lighting.", "direction": "Even illumination, highlighting foam texture and hands." }, "style": { "type": "Clean, minimalist product photography.", "shot": "Close-up.", "focus": "Sharp focus on hands, bottle, and foam.", "mood": "Fresh, clean, natural." } } }

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": "The soft touch. Nano Banana pro on Gemini Prompt { \"product_photography_prompt\": { \"subject\": \"Hands holding a shampoo bottle with lather.\", \"hands\": { \"description\": \"A person's hands with natural skin tone.\", \"action\": \"One hand holds the bottle, the other is cupped to catch foam.\", \"condition\": \"Covered in thick, white, bubbly soap lather.\" }, \"bottle\": { \"type\": \"Pump bottle.\", \"material\": \"Matte white plastic.\", \"dispenser\": \"Light blue pump.\", \"contents\": \"White shampoo, visible as foam.\" }, \"label\": { \"color\": \"White\", \"text_color\": \"Black\", \"logo\": \"Circular with 'WAATAL' inside.\", \"main_text\": \"Hydrate SHAMPOO (script and bold font).\", \"sub_text\": \"Super Hydrating Shampoo. For All Hair Types. Made in Australia. 500ml.\" }, \"foam\": { \"texture\": \"Thick, rich, bubbly lather.\", \"color\": \"White\", \"location\": \"Covering hands, bottle neck, and dispenser.\" }, \"background\": { \"color\": \"Solid soft light blue.\", \"texture\": \"Seamless, smooth studio background.\" }, \"lighting\": { \"type\": \"Soft, diffused studio lighting.\", \"direction\": \"Even illumination, highlighting foam texture and hands.\" }, \"style\": { \"type\": \"Clean, minimalist product photography.\", \"shot\": \"Close-up.\", \"focus\": \"Sharp focus on hands, bottle, and foam.\", \"mood\": \"Fresh, clean, natural.\" } } }"
}
JSON
IM
Image
Product & Brand nano-banana-2

Minimalist luxury product photography of a collagen suppleme...

Minimalist luxury product photography of a collagen supplement jar placed on a soft pastel peach background, cylindrical pedestal base, surrounded by fresh pineapple and sliced grapefruit, a small glass cup with golden liquid in front, warm sunlight casting soft palm leaf shadows, clean aesthetic, high-end skincare branding, soft diffused lighting, realistic textures, subtle reflections, shallow depth of field, editorial style, 4k, ultra-detailed.

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": "Minimalist luxury product photography of a collagen supplement jar placed on a soft pastel peach background, cylindrical pedestal base, surrounded by fresh pineapple and sliced grapefruit, a small glass cup with golden liquid in front, warm sunlight casting soft palm leaf shadows, clean aesthetic, high-end skincare branding, soft diffused lighting, realistic textures, subtle reflections, shallow depth of field, editorial style, 4k, ultra-detailed."
}
JSON
IM
Image
Product & Brand nano-banana-2

[product], 3–4 identical units of the product floating in mi...

[product], 3–4 identical units of the product floating in mid-air, surrounded by fresh [fruit/vegetable] and sliced pieces that the product is made from, ingredients suspended around the product, dynamic balanced composition, ultra-clean pure white background, no gradients, no color cast, soft studio lighting, realistic soft shadows beneath floating objects, glossy packaging reflections, juicy ingredient textures, premium skincare editorial style, hyper-realistic product photography, macro detail, sharp focus, commercial advertising quality, minimal composition, 8k, 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": "[product], 3–4 identical units of the product floating in mid-air, surrounded by fresh [fruit/vegetable] and sliced pieces that the product is made from, ingredients suspended around the product, dynamic balanced composition, ultra-clean pure white background, no gradients, no color cast, soft studio lighting, realistic soft shadows beneath floating objects, glossy packaging reflections, juicy ingredient textures, premium skincare editorial style, hyper-realistic product photography, macro detail, sharp focus, commercial advertising quality, minimal composition, 8k, 1:1"
}
JSON
IM
Image
Product & Brand nano-banana-2

{ "master_prompt": { "scene_type": "ultra-premium cine...

{ "master_prompt": { "scene_type": "ultra-premium cinematic luxury hair oil product photography", "product": { "type": "luxurious branded herbal hair oil", "container": "premium dark amber glass bottle with elegant gold dropper cap", "label": "minimal luxury branding with embossed gold typography", "oil_texture": "rich golden oil with crystal clarity and glossy viscosity", "ingredients_visual": [ "fresh coconut halves", "amla berries", "almonds", "hibiscus flowers", "green herbal leaves" ] }, "composition": { "action": "golden hair oil droplets pouring elegantly from a glass dropper captured mid-air", "surrounding_elements": [ "floating herbal ingredients suspended in motion", "tiny golden oil droplets sparkling in light", "soft mist of botanical particles", "subtle golden dust accents for premium feel" ], "placement": "hero bottle centered on polished black marble surface with luxury reflections" }, "lighting": { "style": "luxury cosmetic studio lighting", "effects": [ "soft rim lighting outlining the bottle silhouette", "warm backlight illuminating the golden oil inside the bottle", "gentle top light highlighting the glass dropper and oil droplets", "subtle side lighting enhancing glass reflections" ] }, "color_palette": { "background": "deep charcoal fading into warm golden bokeh", "accents": "rich amber gold, botanical green, glossy black reflections, subtle champagne highlights" }, "technical_specs": { "camera": "macro lens with slight low angle for premium dominance", "shutter": "ultra-fast freeze motion capturing oil droplets", "depth_of_field": "shallow focus on bottle and dropper with cinematic background blur", "quality": "8K resolution, ultra-photorealistic cosmetic product detailing" } } }

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": "{ \"master_prompt\": { \"scene_type\": \"ultra-premium cinematic luxury hair oil product photography\", \"product\": { \"type\": \"luxurious branded herbal hair oil\", \"container\": \"premium dark amber glass bottle with elegant gold dropper cap\", \"label\": \"minimal luxury branding with embossed gold typography\", \"oil_texture\": \"rich golden oil with crystal clarity and glossy viscosity\", \"ingredients_visual\": [ \"fresh coconut halves\", \"amla berries\", \"almonds\", \"hibiscus flowers\", \"green herbal leaves\" ] }, \"composition\": { \"action\": \"golden hair oil droplets pouring elegantly from a glass dropper captured mid-air\", \"surrounding_elements\": [ \"floating herbal ingredients suspended in motion\", \"tiny golden oil droplets sparkling in light\", \"soft mist of botanical particles\", \"subtle golden dust accents for premium feel\" ], \"placement\": \"hero bottle centered on polished black marble surface with luxury reflections\" }, \"lighting\": { \"style\": \"luxury cosmetic studio lighting\", \"effects\": [ \"soft rim lighting outlining the bottle silhouette\", \"warm backlight illuminating the golden oil inside the bottle\", \"gentle top light highlighting the glass dropper and oil droplets\", \"subtle side lighting enhancing glass reflections\" ] }, \"color_palette\": { \"background\": \"deep charcoal fading into warm golden bokeh\", \"accents\": \"rich amber gold, botanical green, glossy black reflections, subtle champagne highlights\" }, \"technical_specs\": { \"camera\": \"macro lens with slight low angle for premium dominance\", \"shutter\": \"ultra-fast freeze motion capturing oil droplets\", \"depth_of_field\": \"shallow focus on bottle and dropper with cinematic background blur\", \"quality\": \"8K resolution, ultra-photorealistic cosmetic product detailing\" } } }"
}
JSON
IM
Image
Product & Brand nano-banana-2

A surreal, minimalist luxury advertising scene in a clean mo...

A surreal, minimalist luxury advertising scene in a clean modern studio with a soft neutral gray background, dramatic directional lighting and subtle cinematic shadows. A gigantic oversized tube of Dr.Jart+ Pore Remedy Pure Mastic Butter Mask (light blue tube, white label, bold black “Dr.Jart+” text clearly visible) stands triumphantly on a tall multi-tiered white marble pedestal like a monument. Around the base, 20–30 tiny realistic miniature male workers in matching beige/off-white uniforms and overalls are pulling thick ropes tied around the massive tube, straining with intense effort, dynamic poses, muscles tense, tugging mostly forward. Place a tall elegant Western woman in her late 20s in the foreground, positioned much closer to the camera for a stronger ad focus. She stands slightly in front of the pedestal, waist-up to mid-thigh framing, creating a premium beauty campaign feel. She has glowing fair skin, sharp cheekbones, soft natural makeup with luminous skin finish, slick low bun hairstyle, and a confident high-fashion gaze directed toward the camera. She wears a structured ivory tailored blazer dress with minimal gold accessories and nude heels. One hand lightly touches the giant tube while her body subtly angles toward it, creating a powerful hero-product connection. At the foot of the pedestal lies a large open lotus flower sculpture in soft pinkish-brown tones. High-end commercial skincare photography, hyper-realistic 3D render, ultra-sharp 8K details, cinematic composition, shallow depth of field slightly blurring the miniature workers while keeping the woman and product crisp and dominant, luxury beauty campaign aesthetic, epic scale contrast, clean elegant studio environment, shot by Veo.

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 surreal, minimalist luxury advertising scene in a clean modern studio with a soft neutral gray background, dramatic directional lighting and subtle cinematic shadows. A gigantic oversized tube of Dr.Jart+ Pore Remedy Pure Mastic Butter Mask (light blue tube, white label, bold black “Dr.Jart+” text clearly visible) stands triumphantly on a tall multi-tiered white marble pedestal like a monument. Around the base, 20–30 tiny realistic miniature male workers in matching beige/off-white uniforms and overalls are pulling thick ropes tied around the massive tube, straining with intense effort, dynamic poses, muscles tense, tugging mostly forward. Place a tall elegant Western woman in her late 20s in the foreground, positioned much closer to the camera for a stronger ad focus. She stands slightly in front of the pedestal, waist-up to mid-thigh framing, creating a premium beauty campaign feel. She has glowing fair skin, sharp cheekbones, soft natural makeup with luminous skin finish, slick low bun hairstyle, and a confident high-fashion gaze directed toward the camera. She wears a structured ivory tailored blazer dress with minimal gold accessories and nude heels. One hand lightly touches the giant tube while her body subtly angles toward it, creating a powerful hero-product connection. At the foot of the pedestal lies a large open lotus flower sculpture in soft pinkish-brown tones. High-end commercial skincare photography, hyper-realistic 3D render, ultra-sharp 8K details, cinematic composition, shallow depth of field slightly blurring the miniature workers while keeping the woman and product crisp and dominant, luxury beauty campaign aesthetic, epic scale contrast, clean elegant studio environment, shot by Veo."
}
JSON
IM
Image
Product & Brand nano-banana-2

Ultra-high-end photorealistic skincare product photography f...

Ultra-high-end photorealistic skincare product photography featuring a clear cylindrical glass dropper bottle filled with translucent golden serum, centered and slightly tilted backward, with a matte white rubber dropper and metallic gold collar, the front label clearly reading “epielle Brightening Serum Vitamin C” with citrus illustrations, placed on a glossy reflective orange liquid surface creating a sharp mirror reflection beneath the bottle, surrounded by whole and sliced citrus fruits including bright orange oranges, a halved ruby grapefruit with visible pulp, and a sliced yellow lemon positioned symmetrically around the bottle, small golden serum droplets and splashes frozen mid-air around the base, fresh green citrus leaves floating softly in the background, background consisting of a smooth warm gradient transitioning from pale yellow on the left to deep orange on the right, lighting is strong soft studio lighting from upper left creating crisp highlights on glass and liquid, luminous glow through the serum, subtle shadows, and high contrast reflections, color palette dominated by vibrant orange, yellow, gold, and fresh green accents, textures extremely detailed including glossy glass, liquid viscosity, citrus peel pores, juicy pulp, and reflective surface, shallow depth of field with razor-sharp focus on the bottle label and fruit in the midground and gentle bokeh in the background, premium commercial cosmetic advertising style, clean modern composition, cinematic realism, ultra-detailed 8K photorealism, studio-grade 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": "Ultra-high-end photorealistic skincare product photography featuring a clear cylindrical glass dropper bottle filled with translucent golden serum, centered and slightly tilted backward, with a matte white rubber dropper and metallic gold collar, the front label clearly reading “epielle Brightening Serum Vitamin C” with citrus illustrations, placed on a glossy reflective orange liquid surface creating a sharp mirror reflection beneath the bottle, surrounded by whole and sliced citrus fruits including bright orange oranges, a halved ruby grapefruit with visible pulp, and a sliced yellow lemon positioned symmetrically around the bottle, small golden serum droplets and splashes frozen mid-air around the base, fresh green citrus leaves floating softly in the background, background consisting of a smooth warm gradient transitioning from pale yellow on the left to deep orange on the right, lighting is strong soft studio lighting from upper left creating crisp highlights on glass and liquid, luminous glow through the serum, subtle shadows, and high contrast reflections, color palette dominated by vibrant orange, yellow, gold, and fresh green accents, textures extremely detailed including glossy glass, liquid viscosity, citrus peel pores, juicy pulp, and reflective surface, shallow depth of field with razor-sharp focus on the bottle label and fruit in the midground and gentle bokeh in the background, premium commercial cosmetic advertising style, clean modern composition, cinematic realism, ultra-detailed 8K photorealism, studio-grade quality"
}
JSON
IM
Image
Product & Brand nano-banana-2

cinematic 8-photo storytelling collage featuring the same gi...

cinematic 8-photo storytelling collage featuring the same girl throughout the journey. Frame 1: Bedroom desk — laptop bag packed, morning light. Frame 2: Leaving home — headphones on, confident walk. Frame 3: City sidewalk — coffee aroma vibes, motion blur. Frame 4: Entering café — warm interiors, soft smiles. Frame 5: Laptop open — deep focus, typing. Frame 6: Coffee sip — thoughtful pause. Frame 7: Closing laptop — productive satisfaction. Frame 8: Walking back home — golden hour calm. Editorial lifestyle mood, natural tones, cinematic depth, ultra-realistic.

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": "cinematic 8-photo storytelling collage featuring the same girl throughout the journey. Frame 1: Bedroom desk — laptop bag packed, morning light. Frame 2: Leaving home — headphones on, confident walk. Frame 3: City sidewalk — coffee aroma vibes, motion blur. Frame 4: Entering café — warm interiors, soft smiles. Frame 5: Laptop open — deep focus, typing. Frame 6: Coffee sip — thoughtful pause. Frame 7: Closing laptop — productive satisfaction. Frame 8: Walking back home — golden hour calm. Editorial lifestyle mood, natural tones, cinematic depth, ultra-realistic."
}
JSON
IM
Image
Product & Brand nano-banana-2

A photorealistic product shot of a person holding a slim, li...

A photorealistic product shot of a person holding a slim, light green can of Sanzo Calamansi Sparkling Water. The person is wearing a dark green, fuzzy fleece zip-up hoodie patterned with light green four-leaf clovers. Both hands are holding the can centrally in front of their torso, displaying perfectly manicured nails painted in a glossy green polish. The can features an illustration of a sliced calamansi lime with green leaves. The background is a solid, moody dark green, creating a striking monochromatic green aesthetic. Soft, professional studio lighting, highly detailed.

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 photorealistic product shot of a person holding a slim, light green can of Sanzo Calamansi Sparkling Water. The person is wearing a dark green, fuzzy fleece zip-up hoodie patterned with light green four-leaf clovers. Both hands are holding the can centrally in front of their torso, displaying perfectly manicured nails painted in a glossy green polish. The can features an illustration of a sliced calamansi lime with green leaves. The background is a solid, moody dark green, creating a striking monochromatic green aesthetic. Soft, professional studio lighting, highly detailed."
}
JSON
IM
Image
Product & Brand nano-banana-2

Minimalist branded flower packaging design for [brand], eco-...

Minimalist branded flower packaging design for [brand], eco-friendly cardboard sleeve with integrated handle, sculptural curved silhouette wrapping naturally around a fresh bouquet, packaging fully designed using the official brand color palette, matte surface with the brand logo cleanly centered on the front panel, precision die-cut window integrated into the design allowing flowers to subtly emerge, cohesive color blocking aligned with brand identity, modern premium branding aesthetic, smooth paper texture, refined structural details, hand holding the package naturally, studio product photography, centered composition, pure white background, soft realistic contact shadow beneath, high-end packaging mockup, ultra-detailed, 1:1 aspect 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": "Minimalist branded flower packaging design for [brand], eco-friendly cardboard sleeve with integrated handle, sculptural curved silhouette wrapping naturally around a fresh bouquet, packaging fully designed using the official brand color palette, matte surface with the brand logo cleanly centered on the front panel, precision die-cut window integrated into the design allowing flowers to subtly emerge, cohesive color blocking aligned with brand identity, modern premium branding aesthetic, smooth paper texture, refined structural details, hand holding the package naturally, studio product photography, centered composition, pure white background, soft realistic contact shadow beneath, high-end packaging mockup, ultra-detailed, 1:1 aspect ratio."
}
JSON
IM
Image
Product & Brand nano-banana-2

[product], high-end product advertising, white seamless back...

[product], high-end product advertising, white seamless background, exploded view with inner mechanics revealed, outer shell hovering above core, micro screws and components suspended, perfect alignment guides implied, crisp soft shadow, ultra realistic, macro product photography, 100mm lens look, f/8, 8k, 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": "[product], high-end product advertising, white seamless background, exploded view with inner mechanics revealed, outer shell hovering above core, micro screws and components suspended, perfect alignment guides implied, crisp soft shadow, ultra realistic, macro product photography, 100mm lens look, f/8, 8k, 1:1"
}
JSON
IM
Image
Product & Brand nano-banana-2

A professional skincare shot of a [product container] with [...

A professional skincare shot of a [product container] with [cap/lid], labeled [brand, product, descriptor, volume] with [foil/ink/embossing]. [Number] [animal type(s)] in [colors] are arranged [positions/actions] around it. [Held/placed/floating] naturally. Clean white background, soft shadow, bright lighting, ultra-high resolution, 8k, professional cosmetic photography.

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 professional skincare shot of a [product container] with [cap/lid], labeled [brand, product, descriptor, volume] with [foil/ink/embossing]. [Number] [animal type(s)] in [colors] are arranged [positions/actions] around it. [Held/placed/floating] naturally. Clean white background, soft shadow, bright lighting, ultra-high resolution, 8k, professional cosmetic photography."
}
JSON
IM
Image
Product & Brand nano-banana-2

Hyper-realistic 8k cinematic photograph, low-angle wide lens...

Hyper-realistic 8k cinematic photograph, low-angle wide lens. A giant Coca-Cola can standing like a monument, partially encased in thick blue glacial ice and snow in an arctic landscape. Frost covering the aluminum surface, long icicles hanging from the rim, snow filling the top opening. Snowcat vehicle and scientists in red parkas for scale. Cold diffused lighting, HDR, ultra-real frozen textures, cinematic atmosphere --ar 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": "Hyper-realistic 8k cinematic photograph, low-angle wide lens. A giant Coca-Cola can standing like a monument, partially encased in thick blue glacial ice and snow in an arctic landscape. Frost covering the aluminum surface, long icicles hanging from the rim, snow filling the top opening. Snowcat vehicle and scientists in red parkas for scale. Cold diffused lighting, HDR, ultra-real frozen textures, cinematic atmosphere --ar 2:3"
}
JSON
IM
Image
Product & Brand nano-banana-2

Elegant rose-gold lipstick standing upright on a reflective...

Elegant rose-gold lipstick standing upright on a reflective marble surface, surrounded by flying rose petals and soft powder dust. Warm studio lighting with dramatic shadows, luxury vanity background with blurred mirrors and golden accents, cinematic mood, macro product photography, ultra-sharp details, glossy textures, premium cosmetic brand style. 3×3photo grid with different angles and poses. Same character, consistent look, clean lighting, real photoshoot vibe 2k.

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": "Elegant rose-gold lipstick standing upright on a reflective marble surface, surrounded by flying rose petals and soft powder dust. Warm studio lighting with dramatic shadows, luxury vanity background with blurred mirrors and golden accents, cinematic mood, macro product photography, ultra-sharp details, glossy textures, premium cosmetic brand style. 3×3photo grid with different angles and poses. Same character, consistent look, clean lighting, real photoshoot vibe 2k."
}
JSON
IM
Image
Product & Brand nano-banana-2

Ultra-detailed studio product render of a LEGO Technic style...

Ultra-detailed studio product render of a LEGO Technic style vehicle model based precisely on the next uploaded reference photo. The LEGO build must replicate the real vehicle’s exact shape, proportions, bodylines, color scheme, headlights, grille design, wheels, and overall silhouette while constructed entirely from realistic LEGO Technic pieces and panels. The vehicle is displayed in a clean professional product photography studio setup, placed on a smooth matte surface. Behind the car stands a large LEGO Technic product box, slightly blurred but clearly recognizable as a premium building kit package. The vehicle features aggressive widebody styling, large sport wheels, low stance, detailed front splitter, and a roof rack cargo box built from LEGO elements, maintaining the same design style as the reference vehicle. In front of the vehicle on the table are organized LEGO Technic components and tools, including small tires, axles, connectors, battery modules, rods, mechanical pieces, scissors, and miniature assembly tools, arranged neatly like a build kit. Lighting is soft cinematic studio lighting with subtle reflections on the LEGO plastic surfaces, ultra-sharp details, shallow depth of field, realistic shadows, premium commercial product photography style. Composition: hero angle slightly from the front side, emphasizing the vehicle's shape and mechanical LEGO structure. Hyper-realistic materials, crisp textures, ultra detailed LEGO plastic surface, ray-traced reflections. 8K resolution, ultra sharp, photorealistic render, cinematic lighting, professional product shot Aspect Ratio 9:16

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 studio product render of a LEGO Technic style vehicle model based precisely on the next uploaded reference photo. The LEGO build must replicate the real vehicle’s exact shape, proportions, bodylines, color scheme, headlights, grille design, wheels, and overall silhouette while constructed entirely from realistic LEGO Technic pieces and panels. The vehicle is displayed in a clean professional product photography studio setup, placed on a smooth matte surface. Behind the car stands a large LEGO Technic product box, slightly blurred but clearly recognizable as a premium building kit package. The vehicle features aggressive widebody styling, large sport wheels, low stance, detailed front splitter, and a roof rack cargo box built from LEGO elements, maintaining the same design style as the reference vehicle. In front of the vehicle on the table are organized LEGO Technic components and tools, including small tires, axles, connectors, battery modules, rods, mechanical pieces, scissors, and miniature assembly tools, arranged neatly like a build kit. Lighting is soft cinematic studio lighting with subtle reflections on the LEGO plastic surfaces, ultra-sharp details, shallow depth of field, realistic shadows, premium commercial product photography style. Composition: hero angle slightly from the front side, emphasizing the vehicle's shape and mechanical LEGO structure. Hyper-realistic materials, crisp textures, ultra detailed LEGO plastic surface, ray-traced reflections. 8K resolution, ultra sharp, photorealistic render, cinematic lighting, professional product shot Aspect Ratio 9:16"
}
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.