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
Food & Drink nano-banana-2

{ "image_prompt": { "type": "Ultra-realistic culinary...

{ "image_prompt": { "type": "Ultra-realistic culinary infographic", "subject": { "cuisine": "Indonesian", "base_element": "A traditional serving bowl holding a steaming hot dish", "levitating_ingredients": [ "Tender meat pieces", "Golden crispy tofu", "Rich sauce droplets in mid-air", "Fresh green herbs", "Red chilies", "Sliced lime", "Crushed garlic", "Crispy fried shallots" ] }, "composition": { "layout": "Minimal, vertically stacked layout", "arrangement": "Ingredients floating naturally as if suspended in motion", "background": "Textured rustic wooden tabletop", "visual_hierarchy": "The bowl remains grounded at the base, with ingredients ascending above it" }, "graphic_design_elements": { "labels": "Clean Indonesian-language annotations", "lines": "Fine white connector lines", "style": "High-end editorial food infographic, magazine-quality design" }, "lighting_and_mood": { "lighting": "Controlled cinematic studio lighting", "color_palette": "Warm, appetizing color tones", "effects": "Visible steam and frozen-action food elements" }, "technical_specs": { "camera_settings": "Shallow depth of field with crisp focal detail, DSLR-style capture", "details": "Extremely detailed surface textures", "resolution": "8K, photorealistic 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": "{ \"image_prompt\": { \"type\": \"Ultra-realistic culinary infographic\", \"subject\": { \"cuisine\": \"Indonesian\", \"base_element\": \"A traditional serving bowl holding a steaming hot dish\", \"levitating_ingredients\": [ \"Tender meat pieces\", \"Golden crispy tofu\", \"Rich sauce droplets in mid-air\", \"Fresh green herbs\", \"Red chilies\", \"Sliced lime\", \"Crushed garlic\", \"Crispy fried shallots\" ] }, \"composition\": { \"layout\": \"Minimal, vertically stacked layout\", \"arrangement\": \"Ingredients floating naturally as if suspended in motion\", \"background\": \"Textured rustic wooden tabletop\", \"visual_hierarchy\": \"The bowl remains grounded at the base, with ingredients ascending above it\" }, \"graphic_design_elements\": { \"labels\": \"Clean Indonesian-language annotations\", \"lines\": \"Fine white connector lines\", \"style\": \"High-end editorial food infographic, magazine-quality design\" }, \"lighting_and_mood\": { \"lighting\": \"Controlled cinematic studio lighting\", \"color_palette\": \"Warm, appetizing color tones\", \"effects\": \"Visible steam and frozen-action food elements\" }, \"technical_specs\": { \"camera_settings\": \"Shallow depth of field with crisp focal detail, DSLR-style capture\", \"details\": \"Extremely detailed surface textures\", \"resolution\": \"8K, photorealistic finish\" } } }"
}
JSON
IM
Image
Food & Drink nano-banana-2

Ultra-realistic high-speed food photography of a crispy gold...

Ultra-realistic high-speed food photography of a crispy golden fried snack breaking apart mid-air, creamy savory filling stretching between the halves, visible chunks of chicken, peas, carrots, minced meat, noodles, or egg inside. Crumbs and flakes flying in slow motion, hot steam rising, dramatic food explosion effect. Shot in a vibrant night street market environment with warm bokeh lights, blurred food stalls in the background. Shallow depth of field, 85mm lens, f/1.8, ultra-sharp focus on texture, crunchy coating detail, dynamic motion capture, commercial food photography, cinematic lighting, HDR, 8K resolution, hyper-detailed, masterpiece quality.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic high-speed food photography of a crispy golden fried snack breaking apart mid-air, creamy savory filling stretching between the halves, visible chunks of chicken, peas, carrots, minced meat, noodles, or egg inside. Crumbs and flakes flying in slow motion, hot steam rising, dramatic food explosion effect. Shot in a vibrant night street market environment with warm bokeh lights, blurred food stalls in the background. Shallow depth of field, 85mm lens, f/1.8, ultra-sharp focus on texture, crunchy coating detail, dynamic motion capture, commercial food photography, cinematic lighting, HDR, 8K resolution, hyper-detailed, masterpiece quality."
}
JSON
IM
Image
Food & Drink nano-banana-2

High-quality professional product photography of a chilled...

High-quality professional product photography of a chilled Pepsi can with condensation water droplets and a refreshing, icy look. The aluminum can appears crisp and glossy with realistic highlights, subtle reflections, and visible cold texture. Shot in a minimalist commercial beverage advertising style against a pure white background with soft natural shadows. Sharp focus, ultra-clean composition, modern 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": "High-quality professional product photography of a chilled Pepsi can with condensation water droplets and a refreshing, icy look. The aluminum can appears crisp and glossy with realistic highlights, subtle reflections, and visible cold texture. Shot in a minimalist commercial beverage advertising style against a pure white background with soft natural shadows. Sharp focus, ultra-clean composition, modern aesthetic."
}
JSON
IM
Image
Food & Drink nano-banana-2

Ultra-realistic commercial product photography of a cold gre...

Ultra-realistic commercial product photography of a cold green tropical drink in a transparent plastic cup with Fanta Buko Pandan branding, crushed ice inside, condensation droplets on the cup, green striped paper straw, surrounded by floating ice cubes and pandan jelly cubes, coconut pieces and pandan leaves around the base, drink placed on a small wooden platform, reflective wet surface with scattered ice, tropical jungle leaves background, vibrant green color palette, refreshing summer beverage advertisement, dramatic studio lighting, shallow depth of field, macro details, high-speed splash photography, 8k ultra detailed, professional advertising shot. Optional parameters •Aspect ratio: --ar 1:1 •Style: --style raw •Quality: --q 2 Prompt: Premium advertising photo of Fanta Buko Pandan tropical beverage, tall clear cup filled with icy green pandan coconut drink, condensation droplets on the cup, white straw, surrounded by crystal ice cubes and pandan jelly cubes, fresh coconut halves and pandan stalks on table, placed on a wooden display stand, glossy reflective surface, lush tropical leaf background with soft bokeh, vibrant green tones, cinematic lighting, hyper-realistic food photography, commercial beverage campaign style, ultra sharp details, 8k resolution, shallow depth of field. Optional parameters •Aspect ratio: --ar 1:1 •Lighting: studio softbox lighting •Style keywords: photorealistic, beverage advertising, macro 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": "Ultra-realistic commercial product photography of a cold green tropical drink in a transparent plastic cup with Fanta Buko Pandan branding, crushed ice inside, condensation droplets on the cup, green striped paper straw, surrounded by floating ice cubes and pandan jelly cubes, coconut pieces and pandan leaves around the base, drink placed on a small wooden platform, reflective wet surface with scattered ice, tropical jungle leaves background, vibrant green color palette, refreshing summer beverage advertisement, dramatic studio lighting, shallow depth of field, macro details, high-speed splash photography, 8k ultra detailed, professional advertising shot. Optional parameters •Aspect ratio: --ar 1:1 •Style: --style raw •Quality: --q 2 Prompt: Premium advertising photo of Fanta Buko Pandan tropical beverage, tall clear cup filled with icy green pandan coconut drink, condensation droplets on the cup, white straw, surrounded by crystal ice cubes and pandan jelly cubes, fresh coconut halves and pandan stalks on table, placed on a wooden display stand, glossy reflective surface, lush tropical leaf background with soft bokeh, vibrant green tones, cinematic lighting, hyper-realistic food photography, commercial beverage campaign style, ultra sharp details, 8k resolution, shallow depth of field. Optional parameters •Aspect ratio: --ar 1:1 •Lighting: studio softbox lighting •Style keywords: photorealistic, beverage advertising, macro texture"
}
JSON
IM
Image
Food & Drink nano-banana-2

{ "project": { "title": "Hyper-Visual Burger Macro Ser...

{ "project": { "title": "Hyper-Visual Burger Macro Series", "version": "2.0_Structured_High_Speed", "target_aesthetic": "High-end Commercial Advertising" }, "technical_foundation": { "camera_hardware": { "body": "Nikon D850", "lens": "105mm f/2.8 Micro-Nikkor", "settings": "High-speed shutter, deep depth of field, ISO 100" }, "global_image_specs": { "aspect_ratio": "2:3", "resolution": "8K Ultra-HD", "lighting_style": "Studio high-key with rim-light accents", "color_profile": "Vibrant, high-saturation golden browns, reds, and greens" } }, "scene_manifest": [ { "scene_id": "01_THE_SAUCE_CROWN", "composition": { "focus": "Macro interaction", "subject": "Juicy burger slice (beef patty cross-section with bun edge)", "action": "Vertical plunge into glossy burger sauce" }, "physics_elements": { "liquid": "Thick, creamy signature burger sauce", "splash_shape": "Symmetrical dynamic crown", "particles": "Suspended sauce droplets, sesame seeds, and salt flakes" }, "texture_details": [ "Seared beef fibers", "Juicy meat sheen", "Toasted bun crumb texture" ] }, { "scene_id": "02_THE_LAYER_SWING", "composition": { "focus": "Dynamic movement", "subject": "Burger slice in motion", "environment": "Open burger box context" }, "physics_elements": { "motion": "Angular swing trajectory", "particles": "Pepper flakes, salt crystals, and lettuce shreds", "background": "Soft-focus bright studio" }, "lighting": "Balanced shadow/highlight contrast for rich 3D depth" }, { "scene_id": "03_THE_HERO_STACK", "composition": { "focus": "Action-packed layout", "subject": "Upward ejecting burger slice", "branding": "Open branded burger box beneath" }, "lighting_effects": { "primary": "Radial spotlight burst behind subject", "secondary": "Fill light emphasizing juicy meat and bun texture" }, "particle_vfx": "Explosive trail of sauce droplets, crumbs, and sesame seeds" }, { "scene_id": "04_THE_JUICE_BURST", "composition": { "focus": "Extreme macro freeze-frame", "subject": "Burger slice juice release", "action": "Mid-air compression and release of meat juices" }, "environment_vfx": { "background": "Warm amber-to-cream high-contrast gradient", "atmosphere": "Fine mist of steam and seasoning particles", "shimmer": "Backlit glints on melted fat, sauce, and bun surface" } } ], "negative_parameters": [ "motion blur", "plastic or artificial food textures", "low-resolution noise", "muddy colors", "overexposed highlights", "unrealistic food physics" ] }

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": "{ \"project\": { \"title\": \"Hyper-Visual Burger Macro Series\", \"version\": \"2.0_Structured_High_Speed\", \"target_aesthetic\": \"High-end Commercial Advertising\" }, \"technical_foundation\": { \"camera_hardware\": { \"body\": \"Nikon D850\", \"lens\": \"105mm f/2.8 Micro-Nikkor\", \"settings\": \"High-speed shutter, deep depth of field, ISO 100\" }, \"global_image_specs\": { \"aspect_ratio\": \"2:3\", \"resolution\": \"8K Ultra-HD\", \"lighting_style\": \"Studio high-key with rim-light accents\", \"color_profile\": \"Vibrant, high-saturation golden browns, reds, and greens\" } }, \"scene_manifest\": [ { \"scene_id\": \"01_THE_SAUCE_CROWN\", \"composition\": { \"focus\": \"Macro interaction\", \"subject\": \"Juicy burger slice (beef patty cross-section with bun edge)\", \"action\": \"Vertical plunge into glossy burger sauce\" }, \"physics_elements\": { \"liquid\": \"Thick, creamy signature burger sauce\", \"splash_shape\": \"Symmetrical dynamic crown\", \"particles\": \"Suspended sauce droplets, sesame seeds, and salt flakes\" }, \"texture_details\": [ \"Seared beef fibers\", \"Juicy meat sheen\", \"Toasted bun crumb texture\" ] }, { \"scene_id\": \"02_THE_LAYER_SWING\", \"composition\": { \"focus\": \"Dynamic movement\", \"subject\": \"Burger slice in motion\", \"environment\": \"Open burger box context\" }, \"physics_elements\": { \"motion\": \"Angular swing trajectory\", \"particles\": \"Pepper flakes, salt crystals, and lettuce shreds\", \"background\": \"Soft-focus bright studio\" }, \"lighting\": \"Balanced shadow/highlight contrast for rich 3D depth\" }, { \"scene_id\": \"03_THE_HERO_STACK\", \"composition\": { \"focus\": \"Action-packed layout\", \"subject\": \"Upward ejecting burger slice\", \"branding\": \"Open branded burger box beneath\" }, \"lighting_effects\": { \"primary\": \"Radial spotlight burst behind subject\", \"secondary\": \"Fill light emphasizing juicy meat and bun texture\" }, \"particle_vfx\": \"Explosive trail of sauce droplets, crumbs, and sesame seeds\" }, { \"scene_id\": \"04_THE_JUICE_BURST\", \"composition\": { \"focus\": \"Extreme macro freeze-frame\", \"subject\": \"Burger slice juice release\", \"action\": \"Mid-air compression and release of meat juices\" }, \"environment_vfx\": { \"background\": \"Warm amber-to-cream high-contrast gradient\", \"atmosphere\": \"Fine mist of steam and seasoning particles\", \"shimmer\": \"Backlit glints on melted fat, sauce, and bun surface\" } } ], \"negative_parameters\": [ \"motion blur\", \"plastic or artificial food textures\", \"low-resolution noise\", \"muddy colors\", \"overexposed highlights\", \"unrealistic food physics\" ] }"
}
JSON
IM
Image
Food & Drink nano-banana-2

Ultra-clean modern recipe infographic. Showcase Vanilla Ice...

Ultra-clean modern recipe infographic. Showcase Vanilla Ice Cream Scoops with syrup and toppings in angled perspective. Ingredients Section: Icons for milk, cream, sugar, vanilla. Steps Section: Mixing base, freezing, scooping shown with numbered panels. Additional Info: Calories, prep time, servings displayed in badges. Visual Style: Dessert infographic with pastel colors, soft gradients, modern typography. Composition Guidelines: Ice cream scoops as hero visual with ingredients and steps around it. Lighting & Background: Soft dessert-style lighting with minimal background. Output: 1080×1080, ultra-crisp, social-feed optimized, 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": "Ultra-clean modern recipe infographic. Showcase Vanilla Ice Cream Scoops with syrup and toppings in angled perspective. Ingredients Section: Icons for milk, cream, sugar, vanilla. Steps Section: Mixing base, freezing, scooping shown with numbered panels. Additional Info: Calories, prep time, servings displayed in badges. Visual Style: Dessert infographic with pastel colors, soft gradients, modern typography. Composition Guidelines: Ice cream scoops as hero visual with ingredients and steps around it. Lighting & Background: Soft dessert-style lighting with minimal background. Output: 1080×1080, ultra-crisp, social-feed optimized, no watermark."
}
JSON
IM
Image
Food & Drink nano-banana-2

A transparent cup filled with fresh Sprite lemon soda floati...

A transparent cup filled with fresh Sprite lemon soda floating in the air, surrounded by sparkling lemon-lime soda splashes, bright ice cubes, and tiny carbonation bubbles bursting around the drink. The cup features green minimal text design, giving a fresh and clean brand look. Hyper-realistic beverage product photography with professional studio lighting, crisp texture details, macro clarity as if shot with Sony A7s. Black and neon green background highlighting freshness --stylize 250

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 transparent cup filled with fresh Sprite lemon soda floating in the air, surrounded by sparkling lemon-lime soda splashes, bright ice cubes, and tiny carbonation bubbles bursting around the drink. The cup features green minimal text design, giving a fresh and clean brand look. Hyper-realistic beverage product photography with professional studio lighting, crisp texture details, macro clarity as if shot with Sony A7s. Black and neon green background highlighting freshness --stylize 250"
}
JSON
IM
Image
Food & Drink nano-banana-2

- Ultra-realistic prepared pepperoni pizza slice, fully asse...

- Ultra-realistic prepared pepperoni pizza slice, fully assembled, gooey melted mozzarella cheese stretching and dripping over the edges, crispy pepperoni slices on top, rich tomato sauce beneath, thick golden baked crust, fresh basil leaves and light seasoning floating subtly above, clean pure white background, professional commercial food photography lighting, soft natural shadows under the slice, sharp focus, extreme texture detail, glossy cheese, crunchy crust surface, studio shot, minimal composition, no text, no labels, no hands, premium food advertisement style, 8K resolution, ultra-detailed, hyper-realistic.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "- Ultra-realistic prepared pepperoni pizza slice, fully assembled, gooey melted mozzarella cheese stretching and dripping over the edges, crispy pepperoni slices on top, rich tomato sauce beneath, thick golden baked crust, fresh basil leaves and light seasoning floating subtly above, clean pure white background, professional commercial food photography lighting, soft natural shadows under the slice, sharp focus, extreme texture detail, glossy cheese, crunchy crust surface, studio shot, minimal composition, no text, no labels, no hands, premium food advertisement style, 8K resolution, ultra-detailed, hyper-realistic."
}
JSON
IM
Image
Food & Drink nano-banana-2

Ultra-luxury food commercial of a stack of thick, fluffy Ame...

Ultra-luxury food commercial of a stack of thick, fluffy American pancakes with perfectly golden-brown edges. Pure maple syrup cascades slowly down the sides in glossy, slow-motion streams, highlighting every drip. Pancakes topped with fresh mixed berries (blueberries, raspberries, blackberries), scattered roasted hazelnuts and almonds, and crunchy oat flakes. Cinematic close-up shots with rich warm morning light, soft beige bokeh background, hyper-detailed textures emphasizing fluffiness and glossiness. Luxury golden ornate spoon takes a delicate bite, with syrup stretching realistically. Smooth camera moves circling and slightly top-down over the stack, emphasizing elegance and indulgence. Minimalistic, high-end plating, cinematic depth of field, extremely appetizing, mouthwatering, trending food photography aesthetic, ultra-realistic 8K detail, professional ad-style video. Include subtle background soft music or ambient café sounds for premium 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": "Ultra-luxury food commercial of a stack of thick, fluffy American pancakes with perfectly golden-brown edges. Pure maple syrup cascades slowly down the sides in glossy, slow-motion streams, highlighting every drip. Pancakes topped with fresh mixed berries (blueberries, raspberries, blackberries), scattered roasted hazelnuts and almonds, and crunchy oat flakes. Cinematic close-up shots with rich warm morning light, soft beige bokeh background, hyper-detailed textures emphasizing fluffiness and glossiness. Luxury golden ornate spoon takes a delicate bite, with syrup stretching realistically. Smooth camera moves circling and slightly top-down over the stack, emphasizing elegance and indulgence. Minimalistic, high-end plating, cinematic depth of field, extremely appetizing, mouthwatering, trending food photography aesthetic, ultra-realistic 8K detail, professional ad-style video. Include subtle background soft music or ambient café sounds for premium feel."
}
JSON
IM
Image
Food & Drink nano-banana-2

Motion settles into a striking hero shot: can centered, pur...

Motion settles into a striking hero shot: can centered, purple liquid frozen in sculptural form, berries suspended mid-air. No text, no logos, no transitions—pure visual impact. Style & Mood: Ultra-premium soda advertisement, dark luxury aesthetic, cinematic slow motion, high-contrast lighting, glossy reflections, dramatic yet elegant energy. Camera & Technical Direction: Locked-off camera, high-speed macro cinematography, realistic fluid dynamics, controlled splash physics, volumetric lighting, shallow depth of field, hyper-detailed droplets.

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": "Motion settles into a striking hero shot: can centered, purple liquid frozen in sculptural form, berries suspended mid-air. No text, no logos, no transitions—pure visual impact. Style & Mood: Ultra-premium soda advertisement, dark luxury aesthetic, cinematic slow motion, high-contrast lighting, glossy reflections, dramatic yet elegant energy. Camera & Technical Direction: Locked-off camera, high-speed macro cinematography, realistic fluid dynamics, controlled splash physics, volumetric lighting, shallow depth of field, hyper-detailed droplets."
}
JSON
IM
Image
Food & Drink nano-banana-2

{ "scene": "Minimalist white contemporary art gallery",...

{ "scene": "Minimalist white contemporary art gallery", "environment": { "floor": "smooth concrete floor", "lighting": "soft warm museum lighting", "atmosphere": "clean, surreal, high-end contemporary museum aesthetic" }, "main_subject": { "description": "Oversized sports equipment sculpture made entirely from croissants", "material": "hyper-realistic golden flaky croissant pastry", "sports_equipment_options": [ "boxing gloves", "dumbbells", "basketballs", "kettlebells", "barbell" ], "placement": "center of the gallery on white pedestal", "scale": "oversized, dominant focal point" }, "secondary_elements": { "floating_shelves": "white floating shelves on walls", "miniature_objects": "tiny pastry-based sports objects and croissant sculptures", "arrangement": "evenly spaced, gallery-style display" }, "visual_style": { "texture_detail": "ultra-realistic pastry layers, crisp flaky edges, buttery sheen", "color_palette": "white, warm gold, soft beige", "composition": "symmetrical, minimal, museum exhibition layout" }, "photography": { "style": "professional photography", "camera": "high-resolution, sharp focus", "depth_of_field": "subtle depth, gallery clarity", "quality": "ultra-detailed, premium art 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": "{ \"scene\": \"Minimalist white contemporary art gallery\", \"environment\": { \"floor\": \"smooth concrete floor\", \"lighting\": \"soft warm museum lighting\", \"atmosphere\": \"clean, surreal, high-end contemporary museum aesthetic\" }, \"main_subject\": { \"description\": \"Oversized sports equipment sculpture made entirely from croissants\", \"material\": \"hyper-realistic golden flaky croissant pastry\", \"sports_equipment_options\": [ \"boxing gloves\", \"dumbbells\", \"basketballs\", \"kettlebells\", \"barbell\" ], \"placement\": \"center of the gallery on white pedestal\", \"scale\": \"oversized, dominant focal point\" }, \"secondary_elements\": { \"floating_shelves\": \"white floating shelves on walls\", \"miniature_objects\": \"tiny pastry-based sports objects and croissant sculptures\", \"arrangement\": \"evenly spaced, gallery-style display\" }, \"visual_style\": { \"texture_detail\": \"ultra-realistic pastry layers, crisp flaky edges, buttery sheen\", \"color_palette\": \"white, warm gold, soft beige\", \"composition\": \"symmetrical, minimal, museum exhibition layout\" }, \"photography\": { \"style\": \"professional photography\", \"camera\": \"high-resolution, sharp focus\", \"depth_of_field\": \"subtle depth, gallery clarity\", \"quality\": \"ultra-detailed, premium art photography\" } }"
}
JSON
IM
Image
Food & Drink nano-banana-2

Hyper-realistic food photography, ultra high-definition, dyn...

Hyper-realistic food photography, ultra high-definition, dynamic floating ingredients and liquids, ingredients suspended in mid-air, motion captured in high-speed freeze, dramatic cinematic studio lighting, dark moody background with subtle gradient, extreme sharpness and fine textures, strong contrast highlighting food, splashes, crumbs, sauces, and liquids flying around, central hero composition with ample negative space, clean luxury advertising style, no text, no logos, no props, realistic shadows and reflections, ultra-detailed, photorealistic, 8K. {image of a cocktail}

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Hyper-realistic food photography, ultra high-definition, dynamic floating ingredients and liquids, ingredients suspended in mid-air, motion captured in high-speed freeze, dramatic cinematic studio lighting, dark moody background with subtle gradient, extreme sharpness and fine textures, strong contrast highlighting food, splashes, crumbs, sauces, and liquids flying around, central hero composition with ample negative space, clean luxury advertising style, no text, no logos, no props, realistic shadows and reflections, ultra-detailed, photorealistic, 8K. {image of a cocktail}"
}
JSON
IM
Image
Food & Drink nano-banana-2

[DISH] painted in the style of a Dutch Golden Age or Italian...

[DISH] painted in the style of a Dutch Golden Age or Italian Renaissance still life, hyperrealistic oil painting aesthetic with dramatic chiaroscuro lighting. Hero dish at center on a dark velvet or stone surface, surrounded by its ingredients arranged in a baroque composition. Single dramatic light source from upper left illuminating every texture with painterly depth: glistening proteins, translucent sauces, jewel-bright vegetables, crusty bread, scattered herbs. Each ingredient labeled with a small elegant gold cartouche, ornate bordered label in copperplate: "[INGREDIENT] [poetic Latin or French descriptor]". Dish name in ornate gilt typography at top: "[DISH NAME]". Subtitle: "[TAGLINE]". Mood: Caravaggio meets Rembrandt meets the world's most craveable food photograph. Deep rich shadows, jewel-tone colors, extraordinary museum-quality, craveable.

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": "[DISH] painted in the style of a Dutch Golden Age or Italian Renaissance still life, hyperrealistic oil painting aesthetic with dramatic chiaroscuro lighting. Hero dish at center on a dark velvet or stone surface, surrounded by its ingredients arranged in a baroque composition. Single dramatic light source from upper left illuminating every texture with painterly depth: glistening proteins, translucent sauces, jewel-bright vegetables, crusty bread, scattered herbs. Each ingredient labeled with a small elegant gold cartouche, ornate bordered label in copperplate: \"[INGREDIENT] [poetic Latin or French descriptor]\". Dish name in ornate gilt typography at top: \"[DISH NAME]\". Subtitle: \"[TAGLINE]\". Mood: Caravaggio meets Rembrandt meets the world's most craveable food photograph. Deep rich shadows, jewel-tone colors, extraordinary museum-quality, craveable."
}
JSON
IM
Image
Food & Drink nano-banana-2

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

[product setup],create 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, 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 setup],create 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, 8k, 1:1"
}
JSON
IM
Image
Food & Drink nano-banana-2

Top-down premium food photography of a glass jar of chili to...

Top-down premium food photography of a glass jar of chili tomato chutney placed on a dark stone slab, surrounded by fresh red tomatoes, sliced tomatoes, red chili peppers, black peppercorns, and a small wooden bowl with chutney and spoon. Warm earthy background, soft directional lighting, rich shadows, high contrast, minimal styling, commercial product shoot, ultra-detailed, 4K.

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": "Top-down premium food photography of a glass jar of chili tomato chutney placed on a dark stone slab, surrounded by fresh red tomatoes, sliced tomatoes, red chili peppers, black peppercorns, and a small wooden bowl with chutney and spoon. Warm earthy background, soft directional lighting, rich shadows, high contrast, minimal styling, commercial product shoot, ultra-detailed, 4K."
}
JSON
IM
Image
Food & Drink nano-banana-2

Ultra-realistic product ad of a premium fruit drink bottle,...

Ultra-realistic product ad of a premium fruit drink bottle, dynamic liquid splash frozen mid-air, fresh fruits (orange, kiwi, strawberry, mango, passionfruit) exploding around the bottle, cinematic golden sunlight, outdoor orchard/beach setting, shallow depth of field, vibrant colors, glossy reflections, high-speed photography style, hyper-detailed liquid physics, clean branding label, 8K, commercial advertising, perfect composition.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic product ad of a premium fruit drink bottle, dynamic liquid splash frozen mid-air, fresh fruits (orange, kiwi, strawberry, mango, passionfruit) exploding around the bottle, cinematic golden sunlight, outdoor orchard/beach setting, shallow depth of field, vibrant colors, glossy reflections, high-speed photography style, hyper-detailed liquid physics, clean branding label, 8K, commercial advertising, perfect composition."
}
JSON
IM
Image
Food & Drink nano-banana-2

{ "subject": { "primary": "Vibrant orange slices", "...

{ "subject": { "primary": "Vibrant orange slices", "action": "Falling through the air toward rising milk", "secondary": "Thick, glossy white milk splash forming arcs and crown-like curves", "details": "Milk droplets frozen mid-air with creamy texture" }, "environment": { "background": "Clean blue studio backdrop", "lighting": "Cinematic soft studio lighting with dramatic highlights and shadows" }, "visual_style": { "genre": "Ultra-realistic commercial splash photography", "textures": "High-detail creamy milk and fresh citrus pulp", "motion": "Frozen action, high-speed capture", "depth_of_field": "Shallow depth of field" }, "camera": { "lens": "85mm macro", "framing": "Wide composition", "focus": "Sharp focus on splash and fruit" }, "composition": { "aspect_ratio": "3:4", "color_palette": ["Vibrant Orange", "Pure White", "Clean Blue"] }, "quality": { "detail_level": "Ultra-high detail", "rendering": "Photorealistic" }, "profile": "9ewnbdc" }

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\": \"Vibrant orange slices\", \"action\": \"Falling through the air toward rising milk\", \"secondary\": \"Thick, glossy white milk splash forming arcs and crown-like curves\", \"details\": \"Milk droplets frozen mid-air with creamy texture\" }, \"environment\": { \"background\": \"Clean blue studio backdrop\", \"lighting\": \"Cinematic soft studio lighting with dramatic highlights and shadows\" }, \"visual_style\": { \"genre\": \"Ultra-realistic commercial splash photography\", \"textures\": \"High-detail creamy milk and fresh citrus pulp\", \"motion\": \"Frozen action, high-speed capture\", \"depth_of_field\": \"Shallow depth of field\" }, \"camera\": { \"lens\": \"85mm macro\", \"framing\": \"Wide composition\", \"focus\": \"Sharp focus on splash and fruit\" }, \"composition\": { \"aspect_ratio\": \"3:4\", \"color_palette\": [\"Vibrant Orange\", \"Pure White\", \"Clean Blue\"] }, \"quality\": { \"detail_level\": \"Ultra-high detail\", \"rendering\": \"Photorealistic\" }, \"profile\": \"9ewnbdc\" }"
}
JSON
IM
Image
Food & Drink nano-banana-2

Premium banana milk drink bottle surrounded by swirling milk...

Premium banana milk drink bottle surrounded by swirling milk splash, floating bananas and berries, dynamic liquid motion, creamy textures, bright yellow background, high-speed splash photography, glossy product lighting, ultra-realistic, commercial food ad style, sharp focus, 8K.

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 banana milk drink bottle surrounded by swirling milk splash, floating bananas and berries, dynamic liquid motion, creamy textures, bright yellow background, high-speed splash photography, glossy product lighting, ultra-realistic, commercial food ad style, sharp focus, 8K."
}
JSON
IM
Image
Food & Drink nano-banana-2

{ The Cinematic Momo Duo Subject & Scene * Finished Dish: F...

{ The Cinematic Momo Duo Subject & Scene * Finished Dish: Freshly steamed dumplings (momos) stacked on a rustic wooden board. * The Details: Glossy dough with delicate handmade pleats, a light sheen of oil, and thick dramatic steam rising. * Exploded View: A side-by-side or split scene showing the "deconstructed" momo. Floating dumpling wrappers, balls of spiced minced filling, and scattered fresh herbs. Motion & Action * Frozen in Time: Flour particles suspended mid-air, motion-frozen spices, and a dramatic slow-motion splash effect. * Atmosphere: Wispy, swirling steam and falling herb leaves. Setting & Background * Environment: A dark, moody, rustic kitchen. * Surface: A weathered, textured wooden cutting board with grains and cracks visible. Lighting & Color * Style: Cinematic studio lighting. * Palette: Warm, inviting tones with high contrast and deep shadows for a professional editorial look. Technical Specs * Camera: Macro photography, 8K resolution, hyper-detailed textures. * Focus: Shallow depth of field (blurred background) with sharp, crisp focus on the ingredients.

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 Cinematic Momo Duo Subject & Scene * Finished Dish: Freshly steamed dumplings (momos) stacked on a rustic wooden board. * The Details: Glossy dough with delicate handmade pleats, a light sheen of oil, and thick dramatic steam rising. * Exploded View: A side-by-side or split scene showing the \"deconstructed\" momo. Floating dumpling wrappers, balls of spiced minced filling, and scattered fresh herbs. Motion & Action * Frozen in Time: Flour particles suspended mid-air, motion-frozen spices, and a dramatic slow-motion splash effect. * Atmosphere: Wispy, swirling steam and falling herb leaves. Setting & Background * Environment: A dark, moody, rustic kitchen. * Surface: A weathered, textured wooden cutting board with grains and cracks visible. Lighting & Color * Style: Cinematic studio lighting. * Palette: Warm, inviting tones with high contrast and deep shadows for a professional editorial look. Technical Specs * Camera: Macro photography, 8K resolution, hyper-detailed textures. * Focus: Shallow depth of field (blurred background) with sharp, crisp focus on the ingredients."
}
JSON
IM
Image
Food & Drink nano-banana-2

{ "prompt": "young western woman with long blonde hair sit...

{ "prompt": "young western woman with long blonde hair sitting playfully inside a giant red french fry carton, surrounded by oversized golden-brown fries, some fries floating in the air, she is wearing a textured red sweater and beige trousers with yellow sneakers, cheerful expression, bright yellow studio background, surreal commercial photography style, high saturation, sharp focus, clean composition, 8k resolution, professional lighting", "negative_prompt": "low quality, blurry, distorted face, bad anatomy, extra limbs, dull colors, messy background, text, watermark, grainy, realistic size fries", "aspect_ratio": "3:4", "style": "surreal commercial photography", "lighting": "vibrant studio lighting with soft shadows", "camera": "eye-level medium shot, 50mm lens", "quality_tags": "masterpiece, ultra-detailed, high-end commercial 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": "{ \"prompt\": \"young western woman with long blonde hair sitting playfully inside a giant red french fry carton, surrounded by oversized golden-brown fries, some fries floating in the air, she is wearing a textured red sweater and beige trousers with yellow sneakers, cheerful expression, bright yellow studio background, surreal commercial photography style, high saturation, sharp focus, clean composition, 8k resolution, professional lighting\", \"negative_prompt\": \"low quality, blurry, distorted face, bad anatomy, extra limbs, dull colors, messy background, text, watermark, grainy, realistic size fries\", \"aspect_ratio\": \"3:4\", \"style\": \"surreal commercial photography\", \"lighting\": \"vibrant studio lighting with soft shadows\", \"camera\": \"eye-level medium shot, 50mm lens\", \"quality_tags\": \"masterpiece, ultra-detailed, high-end commercial aesthetic\" }"
}
JSON
IM
Image
Food & Drink nano-banana-2

A minimalist, ultra-realistic product shot of a premium ice...

A minimalist, ultra-realistic product shot of a premium ice cream bar inspired by Kazakhstan. The popsicle is coated in glossy turquoise icing with elegant gold ornamental patterns and the word “QAZAQSTAN” embossed in metallic gold, featuring a golden sun-and-eagle motif. The lower half reveals creamy vanilla ice cream with smooth texture and subtle melting drips. Wooden stick engraved with traditional Kazakh patterns. Clean white studio background, soft diffused lighting, sharp focus, luxury food branding aesthetic, high-detail textures, modern cultural fusion design, 8K quality.

View API Code
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A minimalist, ultra-realistic product shot of a premium ice cream bar inspired by Kazakhstan. The popsicle is coated in glossy turquoise icing with elegant gold ornamental patterns and the word “QAZAQSTAN” embossed in metallic gold, featuring a golden sun-and-eagle motif. The lower half reveals creamy vanilla ice cream with smooth texture and subtle melting drips. Wooden stick engraved with traditional Kazakh patterns. Clean white studio background, soft diffused lighting, sharp focus, luxury food branding aesthetic, high-detail textures, modern cultural fusion design, 8K quality."
}
JSON
IM
Image
Food & Drink nano-banana-2

A hyper-realistic image of a sliced kiwi splashing in a spra...

A hyper-realistic image of a sliced kiwi splashing in a spray of water with droplets suspended in the air. Fresh kiwi slices, dynamically arranged in a floating composition, create a smooth green background. The smooth green gradient creates a fresh, bright, and juicy aesthetic. Studio lighting, soft shadows, high detail, macro photography of objects, an emphasis on texture and reflections. Ultra-realistic rendering, 8K, sharp focus, rich green tones. --ar 9:16 --raw

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 image of a sliced kiwi splashing in a spray of water with droplets suspended in the air. Fresh kiwi slices, dynamically arranged in a floating composition, create a smooth green background. The smooth green gradient creates a fresh, bright, and juicy aesthetic. Studio lighting, soft shadows, high detail, macro photography of objects, an emphasis on texture and reflections. Ultra-realistic rendering, 8K, sharp focus, rich green tones. --ar 9:16 --raw"
}
JSON
IM
Image
Food & Drink nano-banana-2

Luxury cinematic food photography of traditional Indonesian...

Luxury cinematic food photography of traditional Indonesian “Seruit Lampung” — beautifully grilled fish fillet glazed with chili sambal, garnished with red chili slices, fresh basil, and lime wedges. Served on an elegant ceramic plate with a small bowl of sambal and a side of golden mashed condiment. Visible steam rising from the hot dish. Background shows a refined coastal sunset ambiance with soft bokeh reflections on water, warm golden-hour lighting. Shot on a polished marble table surface. Fine-dining restaurant atmosphere, shallow depth of field, dramatic food styling, ultra-realistic, 85mm lens, f/2.0, rich contrast, 8K resolution. Elegant editorial food magazine 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": "Luxury cinematic food photography of traditional Indonesian “Seruit Lampung” — beautifully grilled fish fillet glazed with chili sambal, garnished with red chili slices, fresh basil, and lime wedges. Served on an elegant ceramic plate with a small bowl of sambal and a side of golden mashed condiment. Visible steam rising from the hot dish. Background shows a refined coastal sunset ambiance with soft bokeh reflections on water, warm golden-hour lighting. Shot on a polished marble table surface. Fine-dining restaurant atmosphere, shallow depth of field, dramatic food styling, ultra-realistic, 85mm lens, f/2.0, rich contrast, 8K resolution. Elegant editorial food magazine style."
}
JSON
IM
Image
Food & Drink nano-banana-2

Ultra-cinematic product photography of a premium protein bar...

Ultra-cinematic product photography of a premium protein bar wrapped in metallic packaging, floating at a dynamic angle; explosive chocolate chunks, caramel drips, and nut fragments frozen mid-air; high-speed splash and crumble effect, dramatic studio lighting with sharp highlights; rich brown and gold palette, ultra-detailed textures, shallow depth of field, photorealistic, 8K, fitness luxury advertising.

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 premium protein bar wrapped in metallic packaging, floating at a dynamic angle; explosive chocolate chunks, caramel drips, and nut fragments frozen mid-air; high-speed splash and crumble effect, dramatic studio lighting with sharp highlights; rich brown and gold palette, ultra-detailed textures, shallow depth of field, photorealistic, 8K, fitness luxury advertising."
}
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.