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

[product], luxury packaging reveal scene, premium unboxing m...

[product], luxury packaging reveal scene, premium unboxing moment, pristine hands partially visible at the edges, delicate interaction with the packaging, lid slightly lifted to reveal the product inside, crisp folds and precise alignment, tactile materials [ ex: matte paper, soft touch coating, embossed details, foil accents], subtle micro texture and dust free finish, clean white background, soft diffused studio lighting, controlled specular highlights, realistic shadows, macro product photography look, shallow depth of field with sharp focus on the product and branding area, high end editorial commercial style, ultra realistic, 4k, 1:1, no watermark, no extra text

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], luxury packaging reveal scene, premium unboxing moment, pristine hands partially visible at the edges, delicate interaction with the packaging, lid slightly lifted to reveal the product inside, crisp folds and precise alignment, tactile materials [ ex: matte paper, soft touch coating, embossed details, foil accents], subtle micro texture and dust free finish, clean white background, soft diffused studio lighting, controlled specular highlights, realistic shadows, macro product photography look, shallow depth of field with sharp focus on the product and branding area, high end editorial commercial style, ultra realistic, 4k, 1:1, no watermark, no extra text"
}
JSON
IM
Image
Product & Brand nano-banana-2

Create a 3×3 grid in 3:4 aspect ratio for a high-end commerc...

Create a 3×3 grid in 3:4 aspect ratio for a high-end commercial marketing campaign using the uploaded product as the central subject. Each frame must present a distinct visual concept while maintaining perfect product consistency across all nine images. Grid Concepts (one per cell): 1. Iconic hero still life with bold composition 2. Extreme macro detail highlighting material, surface, or texture 3. Dynamic liquid or particle interaction surrounding the product 4. Minimal sculptural arrangement with abstract forms 5. Floating elements composition suggesting lightness and innovation 6. Sensory close-up emphasizing tactility and realism 7. Color-driven conceptual scene inspired by the product palette 8. Ingredient or component abstraction (non-literal, symbolic) 9. Surreal yet elegant fusion scene combining realism and imagination Visual Rules: Product must remain 100% accurate in shape, proportions, label, typography, color, and branding No distortion, deformation, or redesign of the product Clean separation between product and background Lighting & Style: Soft, controlled studio lighting Subtle highlights, realistic shadows High dynamic range, ultra-sharp focus Editorial luxury advertising aesthetic Premium sensory marketing look Overall Feel: Modern, refined, visually cohesive High-end commercial campaign Designed for brand websites, social grids, and digital billboards Hyperreal, cinematic, polished, and aspirational

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 3×3 grid in 3:4 aspect ratio for a high-end commercial marketing campaign using the uploaded product as the central subject. Each frame must present a distinct visual concept while maintaining perfect product consistency across all nine images. Grid Concepts (one per cell): 1. Iconic hero still life with bold composition 2. Extreme macro detail highlighting material, surface, or texture 3. Dynamic liquid or particle interaction surrounding the product 4. Minimal sculptural arrangement with abstract forms 5. Floating elements composition suggesting lightness and innovation 6. Sensory close-up emphasizing tactility and realism 7. Color-driven conceptual scene inspired by the product palette 8. Ingredient or component abstraction (non-literal, symbolic) 9. Surreal yet elegant fusion scene combining realism and imagination Visual Rules: Product must remain 100% accurate in shape, proportions, label, typography, color, and branding No distortion, deformation, or redesign of the product Clean separation between product and background Lighting & Style: Soft, controlled studio lighting Subtle highlights, realistic shadows High dynamic range, ultra-sharp focus Editorial luxury advertising aesthetic Premium sensory marketing look Overall Feel: Modern, refined, visually cohesive High-end commercial campaign Designed for brand websites, social grids, and digital billboards Hyperreal, cinematic, polished, and aspirational"
}
JSON
IM
Image
Product & Brand nano-banana-2

[BRAND NAME]: The name of the brand. Goal: Generate a single...

[BRAND NAME]: The name of the brand. Goal: Generate a single, minimalist, and surreal image where a cloud is shaped like the brand's logo. 1. THE LOGO CLOUD - **Subject**: A massive, photorealistic cumulus cloud in the exact geometric shape of the [BRAND NAME] logo. - **Texture**: Puffy, soft, and voluminous with natural sunlight illuminating the edges. - **Volume**: 3D sculptural appearance with realistic shadows within the cloud folds to show depth. 2. ENVIRONMENT & BACKGROUND - **Sky**: A vast, clear, vibrant blue summer sky. - **Secondary Elements**: A few small, wispy, natural clouds scattered far in the background to enhance the sense of scale and realism. - **Lighting**: Bright, direct daylight coming from the side to create high-contrast highlights and shadows. 3. INTEGRATED BRANDING - **Text**: The word "[BRAND NAME]" written in a clean, bold white sans-serif font. - **Icon**: A small, flat white version of the brand's logo placed next to the text. - **Positioning**: The branding (text + logo) is centered at the bottom of the frame, acting as a subtle anchor to the giant cloud above. 4. STYLE - Surrealist photography, ultra-minimalist composition, high resolution, 8k, cinematic look, clean and airy vibe.

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": "[BRAND NAME]: The name of the brand. Goal: Generate a single, minimalist, and surreal image where a cloud is shaped like the brand's logo. 1. THE LOGO CLOUD - **Subject**: A massive, photorealistic cumulus cloud in the exact geometric shape of the [BRAND NAME] logo. - **Texture**: Puffy, soft, and voluminous with natural sunlight illuminating the edges. - **Volume**: 3D sculptural appearance with realistic shadows within the cloud folds to show depth. 2. ENVIRONMENT & BACKGROUND - **Sky**: A vast, clear, vibrant blue summer sky. - **Secondary Elements**: A few small, wispy, natural clouds scattered far in the background to enhance the sense of scale and realism. - **Lighting**: Bright, direct daylight coming from the side to create high-contrast highlights and shadows. 3. INTEGRATED BRANDING - **Text**: The word \"[BRAND NAME]\" written in a clean, bold white sans-serif font. - **Icon**: A small, flat white version of the brand's logo placed next to the text. - **Positioning**: The branding (text + logo) is centered at the bottom of the frame, acting as a subtle anchor to the giant cloud above. 4. STYLE - Surrealist photography, ultra-minimalist composition, high resolution, 8k, cinematic look, clean and airy vibe."
}
JSON
IM
Image
Product & Brand nano-banana-2

Act as a High-End Product Photographer and CGI Artist. PHAS...

Act as a High-End Product Photographer and CGI Artist. PHASE 1: SUBJECT & LOGIC Generate a massive, perfectly centered, three-dimensional physical sculpture of the official, unaltered corporate logo for [BRAND NAME]. The sculpture must strictly adhere to the brand’s precise logo geometry and proportions (1:1 from brandbook). The sculpture is suspended in mid-air. Autonomously identify the exact official shape and structure of the [BRAND NAME] logo and render it as a single, flawless glass object without any modifications. PHASE 2: MATERIALITY (GLASS) The entire logo is made of hyper-realistic, optical-grade crystal glass (not water, not gel). The material is solid, colorless, and boasts high clarity with a high refractive index. It must look heavy and монолитное (monolithic). The glass structure contains subtle, photorealistic microscopic flaws: fine polished scratches on the surface and minor internal inclusions (dust particles/seed bubbles, very few) to avoid “CGI plastic.” The edges must be precision-beveled and fire-polished. PHASE 3: ENVIRONMENT & CAUSTICS The logo is suspended against a strictly clean, bright blue sky with sparse, naturally defined white cumulus clouds. NO land, NO trees, NO palms. The background is purely atmospheric. The focus is entirely on the glass logo. Critically render hyper-realistic, complex glass caustics: intense, sharp patterns of focused light and color (refractions of the blue sky) cast inside and onto the surface of the glass form due to the sunlight passing through it. TECH SPECS Rendered with Arnold or Octane. Phase One XF, 120mm Macro lens. Aperture f/5.6 for sharp depth across the entire glass sculpture. Intense, direct sunlight (hard lighting) to maximize caustics. Global illumination, ray-traced refractions (double-sided geometry), and chromatic aberration emulation (subtle) for optical realism. Fine grain film emulation (Fujifilm Velvia 50).

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": "Act as a High-End Product Photographer and CGI Artist. PHASE 1: SUBJECT & LOGIC Generate a massive, perfectly centered, three-dimensional physical sculpture of the official, unaltered corporate logo for [BRAND NAME]. The sculpture must strictly adhere to the brand’s precise logo geometry and proportions (1:1 from brandbook). The sculpture is suspended in mid-air. Autonomously identify the exact official shape and structure of the [BRAND NAME] logo and render it as a single, flawless glass object without any modifications. PHASE 2: MATERIALITY (GLASS) The entire logo is made of hyper-realistic, optical-grade crystal glass (not water, not gel). The material is solid, colorless, and boasts high clarity with a high refractive index. It must look heavy and монолитное (monolithic). The glass structure contains subtle, photorealistic microscopic flaws: fine polished scratches on the surface and minor internal inclusions (dust particles/seed bubbles, very few) to avoid “CGI plastic.” The edges must be precision-beveled and fire-polished. PHASE 3: ENVIRONMENT & CAUSTICS The logo is suspended against a strictly clean, bright blue sky with sparse, naturally defined white cumulus clouds. NO land, NO trees, NO palms. The background is purely atmospheric. The focus is entirely on the glass logo. Critically render hyper-realistic, complex glass caustics: intense, sharp patterns of focused light and color (refractions of the blue sky) cast inside and onto the surface of the glass form due to the sunlight passing through it. TECH SPECS Rendered with Arnold or Octane. Phase One XF, 120mm Macro lens. Aperture f/5.6 for sharp depth across the entire glass sculpture. Intense, direct sunlight (hard lighting) to maximize caustics. Global illumination, ray-traced refractions (double-sided geometry), and chromatic aberration emulation (subtle) for optical realism. Fine grain film emulation (Fujifilm Velvia 50)."
}
JSON
IM
Image
Product & Brand nano-banana-2

[BRAND NAME]. Act as a World-Class Editorial Designer. PHAS...

[BRAND NAME]. Act as a World-Class Editorial Designer. PHASE 1: DYNAMIC SUBJECT LOGIC. - Subject Selection: Autonomously analyze [BRAND NAME]. - Layering (The Sandwich Effect): Interweave the subject with background shapes. Some parts of the car/person must be hidden behind geometric blocks, while other parts (wheels, limbs, props) must overlap them to create 3D depth. PHASE 2: GRID & GEOMETRY. - Layout: A clean 2x2 grid composition. - Overlays: Superimpose large, bold geometric arcs and circles over the grid. - Visual Balance: Place one iconic product prop (e.g., a floating key fob for cars or a ball for sports) in a separate quadrant to balance the subject. PHASE 3: SOPHISTICATED MUTED PALETTE. - Color Direction: DO NOT use aggressive neon or oversaturated colors. - Palette: Identify the core colors of [BRAND NAME] and shift them to a "Sophisticated Muted" spectrum. - Tones: Use desaturated, earthy, or "dusty" versions of the brand colors (e.g., instead of hot pink, use dusty rose; instead of bright mint, use sage green; instead of royal blue, use slate blue). - Finish: Matte, flat color blocks with zero gradients. PHASE 4: PHOTOGRAPHY & LIGHTING. - Subject Style: High-end commercial studio photography. - Lighting: Soft, diffused studio lighting with gentle highlights. No harsh shadows. - Integration: The subject must feel physically embedded into the graphic grid. PHASE 5: MINIMALIST BRANDING. - Logo: Place a clean, single-color [BRAND NAME] logo in the center of one background block. No taglines, just the iconic symbol.

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": "[BRAND NAME]. Act as a World-Class Editorial Designer. PHASE 1: DYNAMIC SUBJECT LOGIC. - Subject Selection: Autonomously analyze [BRAND NAME]. - Layering (The Sandwich Effect): Interweave the subject with background shapes. Some parts of the car/person must be hidden behind geometric blocks, while other parts (wheels, limbs, props) must overlap them to create 3D depth. PHASE 2: GRID & GEOMETRY. - Layout: A clean 2x2 grid composition. - Overlays: Superimpose large, bold geometric arcs and circles over the grid. - Visual Balance: Place one iconic product prop (e.g., a floating key fob for cars or a ball for sports) in a separate quadrant to balance the subject. PHASE 3: SOPHISTICATED MUTED PALETTE. - Color Direction: DO NOT use aggressive neon or oversaturated colors. - Palette: Identify the core colors of [BRAND NAME] and shift them to a \"Sophisticated Muted\" spectrum. - Tones: Use desaturated, earthy, or \"dusty\" versions of the brand colors (e.g., instead of hot pink, use dusty rose; instead of bright mint, use sage green; instead of royal blue, use slate blue). - Finish: Matte, flat color blocks with zero gradients. PHASE 4: PHOTOGRAPHY & LIGHTING. - Subject Style: High-end commercial studio photography. - Lighting: Soft, diffused studio lighting with gentle highlights. No harsh shadows. - Integration: The subject must feel physically embedded into the graphic grid. PHASE 5: MINIMALIST BRANDING. - Logo: Place a clean, single-color [BRAND NAME] logo in the center of one background block. No taglines, just the iconic symbol."
}
JSON
IM
Image
Product & Brand nano-banana-2

[BRAND NAME] | [HEADLINE] | [SUB-TEXT] | [CTA]. Act as a Sen...

[BRAND NAME] | [HEADLINE] | [SUB-TEXT] | [CTA]. Act as a Senior Art Director. PHASE 1: INTEGRATED COMPOSITION & OVERLAP. - Layout: Seamless fusion of 2D graphics and 3D photography. - Overlap Logic: The subject and their primary "Product Prop" (e.g., a car, a device) must physically overlap the graphic panel to break the "wall" between design and photo. - Unity: Geometric shapes from the graphic side must bleed into the photographic sky area. PHASE 2: BRAND & CATEGORY SIMULATION. Autonomously analyze the [BRAND NAME] and its industry category: - INDUSTRY CONTEXT: * If Automotive: Include the vehicle and a person interacting with it. * If Tech: Include flagship devices/gadgets. * If Fashion/Lifestyle: Focus on editorial poses and premium accessories. - SHAPE SIMULATION: Match shapes to brand identity (e.g., Sharp/Speed for Auto, Minimalist/Grid for Tech). - COLOR SIMULATION: Use the brand's primary signature hue for both the graphic pattern and the subject's outfit/accents. PHASE 3: TYPOGRAPHY & CUSTOM CONTENT. - Headline: Display "[HEADLINE]" in a bold, modern Sans-Serif font. (If [HEADLINE] is empty, generate a high-energy slogan for [BRAND NAME]). - Sub-headline: Display "[SUB-TEXT]" below the headline. - Button: Create a minimalist pill-shaped CTA button with the text: "[CTA]". - Interaction: Text layers should have 3D depth, sitting partially behind the subject or product prop. PHASE 4: PHOTOGRAPHY & SUBJECT. - Perspective: Extreme low-angle (worm’s eye view) looking up. - Subject: A diverse persona reflecting the brand's audience. - Environment: Massive, clear blue sky as the backdrop. - Visual Link: Subject's styling must incorporate the Brand's primary color. PHASE 5: FINAL VISUAL STYLE. High-end commercial aesthetic. Crisp, saturated, professional fusion of flat vector art and realistic 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": "[BRAND NAME] | [HEADLINE] | [SUB-TEXT] | [CTA]. Act as a Senior Art Director. PHASE 1: INTEGRATED COMPOSITION & OVERLAP. - Layout: Seamless fusion of 2D graphics and 3D photography. - Overlap Logic: The subject and their primary \"Product Prop\" (e.g., a car, a device) must physically overlap the graphic panel to break the \"wall\" between design and photo. - Unity: Geometric shapes from the graphic side must bleed into the photographic sky area. PHASE 2: BRAND & CATEGORY SIMULATION. Autonomously analyze the [BRAND NAME] and its industry category: - INDUSTRY CONTEXT: * If Automotive: Include the vehicle and a person interacting with it. * If Tech: Include flagship devices/gadgets. * If Fashion/Lifestyle: Focus on editorial poses and premium accessories. - SHAPE SIMULATION: Match shapes to brand identity (e.g., Sharp/Speed for Auto, Minimalist/Grid for Tech). - COLOR SIMULATION: Use the brand's primary signature hue for both the graphic pattern and the subject's outfit/accents. PHASE 3: TYPOGRAPHY & CUSTOM CONTENT. - Headline: Display \"[HEADLINE]\" in a bold, modern Sans-Serif font. (If [HEADLINE] is empty, generate a high-energy slogan for [BRAND NAME]). - Sub-headline: Display \"[SUB-TEXT]\" below the headline. - Button: Create a minimalist pill-shaped CTA button with the text: \"[CTA]\". - Interaction: Text layers should have 3D depth, sitting partially behind the subject or product prop. PHASE 4: PHOTOGRAPHY & SUBJECT. - Perspective: Extreme low-angle (worm’s eye view) looking up. - Subject: A diverse persona reflecting the brand's audience. - Environment: Massive, clear blue sky as the backdrop. - Visual Link: Subject's styling must incorporate the Brand's primary color. PHASE 5: FINAL VISUAL STYLE. High-end commercial aesthetic. Crisp, saturated, professional fusion of flat vector art and realistic photography."
}
JSON
IM
Image
Product & Brand nano-banana-2

[BRAND NAME]. Act as a Senior Editorial Designer and Typogra...

[BRAND NAME]. Act as a Senior Editorial Designer and Typographer. PHASE 1: TYPOGRAPHIC MASK (THE "WINDOW" EFFECT). - Core Element: Use the most iconic slogan or the name of [BRAND NAME] as a massive, ultra-bold, heavy sans-serif typographic mask. - Layout: The letters must be giant, filling the entire vertical frame from edge to edge with tight kerning. - Concept: The text acts as a "cut-out" window. The background is solid white, and the photographic subject is visible ONLY through the letterforms. PHASE 2: DYNAMIC SUBJECT LOGIC. - Subject Selection: - Detail: Ensure a high-contrast element (like a red shoe or a glowing headlight) is visible through one of the letters as a focal point. PHASE 3: SOPHISTICATED MUTED PALETTE. - Atmosphere: Use a "Refined Muted" color scheme. - Tones: Soft slate blues, charcoal greys, and creamy off-whites for the photography inside the mask. - Accent: Identify one sharp, saturated accent color belonging to [BRAND NAME] and apply it to a single key object visible through the text. PHASE 4: PHOTOGRAPHY & LIGHTING. - Lighting: Soft-box studio lighting. Diffused shadows and gentle highlights to create a cinematic, high-end editorial feel. - Finish: Clean, matte texture with zero visual noise. High-definition photographic quality. PHASE 5: MINIMALIST BRANDING. - Accents: Add a tiny minimalist logo and a small vertical tagline in a clean, microscopic sans-serif font near the corners. - Year: Include the year "2026" in a subtle, elegant font to mimic a limited-edition look.

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": "[BRAND NAME]. Act as a Senior Editorial Designer and Typographer. PHASE 1: TYPOGRAPHIC MASK (THE \"WINDOW\" EFFECT). - Core Element: Use the most iconic slogan or the name of [BRAND NAME] as a massive, ultra-bold, heavy sans-serif typographic mask. - Layout: The letters must be giant, filling the entire vertical frame from edge to edge with tight kerning. - Concept: The text acts as a \"cut-out\" window. The background is solid white, and the photographic subject is visible ONLY through the letterforms. PHASE 2: DYNAMIC SUBJECT LOGIC. - Subject Selection: - Detail: Ensure a high-contrast element (like a red shoe or a glowing headlight) is visible through one of the letters as a focal point. PHASE 3: SOPHISTICATED MUTED PALETTE. - Atmosphere: Use a \"Refined Muted\" color scheme. - Tones: Soft slate blues, charcoal greys, and creamy off-whites for the photography inside the mask. - Accent: Identify one sharp, saturated accent color belonging to [BRAND NAME] and apply it to a single key object visible through the text. PHASE 4: PHOTOGRAPHY & LIGHTING. - Lighting: Soft-box studio lighting. Diffused shadows and gentle highlights to create a cinematic, high-end editorial feel. - Finish: Clean, matte texture with zero visual noise. High-definition photographic quality. PHASE 5: MINIMALIST BRANDING. - Accents: Add a tiny minimalist logo and a small vertical tagline in a clean, microscopic sans-serif font near the corners. - Year: Include the year \"2026\" in a subtle, elegant font to mimic a limited-edition look."
}
JSON
IM
Image
Product & Brand nano-banana-2

First-person perspective inside a brightly lit supermarket a...

First-person perspective inside a brightly lit supermarket aisle. Realistic human hands are holding a bottle of Fanta soda close to the camera. The vivid orange drink in its iconic branded bottle is surrounded by a multi-layered holographic augmented reality interface displaying nutritional data, including calorie count, sugar content, caffeine level, freshness indicator, expiration date, and recommended refreshing recipes and cocktails based on Fanta. The UI elements smoothly shift and reorganize based on the viewer’s gaze direction, as if dynamically responding to user focus. In the left peripheral vision, a vertical semi-transparent shopping list is visible with checked-off items, where Fanta is highlighted as the currently active selection. Hyper-realistic mixed reality, clean futuristic AR design, glass-like UI panels, soft ambient glow, realistic lighting and shadows, natural depth of field, immersive first-person interface, showcasing next-generation retail technology.

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": "First-person perspective inside a brightly lit supermarket aisle. Realistic human hands are holding a bottle of Fanta soda close to the camera. The vivid orange drink in its iconic branded bottle is surrounded by a multi-layered holographic augmented reality interface displaying nutritional data, including calorie count, sugar content, caffeine level, freshness indicator, expiration date, and recommended refreshing recipes and cocktails based on Fanta. The UI elements smoothly shift and reorganize based on the viewer’s gaze direction, as if dynamically responding to user focus. In the left peripheral vision, a vertical semi-transparent shopping list is visible with checked-off items, where Fanta is highlighted as the currently active selection. Hyper-realistic mixed reality, clean futuristic AR design, glass-like UI panels, soft ambient glow, realistic lighting and shadows, natural depth of field, immersive first-person interface, showcasing next-generation retail technology."
}
JSON
IM
Image
Product & Brand nano-banana-2

Create an exploded products with inner mechanics [product],...

Create an exploded products with inner mechanics [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": "Create an exploded products with inner mechanics [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

[BRAND NAME]. Act as a vector illustrator designing a trendy...

[BRAND NAME]. Act as a vector illustrator designing a trendy, high-end "Sticker Sheet" set. THE TASK: Deconstruct the brand identity of [BRAND NAME] into a playful, cohesive set of approximately 8-10 unique sticker designs arranged on a single sheet. Content Generation: Do not just make logos. Autonomously invent a mix of: Mascots/Characters: Stylized busts of people wearing brand-relevant accessories or expressing emotions. Key Products: Iconic items associated with the brand. Symbols/Objects: Abstract shapes or tools relevant to the brand's lifestyle. VISUAL STYLE (MONOLINE VECTOR): The art style must strictly match "Modern Trendy Line Art." Line Work: Use a THICK, UNIFORM line weight (monoline) for all internal details. The lines should be smooth, rounded, and confident. Coloring: The stickers must be filled with Solid Off-White or Cream, utilizing the line color for details. NO gradients, NO shading, NO 3D effects. Flat 2D vector look. The "Sticker" Effect: Every element must have a thick, distinct White (or Cream) Die-Cut Border surrounding it, separating it from the background. COLOR PALETTE (HIGH CONTRAST): Background: A solid, deep, saturated color to create maximum contrast. Stickers: High-brightness Cream or White fill with Dark (Black or Dark Brown) outlines. COMPOSITION: The stickers are scattered naturally across the sheet (knolling layout) with even spacing. No overlapping.

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": "[BRAND NAME]. Act as a vector illustrator designing a trendy, high-end \"Sticker Sheet\" set. THE TASK: Deconstruct the brand identity of [BRAND NAME] into a playful, cohesive set of approximately 8-10 unique sticker designs arranged on a single sheet. Content Generation: Do not just make logos. Autonomously invent a mix of: Mascots/Characters: Stylized busts of people wearing brand-relevant accessories or expressing emotions. Key Products: Iconic items associated with the brand. Symbols/Objects: Abstract shapes or tools relevant to the brand's lifestyle. VISUAL STYLE (MONOLINE VECTOR): The art style must strictly match \"Modern Trendy Line Art.\" Line Work: Use a THICK, UNIFORM line weight (monoline) for all internal details. The lines should be smooth, rounded, and confident. Coloring: The stickers must be filled with Solid Off-White or Cream, utilizing the line color for details. NO gradients, NO shading, NO 3D effects. Flat 2D vector look. The \"Sticker\" Effect: Every element must have a thick, distinct White (or Cream) Die-Cut Border surrounding it, separating it from the background. COLOR PALETTE (HIGH CONTRAST): Background: A solid, deep, saturated color to create maximum contrast. Stickers: High-brightness Cream or White fill with Dark (Black or Dark Brown) outlines. COMPOSITION: The stickers are scattered naturally across the sheet (knolling layout) with even spacing. No overlapping."
}
JSON
IM
Image
Product & Brand nano-banana-2

[product], centered top down flat lay, surrounded by [ingred...

[product], centered top down flat lay, surrounded by [ingredients], fresh slices and whole pieces, glossy wet look, water splash frozen mid motion around the product, dewy droplets on label and surface, warm beige seamless background, soft directional sunlight, crisp realistic shadow, high end skincare advertising, ultra realistic macro product photography, 100mm lens look, f/8 sharp focus, clean composition, no extra text, 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], centered top down flat lay, surrounded by [ingredients], fresh slices and whole pieces, glossy wet look, water splash frozen mid motion around the product, dewy droplets on label and surface, warm beige seamless background, soft directional sunlight, crisp realistic shadow, high end skincare advertising, ultra realistic macro product photography, 100mm lens look, f/8 sharp focus, clean composition, no extra text, 8k, 1:1"
}
JSON
IM
Image
Product & Brand nano-banana-2

A high-end editorial photo of a [PRODUCT] placed flat on a [...

A high-end editorial photo of a [PRODUCT] placed flat on a [TEXTURED SURFACE], captured from a direct top-down view. The surface is gently disturbed to suggest recent motion or interaction. The front of the product is fully visible and properly oriented upright. The area around the product is intentionally left open to optionally place [COMPLEMENTARY OBJECTS] that visually enhance the scene. Natural sunlight from the upper left casts warm, realistic shadows. 3D realism, luxury product photography, shallow depth of field, 1:1 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": "A high-end editorial photo of a [PRODUCT] placed flat on a [TEXTURED SURFACE], captured from a direct top-down view. The surface is gently disturbed to suggest recent motion or interaction. The front of the product is fully visible and properly oriented upright. The area around the product is intentionally left open to optionally place [COMPLEMENTARY OBJECTS] that visually enhance the scene. Natural sunlight from the upper left casts warm, realistic shadows. 3D realism, luxury product photography, shallow depth of field, 1:1 format."
}
JSON
IM
Image
Product & Brand nano-banana-2

[PERSON \ BRAND] visualized as the central masterpiece of a...

[PERSON \ BRAND] visualized as the central masterpiece of a surreal avant-garde collage, style of modern mixed media editorial illustration. The subject is composed of high-contrast black and white stippled halftone textures blended with vibrant neo-expressionist elements. Overlay details include bold geometric shapes, cyan and yellow risograph patterns, abstract graffiti scribbles, and digital glitch artifacts. A thick strip of pink or orange tape or a color block obscures part of the form for a deconstructed look. The texture is grainy, mimicking vintage poster paper. The composition is strictly centered with a very wide, clean, off-white cream paper background, ensuring the entire subject is fully contained within the frame with generous negative space on all sides, zero cropping, minimal chic 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": "[PERSON \\ BRAND] visualized as the central masterpiece of a surreal avant-garde collage, style of modern mixed media editorial illustration. The subject is composed of high-contrast black and white stippled halftone textures blended with vibrant neo-expressionist elements. Overlay details include bold geometric shapes, cyan and yellow risograph patterns, abstract graffiti scribbles, and digital glitch artifacts. A thick strip of pink or orange tape or a color block obscures part of the form for a deconstructed look. The texture is grainy, mimicking vintage poster paper. The composition is strictly centered with a very wide, clean, off-white cream paper background, ensuring the entire subject is fully contained within the frame with generous negative space on all sides, zero cropping, minimal chic aesthetic."
}
JSON
IM
Image
Product & Brand nano-banana-2

[BRAND NAME]: Enter the brand name here. Goal: Generate a mi...

[BRAND NAME]: Enter the brand name here. Goal: Generate a minimalist organic image where a stylized logo icon of [BRAND NAME] is transformed into a large moss-textured artifact, with a small brand signature at the bottom. Constraint: NO TEXT inside or immediately near the central moss icon. Only the bottom signature. 1. THE CENTRAL MOSS ICON - Main Subject: A large, geometrically precise symbol, sculpted into the exact form of the [BRAND NAME] logo icon. - Material: The symbol is entirely made of dense, heavily textured, natural green stabilizing moss. The texture is rough and organic with varying shades of green and brown. - Form: The geometric edges are sharp and clean, but filled with the soft, billowy texture of moss. 2. ENVIRONMENT & LAYOUT - View: A top-down, central flat lay view. - Background: A flawless, uniform, matte white studio background. Full minimalist negative space. - Lighting: Bright, soft, diffused studio lighting that emphasizes the tactile moss texture while minimizing harsh shadows. 3. BOTTOM BRAND SIGNATURE (CRITICAL) - Placement: A clean horizontal signature block centered at the bottom, far below the moss icon. - Elements: A tiny, flat, minimalist version of the [BRAND NAME] logo icon on the left. - Text: The word "[BRAND NAME]" in a clean, bold, black sans-serif typeface immediately to the right of the tiny logo. - Scale: The signature must be very small compared to the central moss artifact. 4. AESTHETIC - Biophilic design, premium product photography, clean, fresh, airy, high-end editorial look. 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": "[BRAND NAME]: Enter the brand name here. Goal: Generate a minimalist organic image where a stylized logo icon of [BRAND NAME] is transformed into a large moss-textured artifact, with a small brand signature at the bottom. Constraint: NO TEXT inside or immediately near the central moss icon. Only the bottom signature. 1. THE CENTRAL MOSS ICON - Main Subject: A large, geometrically precise symbol, sculpted into the exact form of the [BRAND NAME] logo icon. - Material: The symbol is entirely made of dense, heavily textured, natural green stabilizing moss. The texture is rough and organic with varying shades of green and brown. - Form: The geometric edges are sharp and clean, but filled with the soft, billowy texture of moss. 2. ENVIRONMENT & LAYOUT - View: A top-down, central flat lay view. - Background: A flawless, uniform, matte white studio background. Full minimalist negative space. - Lighting: Bright, soft, diffused studio lighting that emphasizes the tactile moss texture while minimizing harsh shadows. 3. BOTTOM BRAND SIGNATURE (CRITICAL) - Placement: A clean horizontal signature block centered at the bottom, far below the moss icon. - Elements: A tiny, flat, minimalist version of the [BRAND NAME] logo icon on the left. - Text: The word \"[BRAND NAME]\" in a clean, bold, black sans-serif typeface immediately to the right of the tiny logo. - Scale: The signature must be very small compared to the central moss artifact. 4. AESTHETIC - Biophilic design, premium product photography, clean, fresh, airy, high-end editorial look. 8k resolution."
}
JSON
IM
Image
Product & Brand nano-banana-2

Use the uploaded image as the exact visual reference for jar...

Use the uploaded image as the exact visual reference for jar design, label, strawberries, raspberries, flowers, leaves, condensation droplets, red gradient background, and reflective surface. Camera: Locked front-facing camera. No zoom. No rotation. No angle change. Studio composition remains centered. Style: Premium beauty commercial. Smooth assembling sequence. Ultra realistic. Slow motion but not dramatic. Scene – Start (Empty Setup): Start with an empty red gradient background and glossy reflective surface. No jar. No fruits. No flowers. No water droplets. Assembling Sequence: 1. The glass jar base smoothly slides into frame from below and settles perfectly centered. 2. The lid gently lowers from above and aligns perfectly on the jar. 3. Condensation droplets subtly appear on the glass surface as if forming naturally. 4. Raspberries roll in softly from left and right, stopping naturally around the base. 5. Strawberry halves slide into position at the front. 6. Whole strawberries gently drop from above into the open jar top and settle naturally. 7. Small white flowers softly fall into place between the strawberries. 8. Green leaves slide in behind the jar to frame it. 9. Final micro water droplets appear on fruits for freshness effect. All movements smooth and controlled. No bouncing. No exaggerated motion. No dramatic lighting changes. Lighting: Keep original studio lighting. Deep red background glow remains consistent. Soft reflections on the glossy surface. Sound (if supported): Soft subtle assembling sound design. Gentle fruit placement sounds. Light glass contact sound. No music or very subtle premium ambient tone. End Frame: Fully assembled composition exactly matching the reference image. Everything perfectly arranged. Hold for 1–2 seconds. Ultra clean luxury skincare commercial 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 for jar design, label, strawberries, raspberries, flowers, leaves, condensation droplets, red gradient background, and reflective surface. Camera: Locked front-facing camera. No zoom. No rotation. No angle change. Studio composition remains centered. Style: Premium beauty commercial. Smooth assembling sequence. Ultra realistic. Slow motion but not dramatic. Scene – Start (Empty Setup): Start with an empty red gradient background and glossy reflective surface. No jar. No fruits. No flowers. No water droplets. Assembling Sequence: 1. The glass jar base smoothly slides into frame from below and settles perfectly centered. 2. The lid gently lowers from above and aligns perfectly on the jar. 3. Condensation droplets subtly appear on the glass surface as if forming naturally. 4. Raspberries roll in softly from left and right, stopping naturally around the base. 5. Strawberry halves slide into position at the front. 6. Whole strawberries gently drop from above into the open jar top and settle naturally. 7. Small white flowers softly fall into place between the strawberries. 8. Green leaves slide in behind the jar to frame it. 9. Final micro water droplets appear on fruits for freshness effect. All movements smooth and controlled. No bouncing. No exaggerated motion. No dramatic lighting changes. Lighting: Keep original studio lighting. Deep red background glow remains consistent. Soft reflections on the glossy surface. Sound (if supported): Soft subtle assembling sound design. Gentle fruit placement sounds. Light glass contact sound. No music or very subtle premium ambient tone. End Frame: Fully assembled composition exactly matching the reference image. Everything perfectly arranged. Hold for 1–2 seconds. Ultra clean luxury skincare commercial finish."
}
JSON
IM
Image
Product & Brand nano-banana-2

[product setup], minimalist product photo, clean warm studio...

[product setup], minimalist product photo, clean warm studio scene, textured beige wall background, soft directional sunlight creating long shadows, simple tabletop surface, product arranged in a playful concept composition, hand drawn white line doodle overlay of [character] interacting with the product, mixed media look combining real photography and sketch illustration, high end branding feel, shallow depth of field, ultra realistic, no extra 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": "[product setup], minimalist product photo, clean warm studio scene, textured beige wall background, soft directional sunlight creating long shadows, simple tabletop surface, product arranged in a playful concept composition, hand drawn white line doodle overlay of [character] interacting with the product, mixed media look combining real photography and sketch illustration, high end branding feel, shallow depth of field, ultra realistic, no extra text, no watermark"
}
JSON
IM
Image
Product & Brand nano-banana-2

3×3 storyboard grid, nine panels, same subject and outfit, c...

3×3 storyboard grid, nine panels, same subject and outfit, consistent teal studio background, soft diffused lighting, clean editorial lifestyle photography young East Asian woman, natural makeup, black hair tied back, wearing white fitted top, blue/cream color-block cardigan with red strap, blue jeans, sneakers, pastel blue over-ear wireless headphones panel sequence (left→right, top→bottom): 1 standing adjusting headphones, front view 2 close-up portrait touching earcup 3 side profile sitting on tall stool 4 lying on stomach with cassette tapes + retro player 5 extreme close-up headphones + face detail 6 tilted head smiling portrait 7 low-angle crouch reaching headphones toward camera 8 forced perspective product shot, headphones close to lens 9 lying on back relaxed pose style: minimal, pastel tones, soft shadows, sharp focus, commercial product photography, consistent framing, balanced grid layout, mix of wide/medium/close shots

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": "3×3 storyboard grid, nine panels, same subject and outfit, consistent teal studio background, soft diffused lighting, clean editorial lifestyle photography young East Asian woman, natural makeup, black hair tied back, wearing white fitted top, blue/cream color-block cardigan with red strap, blue jeans, sneakers, pastel blue over-ear wireless headphones panel sequence (left→right, top→bottom): 1 standing adjusting headphones, front view 2 close-up portrait touching earcup 3 side profile sitting on tall stool 4 lying on stomach with cassette tapes + retro player 5 extreme close-up headphones + face detail 6 tilted head smiling portrait 7 low-angle crouch reaching headphones toward camera 8 forced perspective product shot, headphones close to lens 9 lying on back relaxed pose style: minimal, pastel tones, soft shadows, sharp focus, commercial product photography, consistent framing, balanced grid layout, mix of wide/medium/close shots"
}
JSON
IM
Image
Product & Brand nano-banana-2

A product photo in a premium advertising style. Two tall mat...

A product photo in a premium advertising style. Two tall matte bottles of Salton Shoe Deodorant levitate in the air in a dynamic, balanced composition. The bottles are positioned at an angle to each other, creating a striking diagonal composition. One bottle is slightly forward, the other is slightly behind, creating depth and hierarchy. Both bottles are elegantly wrapped with a wide black and brown satin ribbon featuring the repeating "Salton" branding. The lettering is executed in a neat, contrasting font, legible without distortion, and is repeated evenly along the entire length of the ribbon. The ribbon flows smoothly between the bottles, uniting them into a single composition, without obscuring key messages on the packaging or clashing with the main branding on the bottles. Shot from a slightly lower angle, the bottles are slightly tilted, enhancing a sense of confidence, strength, and premium quality. The background is a solid studio color, a deep warm shade (chocolate, dark caramel or soft terracotta), clean and minimalist, without distracting details.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A product photo in a premium advertising style. Two tall matte bottles of Salton Shoe Deodorant levitate in the air in a dynamic, balanced composition. The bottles are positioned at an angle to each other, creating a striking diagonal composition. One bottle is slightly forward, the other is slightly behind, creating depth and hierarchy. Both bottles are elegantly wrapped with a wide black and brown satin ribbon featuring the repeating \"Salton\" branding. The lettering is executed in a neat, contrasting font, legible without distortion, and is repeated evenly along the entire length of the ribbon. The ribbon flows smoothly between the bottles, uniting them into a single composition, without obscuring key messages on the packaging or clashing with the main branding on the bottles. Shot from a slightly lower angle, the bottles are slightly tilted, enhancing a sense of confidence, strength, and premium quality. The background is a solid studio color, a deep warm shade (chocolate, dark caramel or soft terracotta), clean and minimalist, without distracting details."
}
JSON
IM
Image
Product & Brand nano-banana-2

A high-end editorial studio photograph of a (PRODUCT FORM, e...

A high-end editorial studio photograph of a (PRODUCT FORM, e.g. bottle, jar, tube…), made of (MATERIAL, e.g. glass, ceramic, matte plastic…) with a (COLOR) (DETAIL, e.g. cap, texture, label…). The product is placed on a natural, textured (BASE SURFACE, e.g. stone, wood, marble…) slab, itself resting on a round mirror laid on a (SURFACE TONE, e.g. beige, sand, light gray…) surface. Around the mirror and on the slab are scattered droplets of (LIQUID, e.g. serum, oil, gel…) with realistic reflections. A few sprigs of (DECORATIVE NATURAL ELEMENTS, e.g. lavender, eucalyptus, rose petals…) lie gently across the slab and mirror, connecting both surfaces naturally. Strong, warm sunlight filters from the top left, casting soft diagonal leaf shadows to simulate filtered daylight. The aesthetic is (VISUAL STYLE, e.g. minimalist, organic, fresh, premium…), with realistic materials and natural textures highlighted by golden hour tones. Style: 3D realism, luxury product photography, shallow depth of field. Format: 1:1, 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": "A high-end editorial studio photograph of a (PRODUCT FORM, e.g. bottle, jar, tube…), made of (MATERIAL, e.g. glass, ceramic, matte plastic…) with a (COLOR) (DETAIL, e.g. cap, texture, label…). The product is placed on a natural, textured (BASE SURFACE, e.g. stone, wood, marble…) slab, itself resting on a round mirror laid on a (SURFACE TONE, e.g. beige, sand, light gray…) surface. Around the mirror and on the slab are scattered droplets of (LIQUID, e.g. serum, oil, gel…) with realistic reflections. A few sprigs of (DECORATIVE NATURAL ELEMENTS, e.g. lavender, eucalyptus, rose petals…) lie gently across the slab and mirror, connecting both surfaces naturally. Strong, warm sunlight filters from the top left, casting soft diagonal leaf shadows to simulate filtered daylight. The aesthetic is (VISUAL STYLE, e.g. minimalist, organic, fresh, premium…), with realistic materials and natural textures highlighted by golden hour tones. Style: 3D realism, luxury product photography, shallow depth of field. Format: 1:1, ultra-detailed."
}
JSON
IM
Image
Product & Brand nano-banana-2

[BRAND NAME]. Act as a Creative Director and Still Life Phot...

[BRAND NAME]. Act as a Creative Director and Still Life Photographer for a hypebeast fashion publication. THE TASK: Create a high-end "Showroom Still Life" photograph announcing a limited merchandise drop for [BRAND NAME]. PHASE 1: AUTONOMOUS CURATION (STRATEGY) Analyze [BRAND NAME]: Identify the industry and the core physical product (e.g., if "Spalding" -> Basketballs; if "McDonald's" -> Burger Boxes; if "Visa" -> Metal Cards). Determine the Palette: Background Color: A deep, rich, textured tone derived from the brand's secondary palette (e.g., Teal, Navy, Burgundy, Slate Grey). Merch Color: A contrasting warm or neutral tone (Camel, Orange, Cream) to pop against the background. Select the "Merch Item": Choose a high-quality apparel piece relevant to the brand's vibe (e.g., a Varsity Letterman Jacket, a Heavyweight Hoodie, a Canvas Tote, or a Wool Scarf). PHASE 2: SET DESIGN (THE RACK) The Prop: A simple, modern White Powder-Coated Metal Rack or Shelf unit. It stands cleanly in the frame. The Arrangement: Hanging Item: The chosen "Merch Item" (e.g., the Jacket) is draped casually over the rack or hanging on a hanger, showing off the texture (wool/felt). Stacked Items: On the shelves of the rack, stack multiple units of the brand's Core Product (e.g., a stack of basketballs, a pyramid of cans, a row of boxes). The Background: A Hand-Painted Canvas Backdrop in the chosen Deep Background Color. Visible texture/brushstrokes are essential for that "studio" look. PHASE 3: PHYSICAL BRANDING (TEXTURE) On the Merch: The hanging apparel must feature High-Quality Physical Branding. Use "Chenille Patches", "Embroidered Logos", or "Screen Print" running down the sleeve or on the back. It must look like a real, expensive garment. On the Products: Ensure the stacked core products have the correct [BRAND NAME] logo visible. PHASE 4: PHOTOGRAPHY & LIGHTING Lighting: Soft, directional window light from the side. Creates realistic, soft shadows on the rack and rich highlights on the textures. Lens: 50mm or 85mm. Sharp focus on the merch, slight fall-off in the background. PHASE 5: UI OVERLAY (THE "DROP" LAYOUT) Left Side Alignment: Large, clean White Logo of [BRAND NAME] floating in the negative space on the left. Under the logo, small white text with the brand's official slogan.

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": "[BRAND NAME]. Act as a Creative Director and Still Life Photographer for a hypebeast fashion publication. THE TASK: Create a high-end \"Showroom Still Life\" photograph announcing a limited merchandise drop for [BRAND NAME]. PHASE 1: AUTONOMOUS CURATION (STRATEGY) Analyze [BRAND NAME]: Identify the industry and the core physical product (e.g., if \"Spalding\" -> Basketballs; if \"McDonald's\" -> Burger Boxes; if \"Visa\" -> Metal Cards). Determine the Palette: Background Color: A deep, rich, textured tone derived from the brand's secondary palette (e.g., Teal, Navy, Burgundy, Slate Grey). Merch Color: A contrasting warm or neutral tone (Camel, Orange, Cream) to pop against the background. Select the \"Merch Item\": Choose a high-quality apparel piece relevant to the brand's vibe (e.g., a Varsity Letterman Jacket, a Heavyweight Hoodie, a Canvas Tote, or a Wool Scarf). PHASE 2: SET DESIGN (THE RACK) The Prop: A simple, modern White Powder-Coated Metal Rack or Shelf unit. It stands cleanly in the frame. The Arrangement: Hanging Item: The chosen \"Merch Item\" (e.g., the Jacket) is draped casually over the rack or hanging on a hanger, showing off the texture (wool/felt). Stacked Items: On the shelves of the rack, stack multiple units of the brand's Core Product (e.g., a stack of basketballs, a pyramid of cans, a row of boxes). The Background: A Hand-Painted Canvas Backdrop in the chosen Deep Background Color. Visible texture/brushstrokes are essential for that \"studio\" look. PHASE 3: PHYSICAL BRANDING (TEXTURE) On the Merch: The hanging apparel must feature High-Quality Physical Branding. Use \"Chenille Patches\", \"Embroidered Logos\", or \"Screen Print\" running down the sleeve or on the back. It must look like a real, expensive garment. On the Products: Ensure the stacked core products have the correct [BRAND NAME] logo visible. PHASE 4: PHOTOGRAPHY & LIGHTING Lighting: Soft, directional window light from the side. Creates realistic, soft shadows on the rack and rich highlights on the textures. Lens: 50mm or 85mm. Sharp focus on the merch, slight fall-off in the background. PHASE 5: UI OVERLAY (THE \"DROP\" LAYOUT) Left Side Alignment: Large, clean White Logo of [BRAND NAME] floating in the negative space on the left. Under the logo, small white text with the brand's official slogan."
}
JSON
IM
Image
Product & Brand nano-banana-2

Premium minimalist skincare product photography. A transluce...

Premium minimalist skincare product photography. A translucent pink liquid cleanser bottle with a white pump dispenser placed vertically at the center of the frame. The bottle rests inside an organic pool of soft pink foamy bubbles, with airy soap lather spreading outward in smooth, rounded shapes. Small transparent bubbles float around the foam surface. Clean matte pastel pink background with subtle gradient. Soft diffused top lighting with gentle rim light creates a luminous glow through the liquid, highlighting the pump tube inside the bottle. Sharp focus, high clarity, realistic liquid refraction, smooth plastic and glass textures, luxury beauty advertising style, modern cosmetic branding, ultra-realistic, 8K detail, high dynamic range. Negative Prompt: hands, people, faces, clutter, harsh reflections, label distortion, unreadable text, warped pump, hard shadows, grain, noise, low resolution, CGI look, cartoon style, messy foam, uneven lighting, 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": "Premium minimalist skincare product photography. A translucent pink liquid cleanser bottle with a white pump dispenser placed vertically at the center of the frame. The bottle rests inside an organic pool of soft pink foamy bubbles, with airy soap lather spreading outward in smooth, rounded shapes. Small transparent bubbles float around the foam surface. Clean matte pastel pink background with subtle gradient. Soft diffused top lighting with gentle rim light creates a luminous glow through the liquid, highlighting the pump tube inside the bottle. Sharp focus, high clarity, realistic liquid refraction, smooth plastic and glass textures, luxury beauty advertising style, modern cosmetic branding, ultra-realistic, 8K detail, high dynamic range. Negative Prompt: hands, people, faces, clutter, harsh reflections, label distortion, unreadable text, warped pump, hard shadows, grain, noise, low resolution, CGI look, cartoon style, messy foam, uneven lighting, watermark"
}
JSON
IM
Image
Product & Brand nano-banana-2

[BRAND NAME]. Act as a fashion photographer and creative dir...

[BRAND NAME]. Act as a fashion photographer and creative director shooting a high-end editorial lookbook for a bespoke football jersey designed by this brand. THE SUBJECT & COMPOSITION (FLOATING & ANGLED): A single, premium custom football jersey is floating suspended in mid-air, centered in the frame. There is no hanger visible. Crucial Angle: The jersey is NOT presented flatly frontal. It is rotated slightly (approximately 15 degrees angled view) to show depth, form, and a dynamic profile. Despite floating, the fabric must show realistic weight, deep gravity-defying folds, creases, and natural wrinkles. It must feel like a real, heavy garment frozen in time, not a stiff 3D model. BRANDED DESIGN & AESTHETICS: The jersey's design is a sophisticated interpretation of [BRAND NAME]'s visual identity. Branding Placement: The official [BRAND NAME] logo is authentically applied as the main club crest on the chest (e.g., embroidered patch or high-quality heat transfer). MATERIALITY & TEXTURE (CRITICAL): The focus remains on luxurious, tactile textures. Fabric: A heavyweight, retro-inspired athletic cotton-blend or technical knit with a visible, coarse weave structure. ENVIRONMENT & BACKGROUND (WHITE STUDIO): The jersey floats within an abstract, infinite white photo studio cyclorama space. The background is completely seamless, pure, clean white, and minimalist, with absolutely zero distractions, placing total focus on the suspended garment. LIGHTING & PHOTOGRAPHY STYLE: Style: Hyper-realistic editorial fashion photography. Clean, high-key aesthetic. Lighting: sophisticated studio lighting. Soft, diffused light that sculpts the folds of the fabric and highlights the texture against the pure white background. Subtle soft shadows might be cast on the jersey itself to define its form in the white space.

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": "[BRAND NAME]. Act as a fashion photographer and creative director shooting a high-end editorial lookbook for a bespoke football jersey designed by this brand. THE SUBJECT & COMPOSITION (FLOATING & ANGLED): A single, premium custom football jersey is floating suspended in mid-air, centered in the frame. There is no hanger visible. Crucial Angle: The jersey is NOT presented flatly frontal. It is rotated slightly (approximately 15 degrees angled view) to show depth, form, and a dynamic profile. Despite floating, the fabric must show realistic weight, deep gravity-defying folds, creases, and natural wrinkles. It must feel like a real, heavy garment frozen in time, not a stiff 3D model. BRANDED DESIGN & AESTHETICS: The jersey's design is a sophisticated interpretation of [BRAND NAME]'s visual identity. Branding Placement: The official [BRAND NAME] logo is authentically applied as the main club crest on the chest (e.g., embroidered patch or high-quality heat transfer). MATERIALITY & TEXTURE (CRITICAL): The focus remains on luxurious, tactile textures. Fabric: A heavyweight, retro-inspired athletic cotton-blend or technical knit with a visible, coarse weave structure. ENVIRONMENT & BACKGROUND (WHITE STUDIO): The jersey floats within an abstract, infinite white photo studio cyclorama space. The background is completely seamless, pure, clean white, and minimalist, with absolutely zero distractions, placing total focus on the suspended garment. LIGHTING & PHOTOGRAPHY STYLE: Style: Hyper-realistic editorial fashion photography. Clean, high-key aesthetic. Lighting: sophisticated studio lighting. Soft, diffused light that sculpts the folds of the fabric and highlights the texture against the pure white background. Subtle soft shadows might be cast on the jersey itself to define its form in the white space."
}
JSON
IM
Image
Product & Brand nano-banana-2

A high-quality professional product photography of a creativ...

A high-quality professional product photography of a creative structural packaging design for [Fruit Name]. The packaging is made of premium corrugated cardboard, intricately crafted into the literal shape of a giant stylized [Shape e.g. spherical, curved, elongated] [Fruit Name]. The exterior surface features a vibrant and sophisticated printed pattern of minimalist [Pattern Description e.g. geometric hexagons, organic wavy lines, dotted stippling, botanical line-art, or horizontal ridges], mimicking the Natural Skin of the Fruit in a duo-tone palette of [Color 1] and [Color 2]. Features clever die-cut windows that reveal the actual [Actual Product Inside] stored inside. Minimalist modern typography on the side saying "[NAME]". Includes eco-friendly details like a small recycling logo and a [3D Corrugated Cardboard Detail: Stem/green Leaf/Crown] on top. Soft studio lighting with gentle shadows, placed on a clean solid pastel [Background Color] background. 8k resolution, photorealistic, cinematic composition, industrial design 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 high-quality professional product photography of a creative structural packaging design for [Fruit Name]. The packaging is made of premium corrugated cardboard, intricately crafted into the literal shape of a giant stylized [Shape e.g. spherical, curved, elongated] [Fruit Name]. The exterior surface features a vibrant and sophisticated printed pattern of minimalist [Pattern Description e.g. geometric hexagons, organic wavy lines, dotted stippling, botanical line-art, or horizontal ridges], mimicking the Natural Skin of the Fruit in a duo-tone palette of [Color 1] and [Color 2]. Features clever die-cut windows that reveal the actual [Actual Product Inside] stored inside. Minimalist modern typography on the side saying \"[NAME]\". Includes eco-friendly details like a small recycling logo and a [3D Corrugated Cardboard Detail: Stem/green Leaf/Crown] on top. Soft studio lighting with gentle shadows, placed on a clean solid pastel [Background Color] background. 8k resolution, photorealistic, cinematic composition, industrial design aesthetic."
}
JSON
IM
Image
Product & Brand nano-banana-2

{ "subject": { "person": "Woman, appears to be in her...

{ "subject": { "person": "Woman, appears to be in her 20s or 30s", "pose_and_expression": [ "Standing by window, looking out, relaxed", "Reaching for bottle on counter, hand focus", "Looking in mirror, slight smile", "Hand dispensing serum from bottle, close-up", "Serum drop on fingertip, macro shot", "Applying serum to face, eyes closed, serene", "Face close-up, eyes closed, content", "Bottle and orchid on counter, still life", "Walking away from camera, standing by window" ] }, "clothing": { "items": "White robe, white pajamas/loungewear", "material": "Soft, flowing fabric", "style": "Casual, luxurious" }, "hair": { "color": "Dark brown", "style": "Pulled back, neat bun or ponytail" }, "face": { "makeup": "Natural, minimal", "skin": "Clear, glowing", "expression": "Calm, serene, content" }, "accessories": { "jewelry": "Simple ring on ring finger", "props": [ "Glass skincare bottle with gold pump dispenser", "Product label: 'Promptopia'", "White orchid in a small white vase" ] }, "environment": { "location": "Modern, luxurious bathroom", "elements": [ "Large floor-to-ceiling windows", "Marble countertop and walls", "Round mirror", "View of trees/garden outside", "Fog or mist outside window" ], "atmosphere": "Serene, spa-like, tranquil" }, "lighting": { "source": "Natural daylight", "quality": "Warm, golden, soft, diffused", "time_of_day": "Sunrise or golden hour" }, "camera": { "type": "Photography collage", "shots": [ "Wide shot", "Medium shot", "Close-up", "Macro shot" ], "focus": "Sharp on subject and product, soft background blur (bokeh)" }, "style": { "aesthetic": "Cinematic, editorial, beauty, wellness, clean, minimalist", "color_palette": "Warm neutrals, white, gold, natural greens" } }

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": "{ \"subject\": { \"person\": \"Woman, appears to be in her 20s or 30s\", \"pose_and_expression\": [ \"Standing by window, looking out, relaxed\", \"Reaching for bottle on counter, hand focus\", \"Looking in mirror, slight smile\", \"Hand dispensing serum from bottle, close-up\", \"Serum drop on fingertip, macro shot\", \"Applying serum to face, eyes closed, serene\", \"Face close-up, eyes closed, content\", \"Bottle and orchid on counter, still life\", \"Walking away from camera, standing by window\" ] }, \"clothing\": { \"items\": \"White robe, white pajamas/loungewear\", \"material\": \"Soft, flowing fabric\", \"style\": \"Casual, luxurious\" }, \"hair\": { \"color\": \"Dark brown\", \"style\": \"Pulled back, neat bun or ponytail\" }, \"face\": { \"makeup\": \"Natural, minimal\", \"skin\": \"Clear, glowing\", \"expression\": \"Calm, serene, content\" }, \"accessories\": { \"jewelry\": \"Simple ring on ring finger\", \"props\": [ \"Glass skincare bottle with gold pump dispenser\", \"Product label: 'Promptopia'\", \"White orchid in a small white vase\" ] }, \"environment\": { \"location\": \"Modern, luxurious bathroom\", \"elements\": [ \"Large floor-to-ceiling windows\", \"Marble countertop and walls\", \"Round mirror\", \"View of trees/garden outside\", \"Fog or mist outside window\" ], \"atmosphere\": \"Serene, spa-like, tranquil\" }, \"lighting\": { \"source\": \"Natural daylight\", \"quality\": \"Warm, golden, soft, diffused\", \"time_of_day\": \"Sunrise or golden hour\" }, \"camera\": { \"type\": \"Photography collage\", \"shots\": [ \"Wide shot\", \"Medium shot\", \"Close-up\", \"Macro shot\" ], \"focus\": \"Sharp on subject and product, soft background blur (bokeh)\" }, \"style\": { \"aesthetic\": \"Cinematic, editorial, beauty, wellness, clean, minimalist\", \"color_palette\": \"Warm neutrals, white, gold, natural greens\" } }"
}
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.