模型 PROMPTS

nano-banana-2 Prompts — 1027 个精选示例

通过 RunAPI 使用 nano-banana-2 的示例。复制 prompt 后,可在 Claude Code、Codex、Cursor、Windsurf 或后端 API 中使用。

模型

nano-banana-2

模态
图像
提供方
Google
Endpoint
Text To Image
查看模型详情和定价 →
1. claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
2. 重启 Claude Code
3. 粘贴这个 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]”"
1. codex plugin install runapi-mcp@agents
2. 重启 Codex
3. 粘贴这个 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]”"
1. npx @runapi.ai/mcp init cursor
2. 重启 Cursor
3. 粘贴这个 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]”"
1. npx @runapi.ai/mcp init windsurf
2. 重启 Windsurf
3. 粘贴这个 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]”"
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 获取 API Key
IM
图像
Food & Drink nano-banana-2

{ "composition": { "orientation": "vertical", "sty...

{ "composition": { "orientation": "vertical", "style": "ultra-cinematic", "scene_type": "mid-air suspended elements", "depth_of_field": "cinematic shallow depth" }, "subject": { "main_elements": [ "cascading roasted coffee beans", "floating chocolate bonbons", "mid-air coffee cup with swirling latte art", "splashes of milk frozen in motion", "splashes of espresso frozen in motion", "fine coffee grounds dusting through the air" ], "motion_state": "frozen action splash photography" }, "color_palette": { "primary_colors": [ "rich coffee brown", "warm cream", "espresso black" ], "background": "deep velvety black" }, "lighting": { "type": "dramatic high-contrast studio lighting", "highlights": "glossy reflections on liquids", "shadows": "deep cinematic shadows" }, "texture_detail": { "liquids": [ "glossy milk splashes", "glossy espresso splashes", "crema bubbles with micro-detail" ], "solids": [ "matte roasted coffee beans", "smooth chocolate bonbon surfaces", "fine granular coffee grounds" ] }, "photography_style": { "genre": "premium café advertising", "aesthetic": "editorial splash photography", "clarity": "crisp ultra-detailed" }, "camera": { "camera_model": "Nikon D850 (virtual)", "lens": "105mm macro", "aperture": "f/4.0", "focus": "sharp subject focus with background falloff" }, "render_quality": { "detail_level": "hyper-detailed", "realism": "photorealistic", "finish": "high-end commercial output" } }

查看 API 代码
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": "{ \"composition\": { \"orientation\": \"vertical\", \"style\": \"ultra-cinematic\", \"scene_type\": \"mid-air suspended elements\", \"depth_of_field\": \"cinematic shallow depth\" }, \"subject\": { \"main_elements\": [ \"cascading roasted coffee beans\", \"floating chocolate bonbons\", \"mid-air coffee cup with swirling latte art\", \"splashes of milk frozen in motion\", \"splashes of espresso frozen in motion\", \"fine coffee grounds dusting through the air\" ], \"motion_state\": \"frozen action splash photography\" }, \"color_palette\": { \"primary_colors\": [ \"rich coffee brown\", \"warm cream\", \"espresso black\" ], \"background\": \"deep velvety black\" }, \"lighting\": { \"type\": \"dramatic high-contrast studio lighting\", \"highlights\": \"glossy reflections on liquids\", \"shadows\": \"deep cinematic shadows\" }, \"texture_detail\": { \"liquids\": [ \"glossy milk splashes\", \"glossy espresso splashes\", \"crema bubbles with micro-detail\" ], \"solids\": [ \"matte roasted coffee beans\", \"smooth chocolate bonbon surfaces\", \"fine granular coffee grounds\" ] }, \"photography_style\": { \"genre\": \"premium café advertising\", \"aesthetic\": \"editorial splash photography\", \"clarity\": \"crisp ultra-detailed\" }, \"camera\": { \"camera_model\": \"Nikon D850 (virtual)\", \"lens\": \"105mm macro\", \"aperture\": \"f/4.0\", \"focus\": \"sharp subject focus with background falloff\" }, \"render_quality\": { \"detail_level\": \"hyper-detailed\", \"realism\": \"photorealistic\", \"finish\": \"high-end commercial output\" } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

A hyper-realistic Indonesian food infographic poster with dr...

A hyper-realistic Indonesian food infographic poster with dramatic floating ingredients. Vertical composition, bold title text at the top showing the dish name and origin (ASAL). Ingredients levitating in mid-air with clean white label lines and Indonesian text. Cinematic food photography style, ultra-detailed textures, glossy sauces, charred meat, fresh vegetables, steam and smoke effects. Strong contrast lighting, editorial layout, modern typography, professional food magazine look, motion-frozen splashes, realistic shadows, studio lighting, shallow depth of field, 8K ultra-realistic, DSLR quality.

查看 API 代码
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 Indonesian food infographic poster with dramatic floating ingredients. Vertical composition, bold title text at the top showing the dish name and origin (ASAL). Ingredients levitating in mid-air with clean white label lines and Indonesian text. Cinematic food photography style, ultra-detailed textures, glossy sauces, charred meat, fresh vegetables, steam and smoke effects. Strong contrast lighting, editorial layout, modern typography, professional food magazine look, motion-frozen splashes, realistic shadows, studio lighting, shallow depth of field, 8K ultra-realistic, DSLR quality."
}
JSON
IM
图像
Food & Drink nano-banana-2

Use uploaded photo as absolute main reference. Preserve Sebl...

Use uploaded photo as absolute main reference. Preserve Seblak kuah identity, ingredients, textures, and proportions; do not add anything not present. Intact ceramic bowl rises in a smooth swirling twirl motion; slight controlled tilt, stable anchor. Destroy ONLY the FOOD: crackers/kerupuk tear and split revealing bubbly porous texture; toppings (as in reference) separate naturally; spicy broth stretches

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Use uploaded photo as absolute main reference. Preserve Seblak kuah identity, ingredients, textures, and proportions; do not add anything not present. Intact ceramic bowl rises in a smooth swirling twirl motion; slight controlled tilt, stable anchor. Destroy ONLY the FOOD: crackers/kerupuk tear and split revealing bubbly porous texture; toppings (as in reference) separate naturally; spicy broth stretches"
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-realistic smoothie explosion, banana slices, strawberr...

Ultra-realistic smoothie explosion, banana slices, strawberry pieces, blueberry splash, chia seeds, liquid swirl frozen mid-air, bright studio lighting, glossy liquid texture, premium health drink ad style, shallow depth, ultra sharp, frozen motion, cinematic 8K realism --ar 2:3 --v 6 --style raw

查看 API 代码
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 smoothie explosion, banana slices, strawberry pieces, blueberry splash, chia seeds, liquid swirl frozen mid-air, bright studio lighting, glossy liquid texture, premium health drink ad style, shallow depth, ultra sharp, frozen motion, cinematic 8K realism --ar 2:3 --v 6 --style raw"
}
JSON
IM
图像
Food & Drink nano-banana-2

[DISH] captured at the exact millisecond of a dramatic liqui...

[DISH] captured at the exact millisecond of a dramatic liquid explosion, high-speed photography frozen in time, every droplet suspended mid-air with razor precision. Hero [DISH] at center perfectly intact and hyperreal, surrounded by an orchestrated explosion of its own sauce, broth, or glaze erupting outward in every direction. Droplets catching dramatic single-source warm light like liquid diamonds. Each floating ingredient or droplet labeled with ultra-thin lines in clean uppercase: "[INGREDIENT] [descriptor]". Dish name in bold editorial typography: "[DISH NAME]". Subtitle: "[TAGLINE]". Pure [COLOR] background. Mood: Harold Edgerton high-speed photography meets Michelin-star food editorial. 4K, tack sharp every droplet, extraordinary and craveable. Check ALTs for ideas 👇 @AdobeFirefly

查看 API 代码
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] captured at the exact millisecond of a dramatic liquid explosion, high-speed photography frozen in time, every droplet suspended mid-air with razor precision. Hero [DISH] at center perfectly intact and hyperreal, surrounded by an orchestrated explosion of its own sauce, broth, or glaze erupting outward in every direction. Droplets catching dramatic single-source warm light like liquid diamonds. Each floating ingredient or droplet labeled with ultra-thin lines in clean uppercase: \"[INGREDIENT] [descriptor]\". Dish name in bold editorial typography: \"[DISH NAME]\". Subtitle: \"[TAGLINE]\". Pure [COLOR] background. Mood: Harold Edgerton high-speed photography meets Michelin-star food editorial. 4K, tack sharp every droplet, extraordinary and craveable. Check ALTs for ideas 👇 @AdobeFirefly"
}
JSON
IM
图像
Food & Drink nano-banana-2

“Luxury golden-hour styled hero shot of [FOOD] bathed in war...

“Luxury golden-hour styled hero shot of [FOOD] bathed in warm directional sunlight. Long soft shadows, glowing highlights, natural lens flares. Minimal white set with subtle texture. Editorial lifestyle food photography aesthetic, rich color depth, atmospheric warmth, ultra-realistic detail, premium ad quality, 8K resolution.”

查看 API 代码
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 golden-hour styled hero shot of [FOOD] bathed in warm directional sunlight. Long soft shadows, glowing highlights, natural lens flares. Minimal white set with subtle texture. Editorial lifestyle food photography aesthetic, rich color depth, atmospheric warmth, ultra-realistic detail, premium ad quality, 8K resolution.”"
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-high-quality, hyper-realistic commercial food photogra...

Ultra-high-quality, hyper-realistic commercial food photography of [COUNTRY FOOD NAME], rendered in 8K detail with a (4:3 or 3:4) aspect ratio. The food is shown in multiple premium visual variations, each highlighting texture, layers, and freshness in a cinematic way. Food details: – Authentic [COUNTRY] cuisine presentation – Clearly visible layers, fillings, or structure specific to [FOOD TYPE] – Rich, natural colors and realistic textures Motion & drama: – Subtle mid-air elements (crumbs, ingredients, sauce, or spices) – Natural gravity realism, frozen motion – No mess, clean and controlled composition Lighting & camera: – Controlled studio lighting emphasizing texture and shine – High-speed photography look – Shallow to medium depth of field Background: – Solid or soft gradient background in [BACKGROUND COLOR] – Clean, seamless, distraction-free Style & finish: – Luxury food advertising aesthetic – Rich contrast, warm natural tones – Ultra-sharp focus, no artificial glow Negative prompt: Text, logos, branding, hands, people, utensils, plates, tables, cartoon style, burnt food, overexposure, low-detail textures, artificial shine.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-high-quality, hyper-realistic commercial food photography of [COUNTRY FOOD NAME], rendered in 8K detail with a (4:3 or 3:4) aspect ratio. The food is shown in multiple premium visual variations, each highlighting texture, layers, and freshness in a cinematic way. Food details: – Authentic [COUNTRY] cuisine presentation – Clearly visible layers, fillings, or structure specific to [FOOD TYPE] – Rich, natural colors and realistic textures Motion & drama: – Subtle mid-air elements (crumbs, ingredients, sauce, or spices) – Natural gravity realism, frozen motion – No mess, clean and controlled composition Lighting & camera: – Controlled studio lighting emphasizing texture and shine – High-speed photography look – Shallow to medium depth of field Background: – Solid or soft gradient background in [BACKGROUND COLOR] – Clean, seamless, distraction-free Style & finish: – Luxury food advertising aesthetic – Rich contrast, warm natural tones – Ultra-sharp focus, no artificial glow Negative prompt: Text, logos, branding, hands, people, utensils, plates, tables, cartoon style, burnt food, overexposure, low-detail textures, artificial shine."
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-clean modern recipe infographic. Showcase chowmin in a...

Ultra-clean modern recipe infographic. Showcase chowmin in a visually appealing finished form sliced, plated, or portioned floating slightly in perspective or angled view. Arrange ingredients, steps, and tips around the dish in a dynamic editorial layout, not restricted to top-down. Ingredients Section: Include icons or mini illustrations for each ingredient with quantities. Arrange them in clusters, lists, or circular flows connected visually to the dish. Steps Section: Show preparation steps with numbered panels, arrows, or lines, forming a logical flow around the main dish. Include small cooking icons (knife, pan, oven, timer) where helpful. Additional Info (optional): Total calories, prep/cook time, servings, spice level—displayed as clean bubbles or badges near the dish. Visual Style: Editorial infographic meets lifestyle food photography. Vibrant, natural food colors, subtle drop shadows, clean vector icons, modern typography, soft gradients or glassmorphism for step panels. Accent colors can highlight key info (calories, prep time). Composition Guidelines: Finished meal as hero visual (perspective or angled) Ingredients and steps flow dynamically around the dish Clear visual hierarchy: dish > steps > ingredients > optional stats Enough negative space to keep design airy and readable Lighting & Background: Soft, natural studio lighting, minimal textured or gradient background for premium editorial feel. Output: 1080×1080, ultra-crisp, social-feed optimized, no watermark.

查看 API 代码
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 chowmin in a visually appealing finished form sliced, plated, or portioned floating slightly in perspective or angled view. Arrange ingredients, steps, and tips around the dish in a dynamic editorial layout, not restricted to top-down. Ingredients Section: Include icons or mini illustrations for each ingredient with quantities. Arrange them in clusters, lists, or circular flows connected visually to the dish. Steps Section: Show preparation steps with numbered panels, arrows, or lines, forming a logical flow around the main dish. Include small cooking icons (knife, pan, oven, timer) where helpful. Additional Info (optional): Total calories, prep/cook time, servings, spice level—displayed as clean bubbles or badges near the dish. Visual Style: Editorial infographic meets lifestyle food photography. Vibrant, natural food colors, subtle drop shadows, clean vector icons, modern typography, soft gradients or glassmorphism for step panels. Accent colors can highlight key info (calories, prep time). Composition Guidelines: Finished meal as hero visual (perspective or angled) Ingredients and steps flow dynamically around the dish Clear visual hierarchy: dish > steps > ingredients > optional stats Enough negative space to keep design airy and readable Lighting & Background: Soft, natural studio lighting, minimal textured or gradient background for premium editorial feel. Output: 1080×1080, ultra-crisp, social-feed optimized, no watermark."
}
JSON
IM
图像
Food & Drink nano-banana-2

two hands pulling apart a grilled cheese sandwich, strands o...

two hands pulling apart a grilled cheese sandwich, strands of melted cheddar stretching dramatically between the halves, toasted bread edges crisp and golden, crumbs falling mid-air, warm cozy light, cinematic food action photography

查看 API 代码
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": "two hands pulling apart a grilled cheese sandwich, strands of melted cheddar stretching dramatically between the halves, toasted bread edges crisp and golden, crumbs falling mid-air, warm cozy light, cinematic food action photography"
}
JSON
IM
图像
Food & Drink nano-banana-2

Cinematic ultra-high-end product photography of an official...

Cinematic ultra-high-end product photography of an official Monster Energy drink can a standard vertical black aluminum energy drink can featuring the iconic neon reen claw logo of Monster Energy - standing on a dark, rough, textured surface. The can is being engulfed and seemingly possessed by a thick, glossy, jet-black symbiotic liquid inspired by the organic alien symbiote from the 2018 film Venom, directed by Ruben Fleischer. The viscous substance behaves like a living entity - muscular,predatory, and semi-sentient— forming elongated, sinewy tendrils that stretch upward and wrap tightly around the can as if claiming it. The texture must closely resemble Venom's cinematic symbiote: dense, oily, hyper-glossy, elastic, with visible surface tension, micro ripples, sharp blade-like protrusions, and subtle vein-like striations. It should feel alive, aggressive, and biomechanical _ not random liquid splashes.The black symbiote appears to be merging with the Monster can's aluminum surface crawling over it, partially fusing into the metal, as if infecting or possessing the product. Some tendrils anchor to the ground while others rise dynamically into the air, creating tension and controlled chaos. The green claw logo remains clearly visible and becomes the focal contrast element against the dark mass. Camera angle: dramatic low-angle hero shot, slightly tilted (Dutch angle) for cinematicintensity, captured with a macro cinema lens at close range. Shallow depth of field, razor-sharp focus on the logo and the liquid interaction, extreme macro detail. Lighting: moody, high-contrast lighting with strong cold blue rim light sculpting the wet reflective contours of the symbiote and enhancing the metallic sheen of the blackaluminum can. Subtle green light spill from the neon logo reflecting onto nearbyglossy tendrils. Deep shadows with controlled specular highlights for a premium cinematic look.Atmosphere: floating micro-particles, dust, and fine mist suspended in the air,catching the rim light to create depth. Subtle volumetric haze and cinematic diffusion.Background: deep dark void with faint cool blue bokeh and minimal gradient separation, reinforcing a mysterious, powerful, almost supernatural atmosphere. Ultra-realistic, photorealistic, hyper-detailed textures, HDR, 8K resolution, cinematic color grading, dramatic tension, premium commercial advertising aesthetic. IMAGE 2 High-quality commercial photograph of a sleek,thin aluminum Del Valle peach juice can suspended diagonally in a dynamic, gravity-defying composition. The scene conveys a sense of freshness, featuring hyper-realistic slices of juicy peaches and vibrant green leaves spiraling around the can along with splashes of crystal-clear water and delicate droplets. The lighting is bright and airy, creating a soft, refreshing glow throughout the image. The color palette consists of warm peach tones, soft corals and vibrant greens on a minimalist back ground with a peach-toned gradient and shallow depth of field, showing blurred peaches in the background. Commercial aesthetic, macro detail, refreshing and vibrant atmosphere. IMAGE 3 A close-up product photograph of a dark blue glass bottle for "SAUVAGE ELIXIR Dior" perfume, nestled within dark, textured,wet-looking tree bark and small dried botanical sprigs with glowing orange tips. Thelighting is low moody warm orange and deep blue highlights across the wet wood and the glossy bottle. The background is dark and natural. IMAGE 4 A dynamic, high-speed photograph cap- tures a bottle of Jack Daniel's Tennessee Apple whiskey, with its signature green label and square glass shape, splashing of green liquid. Water droplets and fresh green apples with leaves explode outwards around the bottle. The scene is illuminated by vibrant green light from background, highlighting the texture of the glass, liquid, and fruit against a dark green, gradient background green and black green ratio 4:5

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Cinematic ultra-high-end product photography of an official Monster Energy drink can a standard vertical black aluminum energy drink can featuring the iconic neon reen claw logo of Monster Energy - standing on a dark, rough, textured surface. The can is being engulfed and seemingly possessed by a thick, glossy, jet-black symbiotic liquid inspired by the organic alien symbiote from the 2018 film Venom, directed by Ruben Fleischer. The viscous substance behaves like a living entity - muscular,predatory, and semi-sentient— forming elongated, sinewy tendrils that stretch upward and wrap tightly around the can as if claiming it. The texture must closely resemble Venom's cinematic symbiote: dense, oily, hyper-glossy, elastic, with visible surface tension, micro ripples, sharp blade-like protrusions, and subtle vein-like striations. It should feel alive, aggressive, and biomechanical _ not random liquid splashes.The black symbiote appears to be merging with the Monster can's aluminum surface crawling over it, partially fusing into the metal, as if infecting or possessing the product. Some tendrils anchor to the ground while others rise dynamically into the air, creating tension and controlled chaos. The green claw logo remains clearly visible and becomes the focal contrast element against the dark mass. Camera angle: dramatic low-angle hero shot, slightly tilted (Dutch angle) for cinematicintensity, captured with a macro cinema lens at close range. Shallow depth of field, razor-sharp focus on the logo and the liquid interaction, extreme macro detail. Lighting: moody, high-contrast lighting with strong cold blue rim light sculpting the wet reflective contours of the symbiote and enhancing the metallic sheen of the blackaluminum can. Subtle green light spill from the neon logo reflecting onto nearbyglossy tendrils. Deep shadows with controlled specular highlights for a premium cinematic look.Atmosphere: floating micro-particles, dust, and fine mist suspended in the air,catching the rim light to create depth. Subtle volumetric haze and cinematic diffusion.Background: deep dark void with faint cool blue bokeh and minimal gradient separation, reinforcing a mysterious, powerful, almost supernatural atmosphere. Ultra-realistic, photorealistic, hyper-detailed textures, HDR, 8K resolution, cinematic color grading, dramatic tension, premium commercial advertising aesthetic. IMAGE 2 High-quality commercial photograph of a sleek,thin aluminum Del Valle peach juice can suspended diagonally in a dynamic, gravity-defying composition. The scene conveys a sense of freshness, featuring hyper-realistic slices of juicy peaches and vibrant green leaves spiraling around the can along with splashes of crystal-clear water and delicate droplets. The lighting is bright and airy, creating a soft, refreshing glow throughout the image. The color palette consists of warm peach tones, soft corals and vibrant greens on a minimalist back ground with a peach-toned gradient and shallow depth of field, showing blurred peaches in the background. Commercial aesthetic, macro detail, refreshing and vibrant atmosphere. IMAGE 3 A close-up product photograph of a dark blue glass bottle for \"SAUVAGE ELIXIR Dior\" perfume, nestled within dark, textured,wet-looking tree bark and small dried botanical sprigs with glowing orange tips. Thelighting is low moody warm orange and deep blue highlights across the wet wood and the glossy bottle. The background is dark and natural. IMAGE 4 A dynamic, high-speed photograph cap- tures a bottle of Jack Daniel's Tennessee Apple whiskey, with its signature green label and square glass shape, splashing of green liquid. Water droplets and fresh green apples with leaves explode outwards around the bottle. The scene is illuminated by vibrant green light from background, highlighting the texture of the glass, liquid, and fruit against a dark green, gradient background green and black green ratio 4:5"
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-clean modern recipe infographic. Showcase Roast chicke...

Ultra-clean modern recipe infographic. Showcase Roast chicken in a visually appealing finished form—sliced, plated, or portioned—floating slightly in perspective or angled view. Arrange ingredients, steps, and tips around the dish in a dynamic editorial layout, not restricted to top-down. Ingredients Section: Include icons or mini illustrations for each ingredient with quantities. Arrange them in clusters, lists, or circular flows connected visually to the dish. Steps Section: Show preparation steps with numbered panels, arrows, or lines, forming a logical flow around the main dish. Include small cooking icons (knife, pan, oven, timer) where helpful. Additional Info (optional): Total calories, prep/cook time, servings, spice level—displayed as clean bubbles or badges near the dish. Visual Style: Editorial infographic meets lifestyle food photography. Vibrant, natural food colors, subtle drop shadows, clean vector icons, modern typography, soft gradients or glassmorphism for step panels. Accent colors can highlight key info (calories, prep time). Composition Guidelines: Finished meal as hero visual (perspective or angled) Ingredients and steps flow dynamically around the dish Clear visual hierarchy: dish > steps > ingredients > optional stats Enough negative space to keep design airy and readable Lighting & Background: Soft, natural studio lighting, minimal textured or gradient background for premium editorial feel. Output: 1080×1080, ultra-crisp, social-feed optimized, no watermark.”

查看 API 代码
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 Roast chicken in a visually appealing finished form—sliced, plated, or portioned—floating slightly in perspective or angled view. Arrange ingredients, steps, and tips around the dish in a dynamic editorial layout, not restricted to top-down. Ingredients Section: Include icons or mini illustrations for each ingredient with quantities. Arrange them in clusters, lists, or circular flows connected visually to the dish. Steps Section: Show preparation steps with numbered panels, arrows, or lines, forming a logical flow around the main dish. Include small cooking icons (knife, pan, oven, timer) where helpful. Additional Info (optional): Total calories, prep/cook time, servings, spice level—displayed as clean bubbles or badges near the dish. Visual Style: Editorial infographic meets lifestyle food photography. Vibrant, natural food colors, subtle drop shadows, clean vector icons, modern typography, soft gradients or glassmorphism for step panels. Accent colors can highlight key info (calories, prep time). Composition Guidelines: Finished meal as hero visual (perspective or angled) Ingredients and steps flow dynamically around the dish Clear visual hierarchy: dish > steps > ingredients > optional stats Enough negative space to keep design airy and readable Lighting & Background: Soft, natural studio lighting, minimal textured or gradient background for premium editorial feel. Output: 1080×1080, ultra-crisp, social-feed optimized, no watermark.”"
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-realistic cinematic food photography of a traditional...

Ultra-realistic cinematic food photography of a traditional Indonesian dish, presented as a floating ingredients composition. Main dish placed at the bottom in a rustic ceramic bowl or banana leaf plate. Key ingredients suspended in mid-air above the dish, perfectly separated and labeled with clean minimalist typography and thin pointer lines. Dynamic splashes of sauce and spices frozen in motion, high-speed food photography. Natural tropical setting with banana leaves, palm trees, warm sunlight, shallow depth of field. Hyper-detailed textures, glossy sauces, steam and smoke effects, editorial food poster style, premium commercial quality, 8K resolution, soft cinematic lighting, realistic shadows, depth and realism.

查看 API 代码
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 cinematic food photography of a traditional Indonesian dish, presented as a floating ingredients composition. Main dish placed at the bottom in a rustic ceramic bowl or banana leaf plate. Key ingredients suspended in mid-air above the dish, perfectly separated and labeled with clean minimalist typography and thin pointer lines. Dynamic splashes of sauce and spices frozen in motion, high-speed food photography. Natural tropical setting with banana leaves, palm trees, warm sunlight, shallow depth of field. Hyper-detailed textures, glossy sauces, steam and smoke effects, editorial food poster style, premium commercial quality, 8K resolution, soft cinematic lighting, realistic shadows, depth and realism."
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "image_prompt": { "subject": "Rich Asian soup",...

{ "image_prompt": { "subject": "Rich Asian soup", "action": "Ingredients exploding upward in mid-air, swirling spiral splash of broth forming a dynamic ribbon shape, liquid splash crown", "ingredients": [ "Floating beef slices", "Shrimp", "Noodles", "Tofu cubes", "Chili", "Herbs", "Tomatoes", "Cabbage" ], "environment": "Dramatic dark textured background", "lighting": "Studio lighting, strong rim light, glossy broth reflections, cinematic contrast", "photography_style": "Ultra-realistic food photography, high-speed photography, frozen motion, hyper realistic", "camera_settings": { "lens": "85mm", "aperture": "f/4", "focus": "Sharp focus, macro clarity", "resolution": "8K" } } }

查看 API 代码
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\": { \"subject\": \"Rich Asian soup\", \"action\": \"Ingredients exploding upward in mid-air, swirling spiral splash of broth forming a dynamic ribbon shape, liquid splash crown\", \"ingredients\": [ \"Floating beef slices\", \"Shrimp\", \"Noodles\", \"Tofu cubes\", \"Chili\", \"Herbs\", \"Tomatoes\", \"Cabbage\" ], \"environment\": \"Dramatic dark textured background\", \"lighting\": \"Studio lighting, strong rim light, glossy broth reflections, cinematic contrast\", \"photography_style\": \"Ultra-realistic food photography, high-speed photography, frozen motion, hyper realistic\", \"camera_settings\": { \"lens\": \"85mm\", \"aperture\": \"f/4\", \"focus\": \"Sharp focus, macro clarity\", \"resolution\": \"8K\" } } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "content_goal": "viral food visual with high appetite ap...

{ "content_goal": "viral food visual with high appetite appeal", "image_type": "ultra-photorealistic food photography", "visual_style": { "aesthetic": "cinematic food editorial, premium street-food style", "vibe": "steamy, savory, irresistible", "realism": "high-end commercial food realism" }, "composition": { "framing": "close-up or medium close-up", "camera_angle": "45-degree or slightly top-front angle", "subject_position": "centered hero bowl or lifted noodles", "perspective": "depth-rich with strong foreground emphasis" }, "subject": { "description": "freshly prepared noodles captured at peak texture", "presentation": "chopsticks or fork lifting noodles mid-air", "details": "long glossy strands with visible sauce coating", "ingredients": "vegetables, protein, herbs, sesame seeds" }, "texture_details": { "noodles": "silky, elastic strands with sauce cling", "sauce": "rich, glossy, evenly coated", "steam": "visible rising steam for freshness", "garnish": "spring onions, chili flakes, sesame" }, "styling": { "bowl": "ceramic or rustic bowl", "props": "chopsticks, linen napkin, subtle tableware", "messiness": "controlled, appetizing chaos" }, "lighting": { "type": "warm directional food lighting", "quality": "soft yet contrast-rich", "direction": "side or top-side light", "highlight_focus": "noodle gloss and steam", "shadow_style": "soft shadows for depth" }, "color_palette": { "primary": ["golden brown", "soy sauce tones", "warm amber"], "accent": ["chili red", "herb green"], "mood": "cozy, savory, indulgent" }, "environment": { "location": "street-food stall, modern kitchen, or studio setup", "background": "dark or softly blurred background", "atmosphere": "warm, comforting, flavorful" }, "camera_details": { "camera_type": "professional DSLR or mirrorless simulation", "lens": "85mm or macro food lens", "focus": "tack-sharp on lifted noodles", "depth_of_field": "shallow background blur", "resolution": "advertising-grade clarity" }, "quality_control": { "food_realism": "hyper-real texture without plastic look", "steam_accuracy": "natural steam physics", "ai_artifacts": "none", "professional_finish": "commercial food photography quality" }, "overall_mood": "comforting, rich, mouth-watering", "intended_use": { "primary": "viral food post on X", "secondary": "restaurant branding, food editorial, ads" } }

查看 API 代码
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": "{ \"content_goal\": \"viral food visual with high appetite appeal\", \"image_type\": \"ultra-photorealistic food photography\", \"visual_style\": { \"aesthetic\": \"cinematic food editorial, premium street-food style\", \"vibe\": \"steamy, savory, irresistible\", \"realism\": \"high-end commercial food realism\" }, \"composition\": { \"framing\": \"close-up or medium close-up\", \"camera_angle\": \"45-degree or slightly top-front angle\", \"subject_position\": \"centered hero bowl or lifted noodles\", \"perspective\": \"depth-rich with strong foreground emphasis\" }, \"subject\": { \"description\": \"freshly prepared noodles captured at peak texture\", \"presentation\": \"chopsticks or fork lifting noodles mid-air\", \"details\": \"long glossy strands with visible sauce coating\", \"ingredients\": \"vegetables, protein, herbs, sesame seeds\" }, \"texture_details\": { \"noodles\": \"silky, elastic strands with sauce cling\", \"sauce\": \"rich, glossy, evenly coated\", \"steam\": \"visible rising steam for freshness\", \"garnish\": \"spring onions, chili flakes, sesame\" }, \"styling\": { \"bowl\": \"ceramic or rustic bowl\", \"props\": \"chopsticks, linen napkin, subtle tableware\", \"messiness\": \"controlled, appetizing chaos\" }, \"lighting\": { \"type\": \"warm directional food lighting\", \"quality\": \"soft yet contrast-rich\", \"direction\": \"side or top-side light\", \"highlight_focus\": \"noodle gloss and steam\", \"shadow_style\": \"soft shadows for depth\" }, \"color_palette\": { \"primary\": [\"golden brown\", \"soy sauce tones\", \"warm amber\"], \"accent\": [\"chili red\", \"herb green\"], \"mood\": \"cozy, savory, indulgent\" }, \"environment\": { \"location\": \"street-food stall, modern kitchen, or studio setup\", \"background\": \"dark or softly blurred background\", \"atmosphere\": \"warm, comforting, flavorful\" }, \"camera_details\": { \"camera_type\": \"professional DSLR or mirrorless simulation\", \"lens\": \"85mm or macro food lens\", \"focus\": \"tack-sharp on lifted noodles\", \"depth_of_field\": \"shallow background blur\", \"resolution\": \"advertising-grade clarity\" }, \"quality_control\": { \"food_realism\": \"hyper-real texture without plastic look\", \"steam_accuracy\": \"natural steam physics\", \"ai_artifacts\": \"none\", \"professional_finish\": \"commercial food photography quality\" }, \"overall_mood\": \"comforting, rich, mouth-watering\", \"intended_use\": { \"primary\": \"viral food post on X\", \"secondary\": \"restaurant branding, food editorial, ads\" } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "presentation": "Deconstructed exploded view floating in m...

{ "presentation": "Deconstructed exploded view floating in mid-air above a finished burger on a plate", "burger_paddy": "Grilled quinoa and black bean patty with visible char marks, split in half with steam rising", "floating_ingredients": [ "Grains of cooked quinoa", "Whole black beans", "Roasted sweet potato cubes", "Fresh spinach and arugula leaves", "Slices of ripe avocado", "Drips of creamy tahini-lemon dressing", "Diced red onion" ], "plated_item": "A complete burger on a seeded whole-grain bun with fresh greens and dressing, served on a ceramic plate with a side salad" }, "style": { "aesthetic": "Professional commercial food photography", "lighting": "Warm, cinematic, moody lighting with soft highlights on the textures of the food", "background": "Dark, rustic, textured stone or clay oven-like background with a shallow depth of field (bokeh)", "color_palette": "Earthy tones, deep browns, vibrant greens, and warm oranges" }, "composition": { "angle": "Eye-level, straight-on shot", "dynamic_elements": "Floating gravity-defying arrangement, wisps of steam, droplets of sauce", "text_overlay_optional": "Clean gold serif typography at the top reading 'HEALTHY QUINOA BURGER'" }, "technical_specs": { "focus": "Sharp focus on the floating patty and ingredients", "lens": "Macro lens for high detail texture on grains and vegetables", "quality": "8k resolution, photorealistic, commercial advertising quality" } }

查看 API 代码
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": "{ \"presentation\": \"Deconstructed exploded view floating in mid-air above a finished burger on a plate\", \"burger_paddy\": \"Grilled quinoa and black bean patty with visible char marks, split in half with steam rising\", \"floating_ingredients\": [ \"Grains of cooked quinoa\", \"Whole black beans\", \"Roasted sweet potato cubes\", \"Fresh spinach and arugula leaves\", \"Slices of ripe avocado\", \"Drips of creamy tahini-lemon dressing\", \"Diced red onion\" ], \"plated_item\": \"A complete burger on a seeded whole-grain bun with fresh greens and dressing, served on a ceramic plate with a side salad\" }, \"style\": { \"aesthetic\": \"Professional commercial food photography\", \"lighting\": \"Warm, cinematic, moody lighting with soft highlights on the textures of the food\", \"background\": \"Dark, rustic, textured stone or clay oven-like background with a shallow depth of field (bokeh)\", \"color_palette\": \"Earthy tones, deep browns, vibrant greens, and warm oranges\" }, \"composition\": { \"angle\": \"Eye-level, straight-on shot\", \"dynamic_elements\": \"Floating gravity-defying arrangement, wisps of steam, droplets of sauce\", \"text_overlay_optional\": \"Clean gold serif typography at the top reading 'HEALTHY QUINOA BURGER'\" }, \"technical_specs\": { \"focus\": \"Sharp focus on the floating patty and ingredients\", \"lens\": \"Macro lens for high detail texture on grains and vegetables\", \"quality\": \"8k resolution, photorealistic, commercial advertising quality\" } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

minimal studio shot on pure white background, real [Food Nam...

minimal studio shot on pure white background, real [Food Name] emerging from a paper packaging, the visible part outside the packaging is fully photorealistic, the continuation of the same food is drawn as a clean black line illustration printed directly on the surface of the packaging, perfectly aligned with the real food shape, the illustration stays strictly on the packaging material, not floating, not extending into the background, seamless transition between real and printed illustration, modern minimal branding, top-down composition, soft shadows

查看 API 代码
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": "minimal studio shot on pure white background, real [Food Name] emerging from a paper packaging, the visible part outside the packaging is fully photorealistic, the continuation of the same food is drawn as a clean black line illustration printed directly on the surface of the packaging, perfectly aligned with the real food shape, the illustration stays strictly on the packaging material, not floating, not extending into the background, seamless transition between real and printed illustration, modern minimal branding, top-down composition, soft shadows"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "master_prompt": { "global_settings": { "style...

{ "master_prompt": { "global_settings": { "style": "Hyper-realistic commercial product photography", "layout": "Vertical split-screen, two distinct modules", "resolution": "8K UHD, cinematic lighting", "details": "Extreme clarity, frozen motion splashes, micro-condensation" }, "module_1_left": { "subject": { "type": "Clear tall glass of thick chocolate milkshake", "details": "Frothy texture, visible condensation on glass", "text_on_glass": ["CHOCOLATE MILK SHAKE", "mock up", "protein"] }, "action": "Dynamic chocolate liquid splash erupting from the base and top", "floating_elements": [ "Whole blueberries with water droplets", "Fresh green mint leaves", "Tiny chocolate particles suspended in air" ], "background": { "color": "Deep dark blue with soft golden bokeh particles", "lighting": "Cool moonlight-style rim lighting" } }, "module_2_right": { "subject": { "type": "Slim gold metallic Nescafé can", "details": "Heavy condensation, matte gold finish", "text_on_can": ["NESCAFÉ", "CHOCOLATE SHAKE", "NEW LOOK", "PROTEIN BOOST"] }, "action": "Explosive chocolate liquid crown splash at the base", "floating_elements": [ "Roasted coffee beans", "Swirling thick white steam/smoke rising from the top", "Glowing amber embers and sparks" ], "background": { "color": "Warm chocolate brown to dark amber gradient", "atmosphere": "Moody, intense, and smoky" } }, "surface_details": { "base": "Reflective dark wet surface with liquid pooling", "shadows": "Soft separated realistic shadows" } } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"master_prompt\": { \"global_settings\": { \"style\": \"Hyper-realistic commercial product photography\", \"layout\": \"Vertical split-screen, two distinct modules\", \"resolution\": \"8K UHD, cinematic lighting\", \"details\": \"Extreme clarity, frozen motion splashes, micro-condensation\" }, \"module_1_left\": { \"subject\": { \"type\": \"Clear tall glass of thick chocolate milkshake\", \"details\": \"Frothy texture, visible condensation on glass\", \"text_on_glass\": [\"CHOCOLATE MILK SHAKE\", \"mock up\", \"protein\"] }, \"action\": \"Dynamic chocolate liquid splash erupting from the base and top\", \"floating_elements\": [ \"Whole blueberries with water droplets\", \"Fresh green mint leaves\", \"Tiny chocolate particles suspended in air\" ], \"background\": { \"color\": \"Deep dark blue with soft golden bokeh particles\", \"lighting\": \"Cool moonlight-style rim lighting\" } }, \"module_2_right\": { \"subject\": { \"type\": \"Slim gold metallic Nescafé can\", \"details\": \"Heavy condensation, matte gold finish\", \"text_on_can\": [\"NESCAFÉ\", \"CHOCOLATE SHAKE\", \"NEW LOOK\", \"PROTEIN BOOST\"] }, \"action\": \"Explosive chocolate liquid crown splash at the base\", \"floating_elements\": [ \"Roasted coffee beans\", \"Swirling thick white steam/smoke rising from the top\", \"Glowing amber embers and sparks\" ], \"background\": { \"color\": \"Warm chocolate brown to dark amber gradient\", \"atmosphere\": \"Moody, intense, and smoky\" } }, \"surface_details\": { \"base\": \"Reflective dark wet surface with liquid pooling\", \"shadows\": \"Soft separated realistic shadows\" } } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "image_prompt": { "viewpoint": "Realistic first-pers...

{ "image_prompt": { "viewpoint": "Realistic first-person view (FPV)", "action": "Person holding fresh fruit in their hands", "subject_variations": [ "Banana", "Strawberries", "Apple" ], "environment": { "location": "Modern supermarket aisle", "background": "Blurred grocery shelves", "lighting": "Bright commercial lighting" }, "augmented_reality_hud": { "overlay_style": "Clean sci-fi interface, soft glow, glass-like UI elements", "data_display": [ "Nutritional data (calories, vitamins, fiber, sugars, potassium)", "Freshness percentage", "Health indicators" ], "ui_panels": [ "Checklist items (milk, bread, eggs, pasta)", "Recipe suggestions", "Smoothie options", "Vitamin icons" ], "visual_effects": "Subtle light particles, depth-aware AR placement" }, "technical_specs": { "style": "Ultra-realistic photography blended with futuristic AR technology", "aesthetic": "Modern health-tech", "focus": "Sharp focus on hands and fruit, shallow depth of field", "resolution": "8K", "realism": "Cinematic realism" } } }

查看 API 代码
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\": { \"viewpoint\": \"Realistic first-person view (FPV)\", \"action\": \"Person holding fresh fruit in their hands\", \"subject_variations\": [ \"Banana\", \"Strawberries\", \"Apple\" ], \"environment\": { \"location\": \"Modern supermarket aisle\", \"background\": \"Blurred grocery shelves\", \"lighting\": \"Bright commercial lighting\" }, \"augmented_reality_hud\": { \"overlay_style\": \"Clean sci-fi interface, soft glow, glass-like UI elements\", \"data_display\": [ \"Nutritional data (calories, vitamins, fiber, sugars, potassium)\", \"Freshness percentage\", \"Health indicators\" ], \"ui_panels\": [ \"Checklist items (milk, bread, eggs, pasta)\", \"Recipe suggestions\", \"Smoothie options\", \"Vitamin icons\" ], \"visual_effects\": \"Subtle light particles, depth-aware AR placement\" }, \"technical_specs\": { \"style\": \"Ultra-realistic photography blended with futuristic AR technology\", \"aesthetic\": \"Modern health-tech\", \"focus\": \"Sharp focus on hands and fruit, shallow depth of field\", \"resolution\": \"8K\", \"realism\": \"Cinematic realism\" } } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-realistic premium food photography of a layered chocol...

Ultra-realistic premium food photography of a layered chocolate cake on a white plate, centered composition, three thick moist chocolate sponge layers with a smooth white cream filling in the middle, topped with glossy rich chocolate ganache frosting, decorated with fresh raspberries, dark chocolate curls, shards, and small gold sugar pearls, clean minimal light grey studio background, soft diffused professional lighting, gentle natural shadows, ultra-sharp texture detail showing porous sponge and creamy layers, high-end bakery advertising style, shallow depth of field, macro food photography look, photorealistic, 8K resolution, elegant dessert presentation, no text, no watermark Negative prompt: blurry, low resolution, cartoon style, CGI look, artificial textures, messy composition, oversaturated colors, harsh shadows, noise, watermark, text, extra objects, distorted cake shape.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic premium food photography of a layered chocolate cake on a white plate, centered composition, three thick moist chocolate sponge layers with a smooth white cream filling in the middle, topped with glossy rich chocolate ganache frosting, decorated with fresh raspberries, dark chocolate curls, shards, and small gold sugar pearls, clean minimal light grey studio background, soft diffused professional lighting, gentle natural shadows, ultra-sharp texture detail showing porous sponge and creamy layers, high-end bakery advertising style, shallow depth of field, macro food photography look, photorealistic, 8K resolution, elegant dessert presentation, no text, no watermark Negative prompt: blurry, low resolution, cartoon style, CGI look, artificial textures, messy composition, oversaturated colors, harsh shadows, noise, watermark, text, extra objects, distorted cake shape."
}
JSON
IM
图像
Food & Drink nano-banana-2

A hyper-realistic, cinematic close-up of a sizzling gourmet...

A hyper-realistic, cinematic close-up of a sizzling gourmet cheeseburger. The thick, juicy beef patty features a heavy, glossy char and is blanketed in vibrant orange cheddar cheese that melts and oozes down the sides in thick, viscous streams over a toasted brioche bun. The atmosphere is dramatic and smoky, with thick wisps of white and blue steam swirling upwards, surrounded by floating bright orange sparks, glowing embers, and frozen droplets of grease suspended in the air. The lighting is high-contrast and dramatic against a deep black background, emphasizing the glistening textures. Shot with a macro lens, shallow depth of field, and 8k resolution commercial food photography style.

查看 API 代码
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, cinematic close-up of a sizzling gourmet cheeseburger. The thick, juicy beef patty features a heavy, glossy char and is blanketed in vibrant orange cheddar cheese that melts and oozes down the sides in thick, viscous streams over a toasted brioche bun. The atmosphere is dramatic and smoky, with thick wisps of white and blue steam swirling upwards, surrounded by floating bright orange sparks, glowing embers, and frozen droplets of grease suspended in the air. The lighting is high-contrast and dramatic against a deep black background, emphasizing the glistening textures. Shot with a macro lens, shallow depth of field, and 8k resolution commercial food photography style."
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "image_prompt": { "type": "Hyper-realistic editorial...

{ "image_prompt": { "type": "Hyper-realistic editorial food infographic", "subject": { "cuisine": "Authentic Indian Vegetarian", "base_element": "Traditional rustic bowl filled with steaming, freshly cooked curry at the bottom, rich and aromatic", "levitating_ingredients": [ "Golden, crispy paneer cubes", "Soft boiled potato chunks", "Glazed tomato-curry sauce splashes suspended mid-air", "Vibrant fresh coriander leaves", "Sliced green chilies", "Lime wedges", "Thin slices of garlic and ginger", "Crunchy fried onions", "Colorful vegetables: red bell peppers, green peas, orange carrots", "Sprinkle of aromatic spices: turmeric, cumin seeds, red chili powder, garam masala" ] }, "composition": { "layout": "Clean vertical infographic composition", "arrangement": "Realistic gravity-defying floating ingredients, layered for visual hierarchy", "background": "Warm rustic wooden tabletop or traditional Indian brass plate", "visual_hierarchy": "Bowl anchored at the bottom, ingredients rising vertically with natural spacing, creating depth and focus on main dish" }, "graphic_design_elements": { "labels": "Sharp, clear English text annotations for each ingredient", "lines": "Delicate thin white pointer lines connecting floating ingredients to labels", "style": "Professional editorial food magazine infographic, visually educational, vibrant and appetizing" }, "lighting_and_mood": { "lighting": "Cinematic studio lighting with warm highlights and soft shadows, enhancing textures", "color_palette": "Rich, vibrant warm tones to highlight spices, vegetables, and curry", "effects": "Visible rising steam, motion-frozen mid-air ingredients, slight reflections and glistening sauce for mouth-watering effect" }, "technical_specs": { "camera_settings": "Shallow depth of field, ultra-sharp focus on foreground elements, DSLR cinematic lens effect", "details": "Ultra-detailed textures on paneer, vegetables, spices, and sauce; realistic steam and glossy highlights", "resolution": "8K ultra-realistic, suitable for high-end digital display, print, or magazine cover" } } }

查看 API 代码
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\": \"Hyper-realistic editorial food infographic\", \"subject\": { \"cuisine\": \"Authentic Indian Vegetarian\", \"base_element\": \"Traditional rustic bowl filled with steaming, freshly cooked curry at the bottom, rich and aromatic\", \"levitating_ingredients\": [ \"Golden, crispy paneer cubes\", \"Soft boiled potato chunks\", \"Glazed tomato-curry sauce splashes suspended mid-air\", \"Vibrant fresh coriander leaves\", \"Sliced green chilies\", \"Lime wedges\", \"Thin slices of garlic and ginger\", \"Crunchy fried onions\", \"Colorful vegetables: red bell peppers, green peas, orange carrots\", \"Sprinkle of aromatic spices: turmeric, cumin seeds, red chili powder, garam masala\" ] }, \"composition\": { \"layout\": \"Clean vertical infographic composition\", \"arrangement\": \"Realistic gravity-defying floating ingredients, layered for visual hierarchy\", \"background\": \"Warm rustic wooden tabletop or traditional Indian brass plate\", \"visual_hierarchy\": \"Bowl anchored at the bottom, ingredients rising vertically with natural spacing, creating depth and focus on main dish\" }, \"graphic_design_elements\": { \"labels\": \"Sharp, clear English text annotations for each ingredient\", \"lines\": \"Delicate thin white pointer lines connecting floating ingredients to labels\", \"style\": \"Professional editorial food magazine infographic, visually educational, vibrant and appetizing\" }, \"lighting_and_mood\": { \"lighting\": \"Cinematic studio lighting with warm highlights and soft shadows, enhancing textures\", \"color_palette\": \"Rich, vibrant warm tones to highlight spices, vegetables, and curry\", \"effects\": \"Visible rising steam, motion-frozen mid-air ingredients, slight reflections and glistening sauce for mouth-watering effect\" }, \"technical_specs\": { \"camera_settings\": \"Shallow depth of field, ultra-sharp focus on foreground elements, DSLR cinematic lens effect\", \"details\": \"Ultra-detailed textures on paneer, vegetables, spices, and sauce; realistic steam and glossy highlights\", \"resolution\": \"8K ultra-realistic, suitable for high-end digital display, print, or magazine cover\" } } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

Generate a '2:3' hyper-realistic, high-resolution poster fea...

Generate a '2:3' hyper-realistic, high-resolution poster featuring the attached taco image. Adjust its perspective if needed to match the scene’s perspective and blend naturally into the composition. COMPOSITION: Capture a dynamic freeze-frame moment of a taco mid-flip during a street-side catch, shot from a Dutch tilted low three-quarter angle that exaggerates motion and urgency. The camera is positioned slightly below the taco, angled upward, with the taco large and dominant dead-center in the frame, sharply in focus, suspended just above a scarred stainless-steel street cart counter. A single harsh overhead streetlamp mounted top left casts a focused cone of warm light, carving crisp highlights and deep shadows that emphasize motion blur in the background while keeping the taco tack-sharp. The atmosphere is alive with subtle steam rising from the cart grill at bottom left, faint oil smoke drifting upward, and tiny airborne crumbs frozen mid-air. The tone is clean, appetizing, cinematic, and urban. The food-signature prop is a custom round taco press stamped with geometric chili patterns, resting closed on the counter in the lower right foreground beneath the airborne taco, its metal edges catching the lamp’s glare. The story-signature prop is a battered transit-station flip-clock timer mounted on the back wall at top right, showing '19 03' on split flip panels, implying split-second timing and street rhythm. Wet pavement reflections shimmer in the blurred background, grounding the scene in a late-night street setting. Keep visible wiring and cables subtly running along the wall toward the neon and props, with a faint magenta/purple spill mixing into the neon glow on the wall and paper. HEADER: 'STREET FLIGHT' The header is physically formed from bent single neon tubing (no double tubes). Neon tubes are made of reflective glass with neon gas inside, mounted on a chipped concrete wall in the upper center background behind the taco. The neon tubes glow 'warm amber', with uneven brightness, faint buzzing, and soot-darkened mounting brackets. The header is stacked on two lines: 'STREET' above 'FLIGHT'. The letters cast soft neon spill and distorted shadows across the wall’s cracked surface, with minimal grime dulling parts of the glow, and thin black power cables feeding into the neon from the right. TAGLINE: 'Caught in Motion' The tagline is printed in bold condensed sans-serif on a narrow strip of grease-stained receipt paper taped directly beneath the neon header using four translucent yellow tape pieces. The paper sags slightly at the center, edges curled and darkened by oil, catching a softer secondary glow from the neon above with a faint magenta/purple tint in the spill. CALL TO ACTION: 'ORDER NOW' The cta is integrated into the taco press hardware in the foreground as on an angled metal bar/handle element, reading as bold, worn black lettering with slight chipping and grease settled into the letter edges, plus a hard specular highlight running along the metal. STICKER: 'HOT' A small circular red vinyl sticker is physically adhered directly to the taco shell, perfectly centered, with slight white highlights. The sticker conforms to the taco curvature, shows tiny wrinkles under the adhesive, and tiny air pockets are trapped beneath the adhesive to reflect realism.

查看 API 代码
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": "Generate a '2:3' hyper-realistic, high-resolution poster featuring the attached taco image. Adjust its perspective if needed to match the scene’s perspective and blend naturally into the composition. COMPOSITION: Capture a dynamic freeze-frame moment of a taco mid-flip during a street-side catch, shot from a Dutch tilted low three-quarter angle that exaggerates motion and urgency. The camera is positioned slightly below the taco, angled upward, with the taco large and dominant dead-center in the frame, sharply in focus, suspended just above a scarred stainless-steel street cart counter. A single harsh overhead streetlamp mounted top left casts a focused cone of warm light, carving crisp highlights and deep shadows that emphasize motion blur in the background while keeping the taco tack-sharp. The atmosphere is alive with subtle steam rising from the cart grill at bottom left, faint oil smoke drifting upward, and tiny airborne crumbs frozen mid-air. The tone is clean, appetizing, cinematic, and urban. The food-signature prop is a custom round taco press stamped with geometric chili patterns, resting closed on the counter in the lower right foreground beneath the airborne taco, its metal edges catching the lamp’s glare. The story-signature prop is a battered transit-station flip-clock timer mounted on the back wall at top right, showing '19 03' on split flip panels, implying split-second timing and street rhythm. Wet pavement reflections shimmer in the blurred background, grounding the scene in a late-night street setting. Keep visible wiring and cables subtly running along the wall toward the neon and props, with a faint magenta/purple spill mixing into the neon glow on the wall and paper. HEADER: 'STREET FLIGHT' The header is physically formed from bent single neon tubing (no double tubes). Neon tubes are made of reflective glass with neon gas inside, mounted on a chipped concrete wall in the upper center background behind the taco. The neon tubes glow 'warm amber', with uneven brightness, faint buzzing, and soot-darkened mounting brackets. The header is stacked on two lines: 'STREET' above 'FLIGHT'. The letters cast soft neon spill and distorted shadows across the wall’s cracked surface, with minimal grime dulling parts of the glow, and thin black power cables feeding into the neon from the right. TAGLINE: 'Caught in Motion' The tagline is printed in bold condensed sans-serif on a narrow strip of grease-stained receipt paper taped directly beneath the neon header using four translucent yellow tape pieces. The paper sags slightly at the center, edges curled and darkened by oil, catching a softer secondary glow from the neon above with a faint magenta/purple tint in the spill. CALL TO ACTION: 'ORDER NOW' The cta is integrated into the taco press hardware in the foreground as on an angled metal bar/handle element, reading as bold, worn black lettering with slight chipping and grease settled into the letter edges, plus a hard specular highlight running along the metal. STICKER: 'HOT' A small circular red vinyl sticker is physically adhered directly to the taco shell, perfectly centered, with slight white highlights. The sticker conforms to the taco curvature, shows tiny wrinkles under the adhesive, and tiny air pockets are trapped beneath the adhesive to reflect realism."
}
JSON
IM
图像
Food & Drink nano-banana-2

Grape Can – “Vine Glow” Minimalist product photography of a...

Grape Can – “Vine Glow” Minimalist product photography of a 330ml aluminum can labeled “VINE GLOW – Natural Extract”, centered on a clean light grey background. The can features elegant purple vine line art. A realistic horizontal torn paper effect cuts across the middle of the can and background, revealing fresh red and purple grapes inside with water droplets and glossy texture. Soft studio lighting, high detail, sharp focus, commercial advertising style, modern packaging design, symmetrical composition, ultra-realistic, 8k resolution.

查看 API 代码
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": "Grape Can – “Vine Glow” Minimalist product photography of a 330ml aluminum can labeled “VINE GLOW – Natural Extract”, centered on a clean light grey background. The can features elegant purple vine line art. A realistic horizontal torn paper effect cuts across the middle of the can and background, revealing fresh red and purple grapes inside with water droplets and glossy texture. Soft studio lighting, high detail, sharp focus, commercial advertising style, modern packaging design, symmetrical composition, ultra-realistic, 8k resolution."
}
JSON
IM
图像
Food & Drink nano-banana-2

Professional studio food photography series featuring decons...

Professional studio food photography series featuring deconstructed dishes in high-speed levitation. Against a seamless dusty pink background with soft, diffused studio lighting, ingredients float and explode dynamically. Subjects include a hovering stack of tiramisu components (gelato, ladyfingers, mascarpone, coffee beans), borscht ingredients (beets, rye bread, herbs) suspended above a ceramic bowl of soup on a wooden board, and sourdough toast with mashed avocado and a runny poached egg separating in mid-air. Capture fine details like flying crumbs, spice particles, herbs, and liquid droplets with sharp focus and a shallow depth of field. A soft shadow is cast beneath the main floating elements.

查看 API 代码
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": "Professional studio food photography series featuring deconstructed dishes in high-speed levitation. Against a seamless dusty pink background with soft, diffused studio lighting, ingredients float and explode dynamically. Subjects include a hovering stack of tiramisu components (gelato, ladyfingers, mascarpone, coffee beans), borscht ingredients (beets, rye bread, herbs) suspended above a ceramic bowl of soup on a wooden board, and sourdough toast with mashed avocado and a runny poached egg separating in mid-air. Capture fine details like flying crumbs, spice particles, herbs, and liquid droplets with sharp focus and a shallow depth of field. A soft shadow is cast beneath the main floating elements."
}
JSON
常见问题

使用 nano-banana-2 prompts

%{model} 是什么?

%{model} 是 RunAPI 统一模型目录中的模型。这些 prompts 展示了 agent 和后端服务可以复用的实际输入模式。

如何使用这些 prompts?

安装 RunAPI MCP Server 后,复制任意 prompt 并粘贴到 Claude Code、Codex、Cursor 或 Windsurf。开发者也可以复制 API 示例直接调用。

浏览这些 prompts 要付费吗?

浏览和复制 prompt 示例是免费的。只有当你使用 API key 调用 RunAPI 模型生成内容时,才会产生费用。

这些 prompts 可以用于生产环境吗?

可以。把每个 prompt 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。