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 rugged, matte-black chronograph watch with bold orange acc...

A rugged, matte-black chronograph watch with bold orange accents is tightly framed between two textured rock formations, creating a natural vignette that directs all focus toward the dial; the scene opens with an ultra-close macro perspective, the camera slowly sliding laterally through the narrow rocky gap, maintaining an intimate, compressed field of view with no zoom-out, as if discovering the watch hidden within a harsh alpine environment. Cold mountain air subtly moves fine dust particles and faint mist across the frame, catching soft, diffused daylight that spills in from above, while a warm, low-angle sunlight grazes the rocks and reflects gently onto the watch face, creating a striking contrast between cool shadows and warm highlights. The camera continues a controlled micro-orbit around the watch at close range, allowing specular highlights to travel across the brushed metal bezel, engraved screws, and slightly textured rubber strap, emphasizing durability and premium craftsmanship. The orange indices and hands glow subtly as light shifts across the sapphire crystal, revealing crisp reflections and slight curvature distortions. In the blurred background, towering mountain peaks remain softly out of focus, adding depth without distraction, while tiny vibrations in the environment cause minuscule pebble shifts near the base, reinforcing realism. As the shot progresses, a faint breeze brushes across the strap, introducing barely perceptible movement, while light intensity fluctuates naturally as if clouds are passing overhead. The sequence ends in a locked, ultra-tight hero composition, perfectly centered within the rock frame, with high contrast, razor-sharp detail on the dial, and a cinematic interplay of shadow, texture, and controlled highlights that reinforce a premium, adventure-driven identity.

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 rugged, matte-black chronograph watch with bold orange accents is tightly framed between two textured rock formations, creating a natural vignette that directs all focus toward the dial; the scene opens with an ultra-close macro perspective, the camera slowly sliding laterally through the narrow rocky gap, maintaining an intimate, compressed field of view with no zoom-out, as if discovering the watch hidden within a harsh alpine environment. Cold mountain air subtly moves fine dust particles and faint mist across the frame, catching soft, diffused daylight that spills in from above, while a warm, low-angle sunlight grazes the rocks and reflects gently onto the watch face, creating a striking contrast between cool shadows and warm highlights. The camera continues a controlled micro-orbit around the watch at close range, allowing specular highlights to travel across the brushed metal bezel, engraved screws, and slightly textured rubber strap, emphasizing durability and premium craftsmanship. The orange indices and hands glow subtly as light shifts across the sapphire crystal, revealing crisp reflections and slight curvature distortions. In the blurred background, towering mountain peaks remain softly out of focus, adding depth without distraction, while tiny vibrations in the environment cause minuscule pebble shifts near the base, reinforcing realism. As the shot progresses, a faint breeze brushes across the strap, introducing barely perceptible movement, while light intensity fluctuates naturally as if clouds are passing overhead. The sequence ends in a locked, ultra-tight hero composition, perfectly centered within the rock frame, with high contrast, razor-sharp detail on the dial, and a cinematic interplay of shadow, texture, and controlled highlights that reinforce a premium, adventure-driven identity."
}
JSON
IM
Image
Product & Brand nano-banana-2

[Louis Vuitton]. Act as a World-Class Footwear Designer and...

[Louis Vuitton]. Act as a World-Class Footwear Designer and Product Photographer creating a high-end "Crocs Collaboration" campaign image. 1. THE SUBJECT (CUSTOMIZED CROCS CLOG): Generate a photorealistic, high-end customized Crocs Classic Clog inspired by the visual identity of [BRAND NAME]. View: The shoe is positioned in a Strict Side Profile View (facing right), exactly like a product profile shot. It must look grounded and substantial. Color Blocking: Apply [BRAND NAME]'s official color palette intelligently: Body: The main foam upper is the brand's Primary Color. Sole/Strap: Use the Secondary/Accent colors for the thick rubber sole unit and the heel strap to create contrast. Custom Jibbitz (Charms): The shoe is decorated with 3-4 high-quality 3D Jibbitz charms plugged into the ventilation holes. These charms must be iconic symbols or products associated with [BRAND NAME] (e.g., if "Starbucks" -> a tiny frappuccino cup and logo; if "Nike" -> a 3D swoosh). 2. THE BACKGROUND (): The background is a Pure White Studio Space (#FFFFFF). 3. LIGHTING & MATERIALITY (EDITORIAL QUALITY): Lighting: Ultra-realistic High-Key Studio Lighting. Use a large softbox from the top-left to create smooth, glossy highlights on the rubber curves of the Crocs. The lighting is bright, neutral, and expensive. Texture: The material must look like real Croslite foam resin—matte with subtle specular highlights on the edges. The Jibbitz charms should look like hard glossy plastic or rubber. Shadows: A sharp, realistic contact shadow under the shoe to ground it on the white floor. 4. BRANDING & LAYOUT (UI ELEMENTS): Bottom Left Corner: Place a small, discrete, Monochrome Light Grey Logo of [BRAND NAME]. Bottom Right Corner: Place a small, discrete, Monochrome Light Grey "Crocs" Logo. TECH SPECS: Macro product photography, Phase One camera, 100mm lens, razor-sharp focus, 8k resolution, uncompressed, commercial 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": "[Louis Vuitton]. Act as a World-Class Footwear Designer and Product Photographer creating a high-end \"Crocs Collaboration\" campaign image. 1. THE SUBJECT (CUSTOMIZED CROCS CLOG): Generate a photorealistic, high-end customized Crocs Classic Clog inspired by the visual identity of [BRAND NAME]. View: The shoe is positioned in a Strict Side Profile View (facing right), exactly like a product profile shot. It must look grounded and substantial. Color Blocking: Apply [BRAND NAME]'s official color palette intelligently: Body: The main foam upper is the brand's Primary Color. Sole/Strap: Use the Secondary/Accent colors for the thick rubber sole unit and the heel strap to create contrast. Custom Jibbitz (Charms): The shoe is decorated with 3-4 high-quality 3D Jibbitz charms plugged into the ventilation holes. These charms must be iconic symbols or products associated with [BRAND NAME] (e.g., if \"Starbucks\" -> a tiny frappuccino cup and logo; if \"Nike\" -> a 3D swoosh). 2. THE BACKGROUND (): The background is a Pure White Studio Space (#FFFFFF). 3. LIGHTING & MATERIALITY (EDITORIAL QUALITY): Lighting: Ultra-realistic High-Key Studio Lighting. Use a large softbox from the top-left to create smooth, glossy highlights on the rubber curves of the Crocs. The lighting is bright, neutral, and expensive. Texture: The material must look like real Croslite foam resin—matte with subtle specular highlights on the edges. The Jibbitz charms should look like hard glossy plastic or rubber. Shadows: A sharp, realistic contact shadow under the shoe to ground it on the white floor. 4. BRANDING & LAYOUT (UI ELEMENTS): Bottom Left Corner: Place a small, discrete, Monochrome Light Grey Logo of [BRAND NAME]. Bottom Right Corner: Place a small, discrete, Monochrome Light Grey \"Crocs\" Logo. TECH SPECS: Macro product photography, Phase One camera, 100mm lens, razor-sharp focus, 8k resolution, uncompressed, commercial look."
}
JSON
IM
Image
Product & Brand nano-banana-2

A clean 3×3 storyboard grid with nine equal-sized panels and...

A clean 3×3 storyboard grid with nine equal-sized panels and an overall 4:5 aspect 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 (The Icon): Center-composed hero shot of the red tea tin on an antique dark walnut table, bathed in warm, golden afternoon sun. FRAME 2 (The Tactile): Extreme close-up on the glossy red metal surface showing the embossed gold floral texture catching the light. FRAME 3 (The Environment): The canister placed on a wooden shelf in a blurred traditional Chinese study with calligraphy brushes in the background. FRAME 4 (The Interaction): An elegant hand pouring dry tea leaves near the base of the tin, emphasizing the ritual. FRAME 5 (The Matrix): An isometric grid of multiple red tins arranged on a wooden surface, creating a pattern of red and gold. FRAME 6 (The Gravity): The red canister floating gently above a wooden tray, surrounded by drifting dried tea leaves. FRAME 7 (The Signature): Macro detail focusing strictly on the black Chinese calligraphy "Wu Yu Tai" against the gold background. FRAME 8 (The Statement): Artistic high-contrast shot using shadows of window lattice (geometric patterns) cast across the red tin. FRAME 9 (The Horizon): Wide cinematic shot of the tin placed on a low table in a grand, dimly lit traditional courtyard at dusk. 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": "A clean 3×3 storyboard grid with nine equal-sized panels and an overall 4:5 aspect 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 (The Icon): Center-composed hero shot of the red tea tin on an antique dark walnut table, bathed in warm, golden afternoon sun. FRAME 2 (The Tactile): Extreme close-up on the glossy red metal surface showing the embossed gold floral texture catching the light. FRAME 3 (The Environment): The canister placed on a wooden shelf in a blurred traditional Chinese study with calligraphy brushes in the background. FRAME 4 (The Interaction): An elegant hand pouring dry tea leaves near the base of the tin, emphasizing the ritual. FRAME 5 (The Matrix): An isometric grid of multiple red tins arranged on a wooden surface, creating a pattern of red and gold. FRAME 6 (The Gravity): The red canister floating gently above a wooden tray, surrounded by drifting dried tea leaves. FRAME 7 (The Signature): Macro detail focusing strictly on the black Chinese calligraphy \"Wu Yu Tai\" against the gold background. FRAME 8 (The Statement): Artistic high-contrast shot using shadows of window lattice (geometric patterns) cast across the red tin. FRAME 9 (The Horizon): Wide cinematic shot of the tin placed on a low table in a grand, dimly lit traditional courtyard at dusk. 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

A stylish young man with medium-length wavy dark hair and a...

A stylish young man with medium-length wavy dark hair and a clean face, wearing a muted olive green button-up shirt with sleeves slightly rolled up, paired with loose fit black straight pants and white sneakers. The outfit looks minimal, modern, and aesthetic. Create a fashion collage layout with 5 sections: Center: a clean cutout of the outfit (olive shirt + black pants) placed vertically, slightly floating, with a soft white outline glow around it. Around the center: four different lifestyle shots of the same man wearing the outfit. Top left: indoor mirror selfie in a modern lobby with marble walls and shiny floor, holding phone covering face, relaxed walking pose. Top right: outdoor greenery setting with plants and trees, walking pose with hands in pockets, looking sideways. Bottom left: sitting pose on a bench or ledge, slightly leaning forward, one hand in hair, moody lighting. Bottom right: urban street or stairs background with concrete textures, walking casually with hands in pockets. Add minimal white curved arrows pointing from each lifestyle image toward the center outfit. Lighting: soft natural light, slightly warm tone, cinematic shadows, Instagram aesthetic. Color palette: neutral tones, olive green, black, white, soft greys. Style: clean, minimal, high-end fashion lookbook, Pinterest / Instagram aesthetic. Camera: 35mm lens, shallow depth of field, sharp subject focus. Quality: ultra realistic, high resolution, 4K, detailed fabric texture.

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 stylish young man with medium-length wavy dark hair and a clean face, wearing a muted olive green button-up shirt with sleeves slightly rolled up, paired with loose fit black straight pants and white sneakers. The outfit looks minimal, modern, and aesthetic. Create a fashion collage layout with 5 sections: Center: a clean cutout of the outfit (olive shirt + black pants) placed vertically, slightly floating, with a soft white outline glow around it. Around the center: four different lifestyle shots of the same man wearing the outfit. Top left: indoor mirror selfie in a modern lobby with marble walls and shiny floor, holding phone covering face, relaxed walking pose. Top right: outdoor greenery setting with plants and trees, walking pose with hands in pockets, looking sideways. Bottom left: sitting pose on a bench or ledge, slightly leaning forward, one hand in hair, moody lighting. Bottom right: urban street or stairs background with concrete textures, walking casually with hands in pockets. Add minimal white curved arrows pointing from each lifestyle image toward the center outfit. Lighting: soft natural light, slightly warm tone, cinematic shadows, Instagram aesthetic. Color palette: neutral tones, olive green, black, white, soft greys. Style: clean, minimal, high-end fashion lookbook, Pinterest / Instagram aesthetic. Camera: 35mm lens, shallow depth of field, sharp subject focus. Quality: ultra realistic, high resolution, 4K, detailed fabric texture."
}
JSON
IM
Image
Product & Brand nano-banana-2

Ultra-realistic luxury skincare product photography featurin...

Ultra-realistic luxury skincare product photography featuring a glass cosmetic jar labeled “ONE POSE” placed at the center of a glossy reflective surface. The jar contains a vibrant strawberry-pink cream with a soft gradient fading into a frosted white lid, and a smooth swirl of creamy pink product melting over the top and dripping down the sides of the jar like glossy dessert glaze. Surrounding the product are fresh ripe strawberries and halved strawberries with visible seeds and juicy texture, arranged naturally around the base. Soft scoops of strawberry ice cream sit beside the fruit, slightly melting and blending into a glossy pink cream puddle that spreads across the surface. The background is a soft pastel pink studio gradient that enhances the strawberry tones. Premium studio lighting from above and the side creates crisp reflections on the glass jar, soft highlights on the melting cream and ice cream texture, and gentle shadows beneath the product. The composition feels indulgent and dessert-inspired while maintaining a clean luxury cosmetic advertising aesthetic, hyper-realistic textures, shallow depth of field, cinematic lighting, ultra-detailed 8K product 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": "Ultra-realistic luxury skincare product photography featuring a glass cosmetic jar labeled “ONE POSE” placed at the center of a glossy reflective surface. The jar contains a vibrant strawberry-pink cream with a soft gradient fading into a frosted white lid, and a smooth swirl of creamy pink product melting over the top and dripping down the sides of the jar like glossy dessert glaze. Surrounding the product are fresh ripe strawberries and halved strawberries with visible seeds and juicy texture, arranged naturally around the base. Soft scoops of strawberry ice cream sit beside the fruit, slightly melting and blending into a glossy pink cream puddle that spreads across the surface. The background is a soft pastel pink studio gradient that enhances the strawberry tones. Premium studio lighting from above and the side creates crisp reflections on the glass jar, soft highlights on the melting cream and ice cream texture, and gentle shadows beneath the product. The composition feels indulgent and dessert-inspired while maintaining a clean luxury cosmetic advertising aesthetic, hyper-realistic textures, shallow depth of field, cinematic lighting, ultra-detailed 8K product photography."
}
JSON
IM
Image
Product & Brand nano-banana-2

Ultra-realistic gaming mouse floating above a desk, surround...

Ultra-realistic gaming mouse floating above a desk, surrounded by glowing golden energy rings and flying electronic components, dramatic cinematic lighting, futuristic tech aesthetic, detailed mousepad and cables on wooden desk, sparks and particles in the air, high-speed motion effect, premium product advertising, hyper-detailed textures, depth of field, 8K, studio lighting.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic gaming mouse floating above a desk, surrounded by glowing golden energy rings and flying electronic components, dramatic cinematic lighting, futuristic tech aesthetic, detailed mousepad and cables on wooden desk, sparks and particles in the air, high-speed motion effect, premium product advertising, hyper-detailed textures, depth of field, 8K, studio lighting."
}
JSON
IM
Image
Product & Brand nano-banana-2

{ "style": "cinematic, symbolic, minimal, realistic", "a...

{ "style": "cinematic, symbolic, minimal, realistic", "aspect_ratio": "9:16", "scenes": [ { "scene_number": 1, "description": "A quiet outdoor setting with a clean surface under soft natural light. Two identical toffees are placed side by side.", "camera": "slow zoom-in", "mood": "calm, neutral" }, { "scene_number": 2, "description": "One toffee is neatly wrapped in shiny paper. The other toffee is unwrapped, fully exposed.", "camera": "static close-up", "mood": "contrast, anticipation" }, { "scene_number": 3, "description": "Ants begin to appear and slowly crawl toward the unwrapped toffee, completely ignoring the wrapped one.", "camera": "macro shot, slow motion", "mood": "uneasy, revealing" }, { "scene_number": 4, "description": "More ants gather around the unwrapped toffee, covering it, while the wrapped toffee remains untouched and protected.", "camera": "top-down shot", "mood": "warning, realization" }, { "scene_number": 5, "description": "Text fades in on screen as the ants swarm the unwrapped toffee.", "text_overlay": "When you are too open, you can be used.", "camera": "gentle fade", "mood": "reflective" }, { "scene_number": 6, "description": "Final frame focuses on the wrapped toffee standing alone, clean and intact.", "text_overlay": "Boundaries protect your value.", "camera": "slow zoom-out", "mood": "empowering, calm" } ], "audio": { "background_music": "soft ambient piano", "sound_effects": "subtle nature ambience" } }

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": "{ \"style\": \"cinematic, symbolic, minimal, realistic\", \"aspect_ratio\": \"9:16\", \"scenes\": [ { \"scene_number\": 1, \"description\": \"A quiet outdoor setting with a clean surface under soft natural light. Two identical toffees are placed side by side.\", \"camera\": \"slow zoom-in\", \"mood\": \"calm, neutral\" }, { \"scene_number\": 2, \"description\": \"One toffee is neatly wrapped in shiny paper. The other toffee is unwrapped, fully exposed.\", \"camera\": \"static close-up\", \"mood\": \"contrast, anticipation\" }, { \"scene_number\": 3, \"description\": \"Ants begin to appear and slowly crawl toward the unwrapped toffee, completely ignoring the wrapped one.\", \"camera\": \"macro shot, slow motion\", \"mood\": \"uneasy, revealing\" }, { \"scene_number\": 4, \"description\": \"More ants gather around the unwrapped toffee, covering it, while the wrapped toffee remains untouched and protected.\", \"camera\": \"top-down shot\", \"mood\": \"warning, realization\" }, { \"scene_number\": 5, \"description\": \"Text fades in on screen as the ants swarm the unwrapped toffee.\", \"text_overlay\": \"When you are too open, you can be used.\", \"camera\": \"gentle fade\", \"mood\": \"reflective\" }, { \"scene_number\": 6, \"description\": \"Final frame focuses on the wrapped toffee standing alone, clean and intact.\", \"text_overlay\": \"Boundaries protect your value.\", \"camera\": \"slow zoom-out\", \"mood\": \"empowering, calm\" } ], \"audio\": { \"background_music\": \"soft ambient piano\", \"sound_effects\": \"subtle nature ambience\" } }"
}
JSON
IM
Image
Product & Brand nano-banana-2

为高端商业营销活动创建3×3网格,3:4纵横比,以上传产品为中心主体。 每帧呈现独特视觉概念,同时保持九张图像中产品的...

为高端商业营销活动创建3×3网格,3:4纵横比,以上传产品为中心主体。 每帧呈现独特视觉概念,同时保持九张图像中产品的完美一致性。 网格概念(每格一个): 1. 标志性英雄静物画,构图大胆 2. 极端微距细节,突显材质与纹理 3. 动感液体或粒子与产品互动 4. 极简雕塑排列,抽象形态 5. 浮动元素,暗示轻盈与创新 6. 感官特写,强调触感与真实感 7. 色彩驱动概念场景,灵感源自产品调色板 8. 成分或组件抽象化(非字面意思,象征性) 9. 超现实优雅融合,结合写实与想象 视觉规则: 产品形状、比例、标签、字体、色彩、品牌必须100%准确 无扭曲、变形或重新设计 产品与背景清晰分离 灯光与风格: 柔和可控的摄影棚灯光 细微高光,真实阴影 高动态范围,超锐焦点 编辑奢侈广告美学 高端感官营销外观 总体感觉: 现代、精致、视觉连贯 高端商业活动 适用于品牌网站、社交网格及数字广告牌 超现实、电影感、精致、志在高远

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网格,3:4纵横比,以上传产品为中心主体。 每帧呈现独特视觉概念,同时保持九张图像中产品的完美一致性。 网格概念(每格一个): 1. 标志性英雄静物画,构图大胆 2. 极端微距细节,突显材质与纹理 3. 动感液体或粒子与产品互动 4. 极简雕塑排列,抽象形态 5. 浮动元素,暗示轻盈与创新 6. 感官特写,强调触感与真实感 7. 色彩驱动概念场景,灵感源自产品调色板 8. 成分或组件抽象化(非字面意思,象征性) 9. 超现实优雅融合,结合写实与想象 视觉规则: 产品形状、比例、标签、字体、色彩、品牌必须100%准确 无扭曲、变形或重新设计 产品与背景清晰分离 灯光与风格: 柔和可控的摄影棚灯光 细微高光,真实阴影 高动态范围,超锐焦点 编辑奢侈广告美学 高端感官营销外观 总体感觉: 现代、精致、视觉连贯 高端商业活动 适用于品牌网站、社交网格及数字广告牌 超现实、电影感、精致、志在高远"
}
JSON
IM
Image
Product & Brand nano-banana-2

Ultra-cinematic product photography of a neon-green energy d...

Ultra-cinematic product photography of a neon-green energy drink can labeled “VOLT RUSH”, tilted at a sharp diagonal, bursting through glowing citrus slices and electric sparks. Frozen splashes of lime juice and ice shards suspended mid-air, micro droplets visible. High-contrast studio lighting with green neon rim lights, dark background, glossy aluminum texture, shallow depth of field, photorealistic, 8K, premium ad 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": "Ultra-cinematic product photography of a neon-green energy drink can labeled “VOLT RUSH”, tilted at a sharp diagonal, bursting through glowing citrus slices and electric sparks. Frozen splashes of lime juice and ice shards suspended mid-air, micro droplets visible. High-contrast studio lighting with green neon rim lights, dark background, glossy aluminum texture, shallow depth of field, photorealistic, 8K, premium ad style."
}
JSON
IM
Image
Product & Brand nano-banana-2

[BRAND NAME] design language, object reimagined as an unexpe...

[BRAND NAME] design language, object reimagined as an unexpected flagship product of the brand for the next decade. Crafted from signature materials and textures. Distinctive aesthetics, iconic form factor, embodiment of brand philosophy, high-end industrial design. COMPOSITION & STAGING: The object is floating suspended in mid-air within the studio space (anti-gravity effect). It is positioned strictly dead center in the frame. Negative Space: There is a wide, generous margin of empty space (air) surrounding the object on all sides. Framing: The object is fully contained within the image boundaries with absolutely no cropping. PHOTOGRAPHY: Professional product photography, soft volumetric lighting, clean light pastel background, 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": "[BRAND NAME] design language, object reimagined as an unexpected flagship product of the brand for the next decade. Crafted from signature materials and textures. Distinctive aesthetics, iconic form factor, embodiment of brand philosophy, high-end industrial design. COMPOSITION & STAGING: The object is floating suspended in mid-air within the studio space (anti-gravity effect). It is positioned strictly dead center in the frame. Negative Space: There is a wide, generous margin of empty space (air) surrounding the object on all sides. Framing: The object is fully contained within the image boundaries with absolutely no cropping. PHOTOGRAPHY: Professional product photography, soft volumetric lighting, clean light pastel background, ultra-detailed."
}
JSON
IM
Image
Product & Brand nano-banana-2

{ "subject": { "primary": "Two foil sachets of Marvico...

{ "subject": { "primary": "Two foil sachets of Marvico Tomato Mix Paste seasoning tilted diagonally", "secondary": "A rustic metal pot filled with rich, bubbling red Nigerian-style tomato stew containing assorted meats and tripe", "details": [ "Vibrant red tomato sauce consistency", "Fresh whole tomato splash at the bottom foreground", "Sachets feature green and gold 'MARVICO' branding with realistic tomato illustrations", "A cheerful young Western blonde woman with long hair, wearing a casual bright outfit, holding the sachets and smiling at the camera" ] }, "composition": { "layout": "Dynamic vertical advertisement", "focal_point": "Product sachets held by the girl in the center-left, overlapping a large pot of stew in the top-right", "background": "Solid textured red gradient with a subtle grainy paper effect", "perspective": "Eye-level with a slight Dutch angle for energy" }, "typography": { "main_text": "Better Christmas stew don sure", "sub_text": "...original from nature", "font_style": "Bold, playful white bubble script for main text; minimalist lowercase sans-serif for sub-text", "placement": "Centered at the bottom over the red background" }, "color_palette": { "dominant": ["Crimson Red", "Deep Scarlet"], "accents": ["Forest Green", "Metallic Gold", "Bright White"], "lighting": "Studio lighting with high contrast to make the red sauce look glossy and appetizing" }, "style_descriptors": [ "Commercial food photography", "West African culinary aesthetic", "High-definition textures", "Vibrant and warm color grading", "Professional product placement", "Lifestyle advertising with a relatable model" ], "technical_settings": { "aspect_ratio": "4:5", "sharpness": "High", "texture": "Subtle film grain on the background" } }

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"subject\": { \"primary\": \"Two foil sachets of Marvico Tomato Mix Paste seasoning tilted diagonally\", \"secondary\": \"A rustic metal pot filled with rich, bubbling red Nigerian-style tomato stew containing assorted meats and tripe\", \"details\": [ \"Vibrant red tomato sauce consistency\", \"Fresh whole tomato splash at the bottom foreground\", \"Sachets feature green and gold 'MARVICO' branding with realistic tomato illustrations\", \"A cheerful young Western blonde woman with long hair, wearing a casual bright outfit, holding the sachets and smiling at the camera\" ] }, \"composition\": { \"layout\": \"Dynamic vertical advertisement\", \"focal_point\": \"Product sachets held by the girl in the center-left, overlapping a large pot of stew in the top-right\", \"background\": \"Solid textured red gradient with a subtle grainy paper effect\", \"perspective\": \"Eye-level with a slight Dutch angle for energy\" }, \"typography\": { \"main_text\": \"Better Christmas stew don sure\", \"sub_text\": \"...original from nature\", \"font_style\": \"Bold, playful white bubble script for main text; minimalist lowercase sans-serif for sub-text\", \"placement\": \"Centered at the bottom over the red background\" }, \"color_palette\": { \"dominant\": [\"Crimson Red\", \"Deep Scarlet\"], \"accents\": [\"Forest Green\", \"Metallic Gold\", \"Bright White\"], \"lighting\": \"Studio lighting with high contrast to make the red sauce look glossy and appetizing\" }, \"style_descriptors\": [ \"Commercial food photography\", \"West African culinary aesthetic\", \"High-definition textures\", \"Vibrant and warm color grading\", \"Professional product placement\", \"Lifestyle advertising with a relatable model\" ], \"technical_settings\": { \"aspect_ratio\": \"4:5\", \"sharpness\": \"High\", \"texture\": \"Subtle film grain on the background\" } }"
}
JSON
IM
Image
Product & Brand nano-banana-2

Luxury product photography of artisanal vanilla ground coffe...

Luxury product photography of artisanal vanilla ground coffee packaged in a soft sculpted ivory pouch with gentle wave contours, minimal branding embossed into fabric. The pouch rests on a rustic oak tabletop dusted with coffee grounds, accompanied by a hand-carved wooden scoop spilling aromatic powder. Natural Madagascar vanilla pods curve organically around the base, blending into drifting coffee granules that form a subtle flowing aroma path instead of a spiral. On the pouch front, a modern sensory chart: thin matte gold lines showing flavor balance — low acidity, rich sweetness, full-bodied depth. Warm morning sunlight enters from the left at a low angle, creating soft shadows and tactile fabric highlights. Background fades into a cozy café interior with creamy bokeh lights, evoking calm morning rituals. Ultra-sharp macro texture on vanilla pods and coffee grains, cinematic depth of field, premium lifestyle aesthetic, inviting, warm, handcrafted, high-end brand feel.

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": "Luxury product photography of artisanal vanilla ground coffee packaged in a soft sculpted ivory pouch with gentle wave contours, minimal branding embossed into fabric. The pouch rests on a rustic oak tabletop dusted with coffee grounds, accompanied by a hand-carved wooden scoop spilling aromatic powder. Natural Madagascar vanilla pods curve organically around the base, blending into drifting coffee granules that form a subtle flowing aroma path instead of a spiral. On the pouch front, a modern sensory chart: thin matte gold lines showing flavor balance — low acidity, rich sweetness, full-bodied depth. Warm morning sunlight enters from the left at a low angle, creating soft shadows and tactile fabric highlights. Background fades into a cozy café interior with creamy bokeh lights, evoking calm morning rituals. Ultra-sharp macro texture on vanilla pods and coffee grains, cinematic depth of field, premium lifestyle aesthetic, inviting, warm, handcrafted, high-end brand feel."
}
JSON
IM
Image
Product & Brand nano-banana-2

A clean, modern personal branding mockup featuring a cohesiv...

A clean, modern personal branding mockup featuring a cohesive visual identity for a female creator or entrepreneur. The scene includes a minimalist brand kit displayed on a soft neutral background: a framed portrait with elegant typography, a circular logo with a hand-drawn line-art face illustration, and branded merchandise such as a white t-shirt, tote bag, and ceramic mug printed with the same logo. A grid-style social media layout showcases portrait photography, behind-the-scenes content, quotes, and solid color brand tiles in warm beige, cream, and muted terracotta tones. Google Gemini The overall aesthetic is creative, modern, and minimal, with soft natural lighting, premium lifestyle photography, balanced composition, Scandinavian-inspired design, high-end branding presentation, editorial feel, and consistent typography. Ideal for a personal brand, content creator, or lifestyle entrepreneur identity showcase.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A clean, modern personal branding mockup featuring a cohesive visual identity for a female creator or entrepreneur. The scene includes a minimalist brand kit displayed on a soft neutral background: a framed portrait with elegant typography, a circular logo with a hand-drawn line-art face illustration, and branded merchandise such as a white t-shirt, tote bag, and ceramic mug printed with the same logo. A grid-style social media layout showcases portrait photography, behind-the-scenes content, quotes, and solid color brand tiles in warm beige, cream, and muted terracotta tones. Google Gemini The overall aesthetic is creative, modern, and minimal, with soft natural lighting, premium lifestyle photography, balanced composition, Scandinavian-inspired design, high-end branding presentation, editorial feel, and consistent typography. Ideal for a personal brand, content creator, or lifestyle entrepreneur identity showcase."
}
JSON
IM
Image
Product & Brand nano-banana-2

A hyper-realistic commercial product shot of a refreshing li...

A hyper-realistic commercial product shot of a refreshing lime soda can exploding with energy in mid-air. A vibrant green aluminum can covered in condensation, surrounded by sliced limes, mint leaves, and shards of ice, with a dramatic water splash bursting from the top. Lime wedges collide with the can, frozen in motion, droplets suspended in the air. Deep emerald green gradient background with glowing particles, cinematic studio lighting, high contrast highlights, ultra-sharp focus on the can, macro-level texture detail. Dynamic action composition, refreshing summer mood, premium beverage advertising style, photorealistic, 8k resolution.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic commercial product shot of a refreshing lime soda can exploding with energy in mid-air. A vibrant green aluminum can covered in condensation, surrounded by sliced limes, mint leaves, and shards of ice, with a dramatic water splash bursting from the top. Lime wedges collide with the can, frozen in motion, droplets suspended in the air. Deep emerald green gradient background with glowing particles, cinematic studio lighting, high contrast highlights, ultra-sharp focus on the can, macro-level texture detail. Dynamic action composition, refreshing summer mood, premium beverage advertising style, photorealistic, 8k resolution."
}
JSON
IM
Image
Product & Brand nano-banana-2

A hyper-realistic commercial product shot of a lemon soda ca...

A hyper-realistic commercial product shot of a lemon soda can, with fresh lemon slices bursting out of the can in a dynamic splash. The can is covered in cold condensation droplets, glossy metallic texture, vibrant yellow-green color palette. Lemon wedges and citrus juice splashes frozen mid-air, ultra-detailed lemon pulp visible. Fresh green leaves floating around, dark green gradient background, soft studio lighting, dramatic high- lights, shallow depth of field, cinematic advertising style, ultra-sharp focus, 8K resolution, photorealis- tic, premium beverage ad. img

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic commercial product shot of a lemon soda can, with fresh lemon slices bursting out of the can in a dynamic splash. The can is covered in cold condensation droplets, glossy metallic texture, vibrant yellow-green color palette. Lemon wedges and citrus juice splashes frozen mid-air, ultra-detailed lemon pulp visible. Fresh green leaves floating around, dark green gradient background, soft studio lighting, dramatic high- lights, shallow depth of field, cinematic advertising style, ultra-sharp focus, 8K resolution, photorealis- tic, premium beverage ad. img"
}
JSON
IM
Image
Product & Brand nano-banana-2

You are a world class creative director, brand strategist, e...

You are a world class creative director, brand strategist, editorial art director, and visual identity designer specializing in high impact campaign systems for global brands. Your task is to create a bold, visually explosive, highly curated editorial moodboard collage composition that feels like a modern brand identity system. This should feel like a brand world captured in one frame, not a clean layout, slightly chaotic, layered, and expressive. BRAND INPUTS: BRAND NAME: GLOSSIER INDUSTRY / PRODUCT TYPE: beauty / skincare PRIMARY BRAND COLOR: soft pink SECONDARY BRAND COLOR: white ACCENT COLOR (optional): translucent gloss BRAND PERSONALITY: fresh, minimal, youthful, clean OPTIONAL SLOGAN / TEXT: SKIN FIRST VISUAL STYLE: Create a dense, layered moodboard-style composition combining: • real product photography or lifestyle shots • packaging elements (bags, boxes, labels, tags) • typography snippets and brand phrases • illustrated graphics and doodles • icons, symbols, and stickers • abstract graphic shapes and patterns • UI-like elements (menus, cards, labels) • editorial cutouts and overlapping assets The composition should feel: • slightly messy but intentionally designed • layered with depth and overlaps • like a Pinterest board meets high-end campaign • expressive, youthful, and brand-heavy • visually rich and scroll-stopping ART DIRECTION: Include a mix of elements such as: • product packaging mockups (bags, boxes, labels, stickers) • lifestyle shot (person interacting with product or brand) • bold typography blocks with brand phrases • illustrated objects interacting with real elements • menu-style or UI-style panels • abstract shapes, blobs, squiggles, starbursts • brand-related icons or symbols • badge / stamp graphics • textile or merch items (t-shirt, cap, tote bag, etc.) • playful graphic overlays COMPOSITION RULES: • asymmetrical layout (NOT grid-based) • elements scattered but balanced • overlapping layers with depth • mix of large hero elements + small details • combine clean areas with dense clusters • include cutout-style compositions • avoid too much empty space COLOR & DESIGN LANGUAGE: • strictly follow brand color palette • strong use of PRIMARY COLOR across elements • secondary color used for contrast and layering • minimal additional colors (keep it brand-consistent) • high contrast, bold visual identity TYPOGRAPHY: • modern editorial typography • mix of serif / sans-serif if relevant • bold headlines + small UI text • include brand name and/or slogan naturally in layout • typography should feel integrated, not separate VISUAL CHARACTERISTICS: • premium campaign look • modern brand identity system • editorial + commercial hybrid aesthetic • highly shareable social media visual • playful but intentional chaos • cohesive even in randomness IMPORTANT: This should feel like: • a brand world explosion in one frame • a creative direction board for a global campaign • a visual identity snapshot of the brand NOT a clean layout NOT a grid NOT minimal It must feel alive, layered, and expressive.

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": "You are a world class creative director, brand strategist, editorial art director, and visual identity designer specializing in high impact campaign systems for global brands. Your task is to create a bold, visually explosive, highly curated editorial moodboard collage composition that feels like a modern brand identity system. This should feel like a brand world captured in one frame, not a clean layout, slightly chaotic, layered, and expressive. BRAND INPUTS: BRAND NAME: GLOSSIER INDUSTRY / PRODUCT TYPE: beauty / skincare PRIMARY BRAND COLOR: soft pink SECONDARY BRAND COLOR: white ACCENT COLOR (optional): translucent gloss BRAND PERSONALITY: fresh, minimal, youthful, clean OPTIONAL SLOGAN / TEXT: SKIN FIRST VISUAL STYLE: Create a dense, layered moodboard-style composition combining: • real product photography or lifestyle shots • packaging elements (bags, boxes, labels, tags) • typography snippets and brand phrases • illustrated graphics and doodles • icons, symbols, and stickers • abstract graphic shapes and patterns • UI-like elements (menus, cards, labels) • editorial cutouts and overlapping assets The composition should feel: • slightly messy but intentionally designed • layered with depth and overlaps • like a Pinterest board meets high-end campaign • expressive, youthful, and brand-heavy • visually rich and scroll-stopping ART DIRECTION: Include a mix of elements such as: • product packaging mockups (bags, boxes, labels, stickers) • lifestyle shot (person interacting with product or brand) • bold typography blocks with brand phrases • illustrated objects interacting with real elements • menu-style or UI-style panels • abstract shapes, blobs, squiggles, starbursts • brand-related icons or symbols • badge / stamp graphics • textile or merch items (t-shirt, cap, tote bag, etc.) • playful graphic overlays COMPOSITION RULES: • asymmetrical layout (NOT grid-based) • elements scattered but balanced • overlapping layers with depth • mix of large hero elements + small details • combine clean areas with dense clusters • include cutout-style compositions • avoid too much empty space COLOR & DESIGN LANGUAGE: • strictly follow brand color palette • strong use of PRIMARY COLOR across elements • secondary color used for contrast and layering • minimal additional colors (keep it brand-consistent) • high contrast, bold visual identity TYPOGRAPHY: • modern editorial typography • mix of serif / sans-serif if relevant • bold headlines + small UI text • include brand name and/or slogan naturally in layout • typography should feel integrated, not separate VISUAL CHARACTERISTICS: • premium campaign look • modern brand identity system • editorial + commercial hybrid aesthetic • highly shareable social media visual • playful but intentional chaos • cohesive even in randomness IMPORTANT: This should feel like: • a brand world explosion in one frame • a creative direction board for a global campaign • a visual identity snapshot of the brand NOT a clean layout NOT a grid NOT minimal It must feel alive, layered, and expressive."
}
JSON
IM
Image
Product & Brand nano-banana-2

The word fofr as aggressive hard-edge graffiti with a monste...

The word fofr as aggressive hard-edge graffiti with a monstera leaf motif, beautifully stylised. The background is pure white. It is a risograph print. No color distortion. Vibrant and not faded. Stochastic stippling and sand-like noise pattern within color fills. A thick black outline. The tagline: "Always be promptin’", also in graffiti - but as a sprayed tag.

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 word fofr as aggressive hard-edge graffiti with a monstera leaf motif, beautifully stylised. The background is pure white. It is a risograph print. No color distortion. Vibrant and not faded. Stochastic stippling and sand-like noise pattern within color fills. A thick black outline. The tagline: \"Always be promptin’\", also in graffiti - but as a sprayed tag."
}
JSON
IM
Image
Product & Brand nano-banana-2

Product ad style AI image on a mountain peak above clouds Cr...

Product ad style AI image on a mountain peak above clouds Created with Google Nano Banana Pro Prompt used: Ultra realistic cinematic image of a White Monster Energy Ultra can standing on a sharp mountain peak above a sea of clouds, extreme high altitude atmosphere, dramatic stormy sky, golden sunrise breaking through clouds, wind whipping snow and mist around the can, liquid condensation and ice particles on the surface, bold powerful presence, epic scale contrast

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Product ad style AI image on a mountain peak above clouds Created with Google Nano Banana Pro Prompt used: Ultra realistic cinematic image of a White Monster Energy Ultra can standing on a sharp mountain peak above a sea of clouds, extreme high altitude atmosphere, dramatic stormy sky, golden sunrise breaking through clouds, wind whipping snow and mist around the can, liquid condensation and ice particles on the surface, bold powerful presence, epic scale contrast"
}
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.