模型 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

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

Ultra-realistic cinematic food photography of a traditional Indonesian dish, presented as a floating ingredients infographic. The finished dish sits at the bottom in a ceramic bowl on a wooden surface. Above it, key ingredients float in mid-air in a clean vertical layout, each clearly separated and visually balanced. Thin minimalist pointer lines connect ingredients to elegant readable labels. Natural textures, hyper-detailed food surfaces, glossy sauces, steam rising gently, high-speed splash effects frozen in motion. Soft studio lighting mixed with natural daylight, shallow depth of field, premium editorial food poster style, commercial advertising quality, ultra-sharp focus, 8K resolution, realistic shadows, clean background.

查看 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 infographic. The finished dish sits at the bottom in a ceramic bowl on a wooden surface. Above it, key ingredients float in mid-air in a clean vertical layout, each clearly separated and visually balanced. Thin minimalist pointer lines connect ingredients to elegant readable labels. Natural textures, hyper-detailed food surfaces, glossy sauces, steam rising gently, high-speed splash effects frozen in motion. Soft studio lighting mixed with natural daylight, shallow depth of field, premium editorial food poster style, commercial advertising quality, ultra-sharp focus, 8K resolution, realistic shadows, clean background."
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "master_prompt": { "global_settings": { "resol...

{ "master_prompt": { "global_settings": { "resolution": "8K", "aspect_ratio": "3:4", "render_style": "hyper-realistic AI-generated food photography", "focus": "extreme detail, sharp textures, dynamic motion, cinematic lighting", "depth_of_field": "shallow with foreground focus", "noise": "none", "artifacts": "none" }, "Module_1_Image_Style": { "subject": "Single ice cream cone standing upright", "ice_cream": { "top": "vanilla soft-serve swirl", "toppings": [ "two whole strawberries", "one chocolate wafer roll", "one chocolate square partially embedded" ], "sauces": [ "dark chocolate sauce dripping", "green pistachio-like glaze dripping" ] }, "cone": { "type": "waffle cone", "texture": "crisp grid pattern", "condition": "sauce dripping down the cone and pooling at the base" }, "motion_elements": { "floating": [ "small colorful candy spheres", "liquid droplets suspended mid-air" ], "splashes": "sauce splashes around cone base" }, "background": { "style": "soft bokeh", "colors": [ "orange", "green", "purple", "gold" ], "lighting": "warm, cinematic, high contrast" } }, "Module_2_Image_Style": { "subject": "Strawberry ice cream bar on wooden stick, tilted diagonally", "ice_cream": { "base": "pink strawberry ice cream", "top_layer": "white cream layer", "toppings": [ "sliced strawberries embedded", "whole strawberries floating" ] }, "stick": { "material": "wood", "text": "ai ice", "orientation": "visible, centered" }, "motion_elements": { "liquid": "cream and strawberry liquid splashing outward", "floating_objects": [ "metal spoons with pink liquid", "whole strawberries", "mint leaves", "droplets" ] }, "background": { "style": "soft gradient with bokeh particles", "colors": [ "peach", "blue", "cream" ], "lighting": "bright highlights with soft shadows" } }, "Module_3_Image_Style": { "subject": "Spherical scoop composition of strawberry and vanilla ice cream", "ice_cream": { "layers": [ "pink strawberry scoop", "white vanilla scoop" ], "embedded_elements": [ "halved strawberries", "whole strawberries" ] }, "motion_elements": { "liquid": "pink strawberry liquid splashing and dripping downward", "floating_objects": [ "blueberries", "strawberries", "liquid droplets" ], "utensils": "metal spoons suspended mid-air with liquid" }, "surface_detail": { "texture": "smooth ice cream with visible melting edges", "droplets": "high-gloss liquid beads" }, "background": { "style": "cool-toned blur", "colors": [ "light blue", "gray" ], "lighting": "clean studio lighting with specular highlights" } }

查看 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\": { \"resolution\": \"8K\", \"aspect_ratio\": \"3:4\", \"render_style\": \"hyper-realistic AI-generated food photography\", \"focus\": \"extreme detail, sharp textures, dynamic motion, cinematic lighting\", \"depth_of_field\": \"shallow with foreground focus\", \"noise\": \"none\", \"artifacts\": \"none\" }, \"Module_1_Image_Style\": { \"subject\": \"Single ice cream cone standing upright\", \"ice_cream\": { \"top\": \"vanilla soft-serve swirl\", \"toppings\": [ \"two whole strawberries\", \"one chocolate wafer roll\", \"one chocolate square partially embedded\" ], \"sauces\": [ \"dark chocolate sauce dripping\", \"green pistachio-like glaze dripping\" ] }, \"cone\": { \"type\": \"waffle cone\", \"texture\": \"crisp grid pattern\", \"condition\": \"sauce dripping down the cone and pooling at the base\" }, \"motion_elements\": { \"floating\": [ \"small colorful candy spheres\", \"liquid droplets suspended mid-air\" ], \"splashes\": \"sauce splashes around cone base\" }, \"background\": { \"style\": \"soft bokeh\", \"colors\": [ \"orange\", \"green\", \"purple\", \"gold\" ], \"lighting\": \"warm, cinematic, high contrast\" } }, \"Module_2_Image_Style\": { \"subject\": \"Strawberry ice cream bar on wooden stick, tilted diagonally\", \"ice_cream\": { \"base\": \"pink strawberry ice cream\", \"top_layer\": \"white cream layer\", \"toppings\": [ \"sliced strawberries embedded\", \"whole strawberries floating\" ] }, \"stick\": { \"material\": \"wood\", \"text\": \"ai ice\", \"orientation\": \"visible, centered\" }, \"motion_elements\": { \"liquid\": \"cream and strawberry liquid splashing outward\", \"floating_objects\": [ \"metal spoons with pink liquid\", \"whole strawberries\", \"mint leaves\", \"droplets\" ] }, \"background\": { \"style\": \"soft gradient with bokeh particles\", \"colors\": [ \"peach\", \"blue\", \"cream\" ], \"lighting\": \"bright highlights with soft shadows\" } }, \"Module_3_Image_Style\": { \"subject\": \"Spherical scoop composition of strawberry and vanilla ice cream\", \"ice_cream\": { \"layers\": [ \"pink strawberry scoop\", \"white vanilla scoop\" ], \"embedded_elements\": [ \"halved strawberries\", \"whole strawberries\" ] }, \"motion_elements\": { \"liquid\": \"pink strawberry liquid splashing and dripping downward\", \"floating_objects\": [ \"blueberries\", \"strawberries\", \"liquid droplets\" ], \"utensils\": \"metal spoons suspended mid-air with liquid\" }, \"surface_detail\": { \"texture\": \"smooth ice cream with visible melting edges\", \"droplets\": \"high-gloss liquid beads\" }, \"background\": { \"style\": \"cool-toned blur\", \"colors\": [ \"light blue\", \"gray\" ], \"lighting\": \"clean studio lighting with specular highlights\" } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "prompt": "A young red-haired woman sitting inside a bri...

{ "prompt": "A young red-haired woman sitting inside a bright retro-style fast food restaurant, eating a cheeseburger. She is seated in a red vinyl booth by a large window with sunlight streaming in. She is winking while taking a bite of the burger. On the table in front of her is a red tray holding a burger, French fries, and a soft drink in a white cup with red palm tree graphics. The restaurant interior features white tiled walls with red accents and a framed picture on the wall. The lighting is warm and natural, creating a casual, candid atmosphere.", "style": "photorealistic", "lighting": "natural sunlight, warm tones", "camera_angle": "eye-level, centered composition", "environment": "retro American fast food diner", "mood": "playful and casual", "details": "sharp focus, high resolution, realistic skin texture, vibrant colors" }

查看 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": "{ \"prompt\": \"A young red-haired woman sitting inside a bright retro-style fast food restaurant, eating a cheeseburger. She is seated in a red vinyl booth by a large window with sunlight streaming in. She is winking while taking a bite of the burger. On the table in front of her is a red tray holding a burger, French fries, and a soft drink in a white cup with red palm tree graphics. The restaurant interior features white tiled walls with red accents and a framed picture on the wall. The lighting is warm and natural, creating a casual, candid atmosphere.\", \"style\": \"photorealistic\", \"lighting\": \"natural sunlight, warm tones\", \"camera_angle\": \"eye-level, centered composition\", \"environment\": \"retro American fast food diner\", \"mood\": \"playful and casual\", \"details\": \"sharp focus, high resolution, realistic skin texture, vibrant colors\" }"
}
JSON
IM
图像
Food & Drink nano-banana-2

[DISH] styled on a weathered [MATERIAL] surface, shot in pur...

[DISH] styled on a weathered [MATERIAL] surface, shot in pure golden hour light streaming from one side, casting long warm shadows. Hero dish center, surrounded by its raw ingredients casually scattered with artistic intention, whole vegetables, fresh herbs, open spice jars, linen cloth, wooden spoon. Every surface texture hyperreal: wood grain, condensation droplets, herb oil sheen, char marks. Ingredient labels as small handwritten-style chalk or ink tags resting beside each item: "[INGREDIENT] — [origin, preparation]". Dish name in warm hand-lettered typography: "[DISH NAME]". Subtitle: "[TAGLINE]". Mood: Ottolenghi cookbook meets Italian farmhouse meets Sunday farmers market. Warm golden tones, long shadows, film grain, extraordinary and craveable.

查看 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] styled on a weathered [MATERIAL] surface, shot in pure golden hour light streaming from one side, casting long warm shadows. Hero dish center, surrounded by its raw ingredients casually scattered with artistic intention, whole vegetables, fresh herbs, open spice jars, linen cloth, wooden spoon. Every surface texture hyperreal: wood grain, condensation droplets, herb oil sheen, char marks. Ingredient labels as small handwritten-style chalk or ink tags resting beside each item: \"[INGREDIENT] — [origin, preparation]\". Dish name in warm hand-lettered typography: \"[DISH NAME]\". Subtitle: \"[TAGLINE]\". Mood: Ottolenghi cookbook meets Italian farmhouse meets Sunday farmers market. Warm golden tones, long shadows, film grain, extraordinary and craveable."
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-cinematic product photography of a purple energy drink...

Ultra-cinematic product photography of a purple energy drink can labeled “INFINITY ENERGY DRINK – NIGHT KING” in bold white typography, floating mid-air at a dynamic three-quarter angle, wrapped with sleek black over-ear headphones; explosive liquid arcs and splashes frozen in time around the can, crystal-clear ice cubes and glossy berries (raspberries, blueberries, strawberries) suspended in motion, tiny droplets and mist filling the scene; dramatic high-contrast studio lighting with a powerful top key light, sharp rim lights tracing the can edges, and deep shadows for a dark, premium mood; monochromatic purple color palette with luminous highlights and metallic reflections, subtle neon glow accents; shallow depth of field isolating the can as the hero subject, hyper-detailed condensation on the aluminum surface, macro texture on fruit and water; volumetric light rays, floating particles, high-speed splash photography aesthetic, photorealistic, ultra-detailed, 8K, luxury advertising style, sharp focus, 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-cinematic product photography of a purple energy drink can labeled “INFINITY ENERGY DRINK – NIGHT KING” in bold white typography, floating mid-air at a dynamic three-quarter angle, wrapped with sleek black over-ear headphones; explosive liquid arcs and splashes frozen in time around the can, crystal-clear ice cubes and glossy berries (raspberries, blueberries, strawberries) suspended in motion, tiny droplets and mist filling the scene; dramatic high-contrast studio lighting with a powerful top key light, sharp rim lights tracing the can edges, and deep shadows for a dark, premium mood; monochromatic purple color palette with luminous highlights and metallic reflections, subtle neon glow accents; shallow depth of field isolating the can as the hero subject, hyper-detailed condensation on the aluminum surface, macro texture on fruit and water; volumetric light rays, floating particles, high-speed splash photography aesthetic, photorealistic, ultra-detailed, 8K, luxury advertising style, sharp focus, no watermark."
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-cinematic vertical composition of coffee elements susp...

Ultra-cinematic vertical composition of coffee elements suspended in mid-air cascading roasted coffee beans, chocolate bonbons, swirling latte art in a mid-air coffee cup, splashes of milk and espresso frozen in motion, fine coffee grounds dusting through the air captured with rich brown and cream color tones. Hyper-detailed textures with glossy liquid surfaces, crema bubbles, and matte bean textures, lit with dramatic high-contrast studio lighting against a deep, velvety black background. Cinematic depth of field, splash photography aesthetic, premium café advertising style. Shot with a virtual Nikon D850, 105mm macro lens, aperture f/4.0, crisp editorial clarity.

查看 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-cinematic vertical composition of coffee elements suspended in mid-air cascading roasted coffee beans, chocolate bonbons, swirling latte art in a mid-air coffee cup, splashes of milk and espresso frozen in motion, fine coffee grounds dusting through the air captured with rich brown and cream color tones. Hyper-detailed textures with glossy liquid surfaces, crema bubbles, and matte bean textures, lit with dramatic high-contrast studio lighting against a deep, velvety black background. Cinematic depth of field, splash photography aesthetic, premium café advertising style. Shot with a virtual Nikon D850, 105mm macro lens, aperture f/4.0, crisp editorial clarity."
}
JSON
IM
图像
Food & Drink nano-banana-2

High-end cinematic campaign poster. A Minute Maid Pulpy oran...

High-end cinematic campaign poster. A Minute Maid Pulpy orange bottle positioned off-center right on a sun-bleached linen draped over rough coastal stone. Surrounding: a heavy ceramic glass half-filled with pulpy orange juice, fresh orange wedges, dried wildflowers. Background: deep terracotta darkness bleeding to warm amber glow at top — Mediterranean late afternoon atmosphere. Two thin horizontal gold rule lines framing the upper and lower composition. Typography overlaid: left-aligned Playfair Display headline “Sun,” on first line, italic amber “Pulp &” second line, “Soul.” third line — stacked at 64–72px, white and gold alternating. Right-aligned italic Cormorant Garamond subtext “Real pulp. Real warmth. Real morning.” in warm cream. Bottom left spaced caps “MEDITERRANEAN · SLOW PRESSED · SUNRISE RITUAL” in faint amber. Top left eyebrow “MINUTE MAID · PULPY ORANGE” in tracked caps. Lighting: natural diffused window light left-frame, warm terracotta fill, golden pulp glow through glass. Mood: slow coastal morning, honest premium warmth. Shot on ARRI Alexa 35, 75mm prime, shallow DOF, terracotta-ivory bokeh, HDR, lifestyle brunch campaign poster, 4:5 portrait. High-end minimalist campaign poster. A clean Real fruit juice carton standing perfectly centered on cool white Italian marble, surrounded by split pomegranates showing jewel-red seeds, a fresh mint sprig, and scattered ice chips. Background: warm ivory-to-pale-sage gradient, soft botanical shadow suggestion of leaves at edges. Large thin circular frame element surrounding the bottle — elegant geometric restraint. Typography overlaid: large light-weight Cormorant Garamond serif headline “Quietly” then italic bold “Brilliant.” stacked left-aligned in deep forest green, generous line spacing. Small Josefin Sans ultra-tracked subtext “NO DRAMA · JUST FRUIT” below in sage. Thin horizontal divider line. Footer italic “Cold pressed · Botanical blend · Naturally yours” in light sage. Top right “Collection No. 08” in delicate italic grey-green. Lighting: soft cool overhead diffused studio light, clean marble reflection, zero drama. Mood: refined wellness luxury, botanical calm. Shot on Sony VENICE 2, 90mm macro, ultra-shallow DOF, sage bokeh, HDR, lifestyle wellness poster, 4:5 portrait

查看 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": "High-end cinematic campaign poster. A Minute Maid Pulpy orange bottle positioned off-center right on a sun-bleached linen draped over rough coastal stone. Surrounding: a heavy ceramic glass half-filled with pulpy orange juice, fresh orange wedges, dried wildflowers. Background: deep terracotta darkness bleeding to warm amber glow at top — Mediterranean late afternoon atmosphere. Two thin horizontal gold rule lines framing the upper and lower composition. Typography overlaid: left-aligned Playfair Display headline “Sun,” on first line, italic amber “Pulp &” second line, “Soul.” third line — stacked at 64–72px, white and gold alternating. Right-aligned italic Cormorant Garamond subtext “Real pulp. Real warmth. Real morning.” in warm cream. Bottom left spaced caps “MEDITERRANEAN · SLOW PRESSED · SUNRISE RITUAL” in faint amber. Top left eyebrow “MINUTE MAID · PULPY ORANGE” in tracked caps. Lighting: natural diffused window light left-frame, warm terracotta fill, golden pulp glow through glass. Mood: slow coastal morning, honest premium warmth. Shot on ARRI Alexa 35, 75mm prime, shallow DOF, terracotta-ivory bokeh, HDR, lifestyle brunch campaign poster, 4:5 portrait. High-end minimalist campaign poster. A clean Real fruit juice carton standing perfectly centered on cool white Italian marble, surrounded by split pomegranates showing jewel-red seeds, a fresh mint sprig, and scattered ice chips. Background: warm ivory-to-pale-sage gradient, soft botanical shadow suggestion of leaves at edges. Large thin circular frame element surrounding the bottle — elegant geometric restraint. Typography overlaid: large light-weight Cormorant Garamond serif headline “Quietly” then italic bold “Brilliant.” stacked left-aligned in deep forest green, generous line spacing. Small Josefin Sans ultra-tracked subtext “NO DRAMA · JUST FRUIT” below in sage. Thin horizontal divider line. Footer italic “Cold pressed · Botanical blend · Naturally yours” in light sage. Top right “Collection No. 08” in delicate italic grey-green. Lighting: soft cool overhead diffused studio light, clean marble reflection, zero drama. Mood: refined wellness luxury, botanical calm. Shot on Sony VENICE 2, 90mm macro, ultra-shallow DOF, sage bokeh, HDR, lifestyle wellness poster, 4:5 portrait"
}
JSON
IM
图像
Food & Drink nano-banana-2

margherita pizza recipe infographic, Studio Ghibli inspired...

margherita pizza recipe infographic, Studio Ghibli inspired illustration, traditional Italian kitchen setting, warm golden sunset light, whole pizza in center with bubbling cheese, ingredients illustrated around in cute containers, dough ball, tomato sauce 150g, mozzarella 200g, fresh basil leaves, olive oil drizzle, handwritten notebook style labels, soft pastel tones, painterly textures, gentle steam and magical glow, whimsical cozy feeling, clean organized layout, readable text, high detail

查看 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": "margherita pizza recipe infographic, Studio Ghibli inspired illustration, traditional Italian kitchen setting, warm golden sunset light, whole pizza in center with bubbling cheese, ingredients illustrated around in cute containers, dough ball, tomato sauce 150g, mozzarella 200g, fresh basil leaves, olive oil drizzle, handwritten notebook style labels, soft pastel tones, painterly textures, gentle steam and magical glow, whimsical cozy feeling, clean organized layout, readable text, high detail"
}
JSON
IM
图像
Food & Drink nano-banana-2

[DISH] at the precise moment of a dramatic [LIQUID] pour in...

[DISH] at the precise moment of a dramatic [LIQUID] pour in ultra high-speed photography, liquid cascade frozen mid-fall in perfect clarity. Hero [DISH] center on matte [COLOR] surface, [LIQUID] pouring from above in one cinematic ribbon catching warm single-source light, splitting and branching into suspended droplets and threads as it hits the surface. Splatter crown frozen at moment of impact, droplets suspended in perfect arcs. Every surface texture hyperreal: glistening, steaming, sauce pooling in slow motion. Each element labeled with ultra-thin lines in clean uppercase: "[INGREDIENT] [descriptor]". Dish name in elegant editorial typography: "[DISH NAME]". Subtitle: "[TAGLINE]". Mood: Albert Watson food photography meets Harold Edgerton fluid dynamics meets Michelin-star editorial. 4K, tack sharp every thread and droplet, warm single-source light, extraordinary and craveable.

查看 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] at the precise moment of a dramatic [LIQUID] pour in ultra high-speed photography, liquid cascade frozen mid-fall in perfect clarity. Hero [DISH] center on matte [COLOR] surface, [LIQUID] pouring from above in one cinematic ribbon catching warm single-source light, splitting and branching into suspended droplets and threads as it hits the surface. Splatter crown frozen at moment of impact, droplets suspended in perfect arcs. Every surface texture hyperreal: glistening, steaming, sauce pooling in slow motion. Each element labeled with ultra-thin lines in clean uppercase: \"[INGREDIENT] [descriptor]\". Dish name in elegant editorial typography: \"[DISH NAME]\". Subtitle: \"[TAGLINE]\". Mood: Albert Watson food photography meets Harold Edgerton fluid dynamics meets Michelin-star editorial. 4K, tack sharp every thread and droplet, warm single-source light, extraordinary and craveable."
}
JSON
IM
图像
Food & Drink nano-banana-2

Use the uploaded product image as reference. Create an ultra...

Use the uploaded product image as reference. Create an ultra-realistic commercial image of a Garoto chocolate bar. Show a broken bar with melted chocolate texture, visible cocoa details and rich gloss. Add subtle chocolate splashes and floating crumbs. Clean studio setup, vibrant colored background, bold advertising style for social media. 8K ultra realistic, high sharpness, high contrast, professional lighting with realistic shadows and highlights, no text, no watermark, no blur, no distortion, no low quality, no cartoonish 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": "Use the uploaded product image as reference. Create an ultra-realistic commercial image of a Garoto chocolate bar. Show a broken bar with melted chocolate texture, visible cocoa details and rich gloss. Add subtle chocolate splashes and floating crumbs. Clean studio setup, vibrant colored background, bold advertising style for social media. 8K ultra realistic, high sharpness, high contrast, professional lighting with realistic shadows and highlights, no text, no watermark, no blur, no distortion, no low quality, no cartoonish style"
}
JSON
IM
图像
Food & Drink nano-banana-2

a stack of three [FOOD ITEM] with [LIQUID] dripping down, on...

a stack of three [FOOD ITEM] with [LIQUID] dripping down, on a white background, in the style of food photography, magazine cover "[FOOD] pixel", macro shot, studio lighting, nikon z6 ii, volumetric lighting, neutral tones. https://t.co/Op9uSIyKUr

查看 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 stack of three [FOOD ITEM] with [LIQUID] dripping down, on a white background, in the style of food photography, magazine cover \"[FOOD] pixel\", macro shot, studio lighting, nikon z6 ii, volumetric lighting, neutral tones. https://t.co/Op9uSIyKUr"
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-realistic cinematic food photography of a bowl of rich...

Ultra-realistic cinematic food photography of a bowl of rich spicy meat soup exploding upward in a dynamic splash, tender bone-in meat pieces floating mid-air with creamy curry broth forming swirling liquid ribbons, star anise, cinnamon sticks, green onions, and spices suspended in motion, dramatic dark studio background, high-speed splash capture, macro texture detail on meat and broth, steam rising, shallow depth of field, vibrant warm colors, gourmet food advertising style, hyper-detailed liquid physics, 8K, perfect composition.

查看 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 bowl of rich spicy meat soup exploding upward in a dynamic splash, tender bone-in meat pieces floating mid-air with creamy curry broth forming swirling liquid ribbons, star anise, cinnamon sticks, green onions, and spices suspended in motion, dramatic dark studio background, high-speed splash capture, macro texture detail on meat and broth, steam rising, shallow depth of field, vibrant warm colors, gourmet food advertising style, hyper-detailed liquid physics, 8K, perfect composition."
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "cinematic miniature winter world built around a giant N...

{ "cinematic miniature winter world built around a giant Nutella jar, thick chocolate hazelnut spread flowing out forming a glossy mountain ski slope, tiny skiers skiing down the chocolate hill covered with light snow powder, miniature alpine village with wooden cabins and pine trees, ski lift with small gondolas carrying people, snowy forest background and distant mountains, soft winter lighting, ultra realistic textures of melting chocolate and snow, macro tilt shift photography, fantasy food landscape, commercial food advertising style, highly detailed, 8k", "negative_prompt": "blurry, low resolution, distorted jar, incorrect logo, messy composition, unrealistic proportions, extra limbs, duplicate people", "aspect_ratio": "4:5", "style": "ultra realistic macro photography", "lighting": "soft cinematic winter daylight", "camera": "macro lens, tilt shift effect", "quality": "high detail, 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": "{ \"cinematic miniature winter world built around a giant Nutella jar, thick chocolate hazelnut spread flowing out forming a glossy mountain ski slope, tiny skiers skiing down the chocolate hill covered with light snow powder, miniature alpine village with wooden cabins and pine trees, ski lift with small gondolas carrying people, snowy forest background and distant mountains, soft winter lighting, ultra realistic textures of melting chocolate and snow, macro tilt shift photography, fantasy food landscape, commercial food advertising style, highly detailed, 8k\", \"negative_prompt\": \"blurry, low resolution, distorted jar, incorrect logo, messy composition, unrealistic proportions, extra limbs, duplicate people\", \"aspect_ratio\": \"4:5\", \"style\": \"ultra realistic macro photography\", \"lighting\": \"soft cinematic winter daylight\", \"camera\": \"macro lens, tilt shift effect\", \"quality\": \"high detail, 8k\" }"
}
JSON
IM
图像
Food & Drink nano-banana-2

Transform the uploaded logo into a realistic dessert scene w...

Transform the uploaded logo into a realistic dessert scene where the logo silhouette is formed naturally by melted chocolate spread across a plate, while the plate and dessert presentation are also subtly designed around the same logo as a brand identity.The logo must keep its exact shape and proportions, appearing both as a clean branded element (engraved or printed on the plate) and as a naturally melted chocolate formation created through real fluid behavior. Material details: Rich dark chocolate with high viscosity and glossy reflective surface. Thicker areas forming smooth pools, thinner areas creating soft fading edges. Visible chocolate streaks where it has been dragged or spread naturally. Subtle ripples and surface tension curves, with occasional small air bubbles. Physics behavior: Chocolate should behave realistically — slow flow, rounded edges, gravity pulling it into thicker pools. Slight directional flow suggesting it was poured or spread. Variations in thickness depending on how it settled on the plate. Natural imperfections — no perfectly sharp lines. Surface interaction: Ceramic or porcelain dessert plate with subtle gloss finish. Plate includes a minimal branded logo (engraved, embossed, or printed). Chocolate partially overlaps or interacts with the plate’s logo design for realism. Small chocolate smears or residue near edges. Environment & atmosphere: Fine dining or café dessert setting. Partially eaten dessert (cake, pastry, or mousse) nearby. Subtle crumbs, fork marks, and realistic usage details. Refined but not overly staged. Lighting: Soft warm lighting (restaurant or café ambiance). Highlights reflecting on chocolate surface. Gentle shadows adding depth to textures. Camera & composition: Slightly angled top-down macro shot. Logo clearly visible through chocolate formation. Balanced composition showing both dessert and branding. Format: Aspect ratio: STRICT 4:5 vertical. No text overlays. Style: Hyper-real food photography. Luxury dessert aesthetic with natural fluid realism. Brand integrated into environment.

查看 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": "Transform the uploaded logo into a realistic dessert scene where the logo silhouette is formed naturally by melted chocolate spread across a plate, while the plate and dessert presentation are also subtly designed around the same logo as a brand identity.The logo must keep its exact shape and proportions, appearing both as a clean branded element (engraved or printed on the plate) and as a naturally melted chocolate formation created through real fluid behavior. Material details: Rich dark chocolate with high viscosity and glossy reflective surface. Thicker areas forming smooth pools, thinner areas creating soft fading edges. Visible chocolate streaks where it has been dragged or spread naturally. Subtle ripples and surface tension curves, with occasional small air bubbles. Physics behavior: Chocolate should behave realistically — slow flow, rounded edges, gravity pulling it into thicker pools. Slight directional flow suggesting it was poured or spread. Variations in thickness depending on how it settled on the plate. Natural imperfections — no perfectly sharp lines. Surface interaction: Ceramic or porcelain dessert plate with subtle gloss finish. Plate includes a minimal branded logo (engraved, embossed, or printed). Chocolate partially overlaps or interacts with the plate’s logo design for realism. Small chocolate smears or residue near edges. Environment & atmosphere: Fine dining or café dessert setting. Partially eaten dessert (cake, pastry, or mousse) nearby. Subtle crumbs, fork marks, and realistic usage details. Refined but not overly staged. Lighting: Soft warm lighting (restaurant or café ambiance). Highlights reflecting on chocolate surface. Gentle shadows adding depth to textures. Camera & composition: Slightly angled top-down macro shot. Logo clearly visible through chocolate formation. Balanced composition showing both dessert and branding. Format: Aspect ratio: STRICT 4:5 vertical. No text overlays. Style: Hyper-real food photography. Luxury dessert aesthetic with natural fluid realism. Brand integrated into environment."
}
JSON
IM
图像
Food & Drink nano-banana-2

Hyper-realistic product advertisement of a protein shake can...

Hyper-realistic product advertisement of a protein shake can with yellow and cream design, surrounded by floating banana slices, almonds, and peanuts, dynamic milk splash bursting around the can, glossy condensation droplets on surface, vibrant warm yellow background, high-speed splash photography, ultra-detailed textures, commercial food photography style, dramatic lighting, 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": "Hyper-realistic product advertisement of a protein shake can with yellow and cream design, surrounded by floating banana slices, almonds, and peanuts, dynamic milk splash bursting around the can, glossy condensation droplets on surface, vibrant warm yellow background, high-speed splash photography, ultra-detailed textures, commercial food photography style, dramatic lighting, 8K."
}
JSON
IM
图像
Food & Drink nano-banana-2

A high-quality, professional product photograph of a grilled...

A high-quality, professional product photograph of a grilled chicken taco filled with juicy grilled chicken pieces with visible char marks, fresh shredded red cabbage, and creamy white sauce topped with small diced tomatoes, onions, and parsley garnish, all placed inside a soft wheat taco tortilla. The taco looks fresh, flavorful, and well-filled with visible textures and vibrant ingredients. Minimalist style, shot against a pure solid white background with soft, natural shadows. 8K resolution, ultra-sharp focus, clean and modern food photography aesthetic.

查看 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 high-quality, professional product photograph of a grilled chicken taco filled with juicy grilled chicken pieces with visible char marks, fresh shredded red cabbage, and creamy white sauce topped with small diced tomatoes, onions, and parsley garnish, all placed inside a soft wheat taco tortilla. The taco looks fresh, flavorful, and well-filled with visible textures and vibrant ingredients. Minimalist style, shot against a pure solid white background with soft, natural shadows. 8K resolution, ultra-sharp focus, clean and modern food photography aesthetic."
}
JSON
IM
图像
Food & Drink nano-banana-2

Dynamic flavor wave composition of [FOOD], with colorful ene...

Dynamic flavor wave composition of [FOOD], with colorful energy ribbons, mist, and motion streaks bursting outward to represent taste intensity. Ingredient silhouettes embedded within the waves. Clean minimal white background, high-key studio lighting. Ultra-real textures, cinematic motion blur, premium commercial food photography, 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": "Dynamic flavor wave composition of [FOOD], with colorful energy ribbons, mist, and motion streaks bursting outward to represent taste intensity. Ingredient silhouettes embedded within the waves. Clean minimal white background, high-key studio lighting. Ultra-real textures, cinematic motion blur, premium commercial food photography, 8K resolution."
}
JSON
IM
图像
Food & Drink nano-banana-2

A hyper-realistic {FRUIT} dessert burger, centered compositi...

A hyper-realistic {FRUIT} dessert burger, centered composition, soft pastel {FRUIT_COLOR} color palette. Fluffy {FRUIT_COLOR} burger buns with smooth matte texture and light sesame seeds on top. Layers of fresh sliced {FRUIT} and airy white whipped cream inside, with glossy {FRUIT} sauce dripping naturally. Floating {FRUIT} slices and tiny flowers surrounding the burger. Minimal {FRUIT_COLOR} gradient background, soft studio lighting, luxury food advertising style, ultra clean, high detail, shallow depth of field.

查看 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 {FRUIT} dessert burger, centered composition, soft pastel {FRUIT_COLOR} color palette. Fluffy {FRUIT_COLOR} burger buns with smooth matte texture and light sesame seeds on top. Layers of fresh sliced {FRUIT} and airy white whipped cream inside, with glossy {FRUIT} sauce dripping naturally. Floating {FRUIT} slices and tiny flowers surrounding the burger. Minimal {FRUIT_COLOR} gradient background, soft studio lighting, luxury food advertising style, ultra clean, high detail, shallow depth of field."
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "prompt": "A realistic, needle-felted sculpture of a pro...

{ "prompt": "A realistic, needle-felted sculpture of a product from a photo, captured in a high-detail macro studio shot with a whimsical aesthetic.", "subject": { "type": "Needle-felted sculpture", "based_on": "User-provided product photograph", "material": "Soft wool felt", "attributes": [ "Fluffy textures", "Hand-felted details", "Soft edges", "Cozy appearance", "3D look" ] }, "photography": { "shot_type": "Studio shot", "focus": "Macro focus", "detail_level": "High detail" }, "lighting": { "type": "Soft, diffused lighting", "mood": "Warm and gentle" }, "setting": { "background": "Minimal, solid pastel color" }, "aesthetics": { "overall_style": "Whimsical and charming" }, "parameters": { "aspect_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": "{ \"prompt\": \"A realistic, needle-felted sculpture of a product from a photo, captured in a high-detail macro studio shot with a whimsical aesthetic.\", \"subject\": { \"type\": \"Needle-felted sculpture\", \"based_on\": \"User-provided product photograph\", \"material\": \"Soft wool felt\", \"attributes\": [ \"Fluffy textures\", \"Hand-felted details\", \"Soft edges\", \"Cozy appearance\", \"3D look\" ] }, \"photography\": { \"shot_type\": \"Studio shot\", \"focus\": \"Macro focus\", \"detail_level\": \"High detail\" }, \"lighting\": { \"type\": \"Soft, diffused lighting\", \"mood\": \"Warm and gentle\" }, \"setting\": { \"background\": \"Minimal, solid pastel color\" }, \"aesthetics\": { \"overall_style\": \"Whimsical and charming\" }, \"parameters\": { \"aspect_ratio\": \"4:5\" } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

Create a luxury fashion-editorial still life of a sharp tria...

Create a luxury fashion-editorial still life of a sharp triangular prism cake slice made of hard crystal-clear glass-like material, with the featured fruit being [orange], using a single unified candy-glass color tone while preserving the fruit’s original natural hue and form logic, explicitly excluding stems and leaves from recoloring so they retain natural green, the transparent glass cake has polished edges, elegant refraction, crisp highlights and internal reflections identical to solid crystal, inside the cake thick full-bodied seedless fruit cross-sections appear as pure clear glass with perfectly smooth seamless surfaces, one whole fruit in mirror-polished translucent crystal-glass candy style sits on top and another rests beside it, all fruit instances sharing identical color tone and material finish except leaves, arranged on a glossy white ceramic plate with clear crystal shards, a champagne-gold metallic fork and minimal baby’s-breath accents against softly draped white silk fabric, composed with balanced proportions and refined negative space, lit with soft diffused high-end editorial lighting that preserves candy-like color richness and material clarity, hyper-realistic, ultra-detailed, premium aesthetic, no text, no typography, no logo, no watermark, no graphic elements, exclude rough texture, matte surface, cube, square or round cake, ice cube, acrylic or resin block, cloudy transparency, people, hands, faces

查看 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": "Create a luxury fashion-editorial still life of a sharp triangular prism cake slice made of hard crystal-clear glass-like material, with the featured fruit being [orange], using a single unified candy-glass color tone while preserving the fruit’s original natural hue and form logic, explicitly excluding stems and leaves from recoloring so they retain natural green, the transparent glass cake has polished edges, elegant refraction, crisp highlights and internal reflections identical to solid crystal, inside the cake thick full-bodied seedless fruit cross-sections appear as pure clear glass with perfectly smooth seamless surfaces, one whole fruit in mirror-polished translucent crystal-glass candy style sits on top and another rests beside it, all fruit instances sharing identical color tone and material finish except leaves, arranged on a glossy white ceramic plate with clear crystal shards, a champagne-gold metallic fork and minimal baby’s-breath accents against softly draped white silk fabric, composed with balanced proportions and refined negative space, lit with soft diffused high-end editorial lighting that preserves candy-like color richness and material clarity, hyper-realistic, ultra-detailed, premium aesthetic, no text, no typography, no logo, no watermark, no graphic elements, exclude rough texture, matte surface, cube, square or round cake, ice cube, acrylic or resin block, cloudy transparency, people, hands, faces"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "image_prompt": { "main_concept": "High-end commerci...

{ "image_prompt": { "main_concept": "High-end commercial food photography with a floating composition (food levitation effect).", "composition": { "arrangement": "Hero food item suspended in mid-air with complementary ingredients orbiting in perfect balance", "background": "Pure white background", "shadows": "Soft shadows beneath the suspended food" }, "subject_variations": [ { "item": "Creamy raspberry ice cream", "details": "Pistachio crumbs, chocolate chunks, mint leaves, berry drizzle" }, { "item": "Gourmet hotdog", "details": "Glossy sausage, toasted bun, melted cheese, pickles, crispy onions, herbs, sauce" }, { "item": "Handmade dumplings", "details": "Visible filling, fresh herbs, spices, pumpkin pieces, dipping sauce" } ], "lighting_and_color": { "type": "Studio lighting", "highlights": "Clean highlights", "color_accuracy": "Natural color accuracy, realistic depth" }, "technical_specs": { "style": "Minimalist luxury aesthetic, modern advertising style, commercial product photography", "focus": "Ultra-sharp focus on textures, crisp edges", "quality": "Hyper-realistic details, high resolution, 8K 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": "{ \"image_prompt\": { \"main_concept\": \"High-end commercial food photography with a floating composition (food levitation effect).\", \"composition\": { \"arrangement\": \"Hero food item suspended in mid-air with complementary ingredients orbiting in perfect balance\", \"background\": \"Pure white background\", \"shadows\": \"Soft shadows beneath the suspended food\" }, \"subject_variations\": [ { \"item\": \"Creamy raspberry ice cream\", \"details\": \"Pistachio crumbs, chocolate chunks, mint leaves, berry drizzle\" }, { \"item\": \"Gourmet hotdog\", \"details\": \"Glossy sausage, toasted bun, melted cheese, pickles, crispy onions, herbs, sauce\" }, { \"item\": \"Handmade dumplings\", \"details\": \"Visible filling, fresh herbs, spices, pumpkin pieces, dipping sauce\" } ], \"lighting_and_color\": { \"type\": \"Studio lighting\", \"highlights\": \"Clean highlights\", \"color_accuracy\": \"Natural color accuracy, realistic depth\" }, \"technical_specs\": { \"style\": \"Minimalist luxury aesthetic, modern advertising style, commercial product photography\", \"focus\": \"Ultra-sharp focus on textures, crisp edges\", \"quality\": \"Hyper-realistic details, high resolution, 8K quality\" } } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "content_goal": "viral food photography post", "image...

{ "content_goal": "viral food photography post", "image_type": "professional food photography", "food_concept": { "item": "pizza slice", "style": "premium artisan pizza", "serving_state": "freshly lifted slice with cheese pull", "temperature_feel": "hot, freshly baked" }, "visual_style": { "aesthetic": "cinematic food editorial", "vibe": "crave-worthy, indulgent, luxurious", "realism": "ultra-realistic" }, "composition": { "framing": "close-up macro with partial pizza visible", "angle": "45-degree side angle", "focus_point": "cheese stretch and toppings", "depth_of_field": "shallow background blur" }, "pizza_details": { "crust": "golden-brown, crispy edges with soft interior", "cheese": "melted mozzarella with long stretchy pull", "sauce": "rich red tomato sauce", "toppings": [ "pepperoni slices", "fresh basil leaves", "olive oil glaze" ], "texture": "glossy cheese, crisp crust, juicy toppings" }, "lighting": { "type": "soft directional studio lighting", "direction": "side light for texture definition", "highlight": "cheese shine and crust detail", "shadow": "soft natural shadows" }, "color_palette": { "primary_colors": [ "cheese yellow", "tomato red", "golden brown" ], "contrast_level": "medium-high", "mood": "warm, appetizing, mouth-watering" }, "environment": { "surface": "rustic wooden table or marble slab", "background": "dark blurred restaurant or kitchen", "props": [ "pizza cutter", "linen napkin", "wooden board" ] }, "camera_details": { "lens": "macro or 50mm food lens", "focus": "extreme sharpness on slice", "resolution": "high-end commercial quality", "noise": "none" }, "sensory_impact": { "visual_effect": "cheese pull in motion", "viewer_reaction": "instant craving", "emotional_trigger": "comfort food desire" }, "quality_control": { "food_realism": "authentic pizza texture", "ai_artifacts": "none", "professional_finish": "restaurant advertisement grade" }, "intended_use": { "primary": "viral food post on X", "secondary": "restaurant promo, food brand content" } }

查看 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 photography post\", \"image_type\": \"professional food photography\", \"food_concept\": { \"item\": \"pizza slice\", \"style\": \"premium artisan pizza\", \"serving_state\": \"freshly lifted slice with cheese pull\", \"temperature_feel\": \"hot, freshly baked\" }, \"visual_style\": { \"aesthetic\": \"cinematic food editorial\", \"vibe\": \"crave-worthy, indulgent, luxurious\", \"realism\": \"ultra-realistic\" }, \"composition\": { \"framing\": \"close-up macro with partial pizza visible\", \"angle\": \"45-degree side angle\", \"focus_point\": \"cheese stretch and toppings\", \"depth_of_field\": \"shallow background blur\" }, \"pizza_details\": { \"crust\": \"golden-brown, crispy edges with soft interior\", \"cheese\": \"melted mozzarella with long stretchy pull\", \"sauce\": \"rich red tomato sauce\", \"toppings\": [ \"pepperoni slices\", \"fresh basil leaves\", \"olive oil glaze\" ], \"texture\": \"glossy cheese, crisp crust, juicy toppings\" }, \"lighting\": { \"type\": \"soft directional studio lighting\", \"direction\": \"side light for texture definition\", \"highlight\": \"cheese shine and crust detail\", \"shadow\": \"soft natural shadows\" }, \"color_palette\": { \"primary_colors\": [ \"cheese yellow\", \"tomato red\", \"golden brown\" ], \"contrast_level\": \"medium-high\", \"mood\": \"warm, appetizing, mouth-watering\" }, \"environment\": { \"surface\": \"rustic wooden table or marble slab\", \"background\": \"dark blurred restaurant or kitchen\", \"props\": [ \"pizza cutter\", \"linen napkin\", \"wooden board\" ] }, \"camera_details\": { \"lens\": \"macro or 50mm food lens\", \"focus\": \"extreme sharpness on slice\", \"resolution\": \"high-end commercial quality\", \"noise\": \"none\" }, \"sensory_impact\": { \"visual_effect\": \"cheese pull in motion\", \"viewer_reaction\": \"instant craving\", \"emotional_trigger\": \"comfort food desire\" }, \"quality_control\": { \"food_realism\": \"authentic pizza texture\", \"ai_artifacts\": \"none\", \"professional_finish\": \"restaurant advertisement grade\" }, \"intended_use\": { \"primary\": \"viral food post on X\", \"secondary\": \"restaurant promo, food brand content\" } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "style": "ultra-realistic food photography, luxury editori...

{ "style": "ultra-realistic food photography, luxury editorial, macro-detail, natural textures", "images": [ { "id": "image_1", "subject": "assorted praline tower", "composition": "staggered vertical tower, center frame, loose organic stacking", "details": { "fillings": [ "hazelnut chunks irregularly clumped at base", "raspberry gel naturally puddled", "salted caramel with realistic flow lines", "coffee ganache with smooth wave texture", "passionfruit filling with visible pulp specks" ], "accent": "one unique metallic gold nut per filling type placed at layer transitions", "stand": "brushed gold stand with subtle reflections" }, "lighting": { "type": "dramatic side lighting", "angle": "35 degrees left", "effects": "authentic filling refractions, layered shadow play" }, "background": "teal-to-navy gradient with suspended gold motes", "mood": "luxurious, indulgent, artisanal depth" }, { "id": "image_2", "subject": "ruby chocolate tablet", "composition": "floating hexagonal segments above black textured paper liner", "details": { "surface": "hand-tempered imperfections, translucent ruby pink", "inclusions": "embedded fruit flecks visible through chocolate", "motion": "ruby cacao nibs falling in gravity-realistic arc from one segment" }, "lighting": { "key": "top-down at 12 o'clock", "rim": "soft pink rim light at 3 o'clock", "effects": "authentic shadows, enhanced translucency" }, "background": "black-to-warm pink radial gradient with subtle sparkle specks", "mood": "modern, vibrant, floating tension" }, { "id": "image_3", "subject": "white chocolate bonbons", "composition": "organic cluster on clear glass stand", "details": { "marbling": [ "central bonbon with irregular orange passionfruit veins", "surrounding bonbons with pink raspberry swirls", "green matcha flecks with varied density" ], "cutaway": "one bonbon sliced vertically showing gel core with real fruit speckles", "props": "dried fruit flecks scattered below (orange zest curls, raspberry seeds)" }, "lighting": { "key": "soft high-key front light at 10 degrees", "rim": "rear rim light at 35 degrees", "effects": "enhanced marbling contrast and glass refractions" }, "background": "soft taupe with fruit-toned bokeh", "mood": "elegant, fresh, handcrafted" }, { "id": "image_5", "subject": "dark chocolate pistachio bar", "composition": "vertical bar centered on polished black granite slab", "details": { "cross_section": "precision side cut revealing layered pistachio filling", "filling": "whole roasted green pistachios suspended in smooth white chocolate matrix", "binding": "subtle golden honey swirl", "break": "front broken segment with clean snap and visible pistachio pieces", "props": "whole roasted pistachios arranged in ascending curve, honey drips nearby" }, "lighting": { "key": "soft spotlight from top-left at 45 degrees", "rim": "warm side rim light from right at 30 degrees", "highlight": "single pinpoint highlight on largest pistachio" }, "background": "dark espresso brown gradient with floating pistachio shell dust particles", "mood": "rich, bold, premium indulgence" } ] }

查看 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": "{ \"style\": \"ultra-realistic food photography, luxury editorial, macro-detail, natural textures\", \"images\": [ { \"id\": \"image_1\", \"subject\": \"assorted praline tower\", \"composition\": \"staggered vertical tower, center frame, loose organic stacking\", \"details\": { \"fillings\": [ \"hazelnut chunks irregularly clumped at base\", \"raspberry gel naturally puddled\", \"salted caramel with realistic flow lines\", \"coffee ganache with smooth wave texture\", \"passionfruit filling with visible pulp specks\" ], \"accent\": \"one unique metallic gold nut per filling type placed at layer transitions\", \"stand\": \"brushed gold stand with subtle reflections\" }, \"lighting\": { \"type\": \"dramatic side lighting\", \"angle\": \"35 degrees left\", \"effects\": \"authentic filling refractions, layered shadow play\" }, \"background\": \"teal-to-navy gradient with suspended gold motes\", \"mood\": \"luxurious, indulgent, artisanal depth\" }, { \"id\": \"image_2\", \"subject\": \"ruby chocolate tablet\", \"composition\": \"floating hexagonal segments above black textured paper liner\", \"details\": { \"surface\": \"hand-tempered imperfections, translucent ruby pink\", \"inclusions\": \"embedded fruit flecks visible through chocolate\", \"motion\": \"ruby cacao nibs falling in gravity-realistic arc from one segment\" }, \"lighting\": { \"key\": \"top-down at 12 o'clock\", \"rim\": \"soft pink rim light at 3 o'clock\", \"effects\": \"authentic shadows, enhanced translucency\" }, \"background\": \"black-to-warm pink radial gradient with subtle sparkle specks\", \"mood\": \"modern, vibrant, floating tension\" }, { \"id\": \"image_3\", \"subject\": \"white chocolate bonbons\", \"composition\": \"organic cluster on clear glass stand\", \"details\": { \"marbling\": [ \"central bonbon with irregular orange passionfruit veins\", \"surrounding bonbons with pink raspberry swirls\", \"green matcha flecks with varied density\" ], \"cutaway\": \"one bonbon sliced vertically showing gel core with real fruit speckles\", \"props\": \"dried fruit flecks scattered below (orange zest curls, raspberry seeds)\" }, \"lighting\": { \"key\": \"soft high-key front light at 10 degrees\", \"rim\": \"rear rim light at 35 degrees\", \"effects\": \"enhanced marbling contrast and glass refractions\" }, \"background\": \"soft taupe with fruit-toned bokeh\", \"mood\": \"elegant, fresh, handcrafted\" }, { \"id\": \"image_5\", \"subject\": \"dark chocolate pistachio bar\", \"composition\": \"vertical bar centered on polished black granite slab\", \"details\": { \"cross_section\": \"precision side cut revealing layered pistachio filling\", \"filling\": \"whole roasted green pistachios suspended in smooth white chocolate matrix\", \"binding\": \"subtle golden honey swirl\", \"break\": \"front broken segment with clean snap and visible pistachio pieces\", \"props\": \"whole roasted pistachios arranged in ascending curve, honey drips nearby\" }, \"lighting\": { \"key\": \"soft spotlight from top-left at 45 degrees\", \"rim\": \"warm side rim light from right at 30 degrees\", \"highlight\": \"single pinpoint highlight on largest pistachio\" }, \"background\": \"dark espresso brown gradient with floating pistachio shell dust particles\", \"mood\": \"rich, bold, premium indulgence\" } ] }"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "Objective": "Create a surreal, hyper-detailed fantasy w...

{ "Objective": "Create a surreal, hyper-detailed fantasy world where pizza becomes an integral part of landscapes and technology", "Concept": "Imaginative surrealism blending photorealistic food textures with cinematic fantasy environments", "Scenes": [ { "SceneName": "Pizza Coastline Mountain Road", "SceneDescription": { "Environment": "Dramatic coastal cliffs overlooking the ocean", "PrimaryStructure": "A giant pepperoni pizza forming a winding mountain road", "WorldIntegration": { "Cheese": "Melted cheese forming the roadway surface", "Toppings": "Pepperoni slices and basil leaves acting as traffic islands and terrain features" }, "ScaleElements": { "Vehicles": "Tiny cars driving across the pizza road", "ScaleContrast": "Massive pizza landscape versus miniature vehicles" } }, "LightingAndMood": { "TimeOfDay": "Golden hour", "Lighting": "Warm coastal sunlight with long shadows", "Mood": "Whimsical, epic, playful wonder" }, "Composition": { "Camera": "Cinematic wide-angle view", "Perspective": "Elevated, sweeping landscape shot", "DepthOfField": "Moderate depth with foreground and background clarity" } }, { "SceneName": "Pizza Futuristic Car", "SceneDescription": { "Environment": "Rainy neon-lit cyberpunk city street at night", "PrimarySubject": "A pizza slice transformed into a futuristic car", "DesignDetails": { "Body": "Pizza crust and melted cheese forming aerodynamic shape", "Toppings": "Pepperoni and basil integrated into vehicle design", "Wheels": "Realistic rubber tires attached to the pizza vehicle" }, "Motion": "Speeding through the street with dynamic motion blur" }, "LightingAndMood": { "TimeOfDay": "Night", "Lighting": "Moody cyberpunk neon lights in red, teal, and magenta", "Atmosphere": "Rain, mist, reflections on wet asphalt", "Mood": "Energetic, futuristic, playful surrealism" }, "Composition": { "Camera": "Low-angle wide shot", "Perspective": "Dynamic chase-style framing", "DepthOfField": "Shallow depth of field with background bokeh" } } ], "ArtDirection": { "Style": "Playful yet photorealistic surrealism", "TextureQuality": { "Food": "Ultra-realistic pizza textures, visible oil sheen, stretchy melted cheese", "Environment": "High-detail rocks, asphalt, rain droplets, reflections" }, "RealismBalance": "Photorealistic materials combined with impossible scale and concepts" }, "VisualStyle": { "Resolution": "8K ultra-high detail", "ColorGrading": "Cinematic contrast with warm coastal tones and cool neon city tones", "Depth": "Strong sense of scale and dimensionality" }, "Mood": { "OverallTone": "Imaginative, whimsical, cinematic", "EmotionalFeel": "Playful awe and creative wonder" }, "NegativePrompt": [ "flat lighting", "cartoon-only style", "low detail textures", "plastic food", "blurry focus", "dull colors" ], "ResponseFormat": { "Type": "Two-scene cinematic illustration or render", "OutputOptions": [ "Split composition", "Diptych", "Two separate images" ], "AspectRatio": "16:9" } }

查看 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": "{ \"Objective\": \"Create a surreal, hyper-detailed fantasy world where pizza becomes an integral part of landscapes and technology\", \"Concept\": \"Imaginative surrealism blending photorealistic food textures with cinematic fantasy environments\", \"Scenes\": [ { \"SceneName\": \"Pizza Coastline Mountain Road\", \"SceneDescription\": { \"Environment\": \"Dramatic coastal cliffs overlooking the ocean\", \"PrimaryStructure\": \"A giant pepperoni pizza forming a winding mountain road\", \"WorldIntegration\": { \"Cheese\": \"Melted cheese forming the roadway surface\", \"Toppings\": \"Pepperoni slices and basil leaves acting as traffic islands and terrain features\" }, \"ScaleElements\": { \"Vehicles\": \"Tiny cars driving across the pizza road\", \"ScaleContrast\": \"Massive pizza landscape versus miniature vehicles\" } }, \"LightingAndMood\": { \"TimeOfDay\": \"Golden hour\", \"Lighting\": \"Warm coastal sunlight with long shadows\", \"Mood\": \"Whimsical, epic, playful wonder\" }, \"Composition\": { \"Camera\": \"Cinematic wide-angle view\", \"Perspective\": \"Elevated, sweeping landscape shot\", \"DepthOfField\": \"Moderate depth with foreground and background clarity\" } }, { \"SceneName\": \"Pizza Futuristic Car\", \"SceneDescription\": { \"Environment\": \"Rainy neon-lit cyberpunk city street at night\", \"PrimarySubject\": \"A pizza slice transformed into a futuristic car\", \"DesignDetails\": { \"Body\": \"Pizza crust and melted cheese forming aerodynamic shape\", \"Toppings\": \"Pepperoni and basil integrated into vehicle design\", \"Wheels\": \"Realistic rubber tires attached to the pizza vehicle\" }, \"Motion\": \"Speeding through the street with dynamic motion blur\" }, \"LightingAndMood\": { \"TimeOfDay\": \"Night\", \"Lighting\": \"Moody cyberpunk neon lights in red, teal, and magenta\", \"Atmosphere\": \"Rain, mist, reflections on wet asphalt\", \"Mood\": \"Energetic, futuristic, playful surrealism\" }, \"Composition\": { \"Camera\": \"Low-angle wide shot\", \"Perspective\": \"Dynamic chase-style framing\", \"DepthOfField\": \"Shallow depth of field with background bokeh\" } } ], \"ArtDirection\": { \"Style\": \"Playful yet photorealistic surrealism\", \"TextureQuality\": { \"Food\": \"Ultra-realistic pizza textures, visible oil sheen, stretchy melted cheese\", \"Environment\": \"High-detail rocks, asphalt, rain droplets, reflections\" }, \"RealismBalance\": \"Photorealistic materials combined with impossible scale and concepts\" }, \"VisualStyle\": { \"Resolution\": \"8K ultra-high detail\", \"ColorGrading\": \"Cinematic contrast with warm coastal tones and cool neon city tones\", \"Depth\": \"Strong sense of scale and dimensionality\" }, \"Mood\": { \"OverallTone\": \"Imaginative, whimsical, cinematic\", \"EmotionalFeel\": \"Playful awe and creative wonder\" }, \"NegativePrompt\": [ \"flat lighting\", \"cartoon-only style\", \"low detail textures\", \"plastic food\", \"blurry focus\", \"dull colors\" ], \"ResponseFormat\": { \"Type\": \"Two-scene cinematic illustration or render\", \"OutputOptions\": [ \"Split composition\", \"Diptych\", \"Two separate images\" ], \"AspectRatio\": \"16:9\" } }"
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。