模型 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-clean modern recipe infographic. Showcase [FOOD] in a...

Ultra-clean modern recipe infographic. Showcase [FOOD] 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 [FOOD] 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

{ "image_prompt": { "type": "Hyper-realistic food info...

{ "image_prompt": { "type": "Hyper-realistic food infographic", "subject": { "cuisine": "Indonesian", "base_element": "Traditional bowl with steaming hot dish at the bottom", "levitating_ingredients": [ "Juicy meat", "Crispy tofu", "Glossy sauce splashes", "Fresh herbs", "Chilies", "Lime", "Garlic", "Fried shallots" ] }, "composition": { "layout": "Clean vertical composition", "arrangement": "Realistic gravity-defying/floating elements", "background": "Rustic wooden surface", "visual_hierarchy": "Bowl anchored at bottom, ingredients rising vertically" }, "graphic_design_elements": { "labels": "Clear Indonesian text", "lines": "Thin white pointing lines", "style": "Editorial infographic layout, professional food magazine style" }, "lighting_and_mood": { "lighting": "Cinematic studio lighting", "color_palette": "Warm tones", "effects": "Dramatic steam, motion-frozen ingredients" }, "technical_specs": { "camera_settings": "Shallow depth of field, sharp focus, DSLR look", "details": "Ultra-detailed textures", "resolution": "8K ultra-realistic" } } }

查看 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 food infographic\", \"subject\": { \"cuisine\": \"Indonesian\", \"base_element\": \"Traditional bowl with steaming hot dish at the bottom\", \"levitating_ingredients\": [ \"Juicy meat\", \"Crispy tofu\", \"Glossy sauce splashes\", \"Fresh herbs\", \"Chilies\", \"Lime\", \"Garlic\", \"Fried shallots\" ] }, \"composition\": { \"layout\": \"Clean vertical composition\", \"arrangement\": \"Realistic gravity-defying/floating elements\", \"background\": \"Rustic wooden surface\", \"visual_hierarchy\": \"Bowl anchored at bottom, ingredients rising vertically\" }, \"graphic_design_elements\": { \"labels\": \"Clear Indonesian text\", \"lines\": \"Thin white pointing lines\", \"style\": \"Editorial infographic layout, professional food magazine style\" }, \"lighting_and_mood\": { \"lighting\": \"Cinematic studio lighting\", \"color_palette\": \"Warm tones\", \"effects\": \"Dramatic steam, motion-frozen ingredients\" }, \"technical_specs\": { \"camera_settings\": \"Shallow depth of field, sharp focus, DSLR look\", \"details\": \"Ultra-detailed textures\", \"resolution\": \"8K ultra-realistic\" } } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

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

Ultra-clean modern recipe infographic. Showcase briyani 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 briyani 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-clean modern recipe infographic. Showcase Noodles in...

Ultra-clean modern recipe infographic. Showcase Noodles 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 Noodles 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

{ "resolution": "8K UHD", "aspect_ratio": "3:4", "imag...

{ "resolution": "8K UHD", "aspect_ratio": "3:4", "image_style": "hyper-realistic commercial dessert photography", "global_settings": { "quality": "Ultra-high detail, razor-sharp focus, luxury dessert clarity", "lighting": "Controlled studio lighting emphasizing texture, layers, and syrup highlights", "motion": "Frozen mid-air elements with subtle gravity realism", "background_style": "Solid or smooth gradient background, color varies per module", "camera": "High-speed photography look, shallow to medium depth of field", "post_processing": "Rich contrast, warm tones, natural shine, no artificial glow" }, "modules": { "module_1_classic_baklava_stack_explosion": { "scene_description": "A dramatic stack of classic pistachio baklava with flying syrup droplets", "baklava": { "type": "Traditional pistachio baklava", "layers": "Ultra-thin phyllo layers clearly visible", "cut": "Diamond-shaped pieces", "position": "Stacked and floating mid-air" }, "details": { "nuts": "Finely ground bright green pistachios between layers", "syrup": "Golden sugar syrup glistening on edges" }, "motion_effects": { "syrup": "Small syrup droplets splashing outward", "crumbs": "Tiny phyllo flakes suspended in air" }, "background": { "color": "Deep emerald green", "texture": "Smooth, seamless" } }, "module_2_minimal_baklava_plate_floating": { "scene_description": "Minimalist premium baklava presentation with controlled floating crumbs", "baklava": { "type": "Single-layer pistachio baklava pieces", "arrangement": "Neatly aligned rectangular cuts", "surface": "Glossy with light syrup sheen" }, "accent_elements": { "nuts": "Crushed pistachio dust lightly floating", "syrup": "Thin syrup drizzle frozen mid-air" }, "motion_effects": { "particles": "Subtle floating crumbs and nut dust" }, "background": { "color": "Warm beige", "gradient": "Very soft tonal gradient" } }, "module_3_baklava_syrup_pour_drama": { "scene_description": "Cinematic syrup pour over baklava stack", "baklava": { "type": "Thick stacked baklava slices", "texture": "Highly detailed crispy layers" }, "additional_elements": { "syrup": { "state": "Thick golden syrup pouring from above", "motion": "Frozen in elegant flowing strands" }, "nuts": [ "Whole pistachio kernels", "Crushed pistachio fragments" ] }, "motion_effects": { "splashes": "Micro syrup splashes on impact points", "particles": "Floating nut fragments" }, "background": { "color": "Dark chocolate brown", "tone": "High contrast, luxury feel" } }, "module_4_modern_baklava_floating_composition": { "scene_description": "Modern deconstructed baklava composition in mid-air", "elements": { "phyllo": "Crispy golden phyllo sheets floating separately", "nuts": "Pistachio layers suspended between sheets", "syrup": "Glossy syrup threads connecting elements" }, "motion_effects": { "flakes": "Ultra-fine pastry flakes suspended", "drops": "Minimal syrup droplets" }, "background": { "color": "Muted olive green", "texture": "Smooth, seamless" } } }, "negative_prompt": [ "text", "logos", "branding", "hands", "people", "utensils", "plates", "tables", "cartoon style", "excessive syrup pooling", "burnt pastry", "overexposure", "artificial glow", "low detail textures" ] }

查看 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": "{ \"resolution\": \"8K UHD\", \"aspect_ratio\": \"3:4\", \"image_style\": \"hyper-realistic commercial dessert photography\", \"global_settings\": { \"quality\": \"Ultra-high detail, razor-sharp focus, luxury dessert clarity\", \"lighting\": \"Controlled studio lighting emphasizing texture, layers, and syrup highlights\", \"motion\": \"Frozen mid-air elements with subtle gravity realism\", \"background_style\": \"Solid or smooth gradient background, color varies per module\", \"camera\": \"High-speed photography look, shallow to medium depth of field\", \"post_processing\": \"Rich contrast, warm tones, natural shine, no artificial glow\" }, \"modules\": { \"module_1_classic_baklava_stack_explosion\": { \"scene_description\": \"A dramatic stack of classic pistachio baklava with flying syrup droplets\", \"baklava\": { \"type\": \"Traditional pistachio baklava\", \"layers\": \"Ultra-thin phyllo layers clearly visible\", \"cut\": \"Diamond-shaped pieces\", \"position\": \"Stacked and floating mid-air\" }, \"details\": { \"nuts\": \"Finely ground bright green pistachios between layers\", \"syrup\": \"Golden sugar syrup glistening on edges\" }, \"motion_effects\": { \"syrup\": \"Small syrup droplets splashing outward\", \"crumbs\": \"Tiny phyllo flakes suspended in air\" }, \"background\": { \"color\": \"Deep emerald green\", \"texture\": \"Smooth, seamless\" } }, \"module_2_minimal_baklava_plate_floating\": { \"scene_description\": \"Minimalist premium baklava presentation with controlled floating crumbs\", \"baklava\": { \"type\": \"Single-layer pistachio baklava pieces\", \"arrangement\": \"Neatly aligned rectangular cuts\", \"surface\": \"Glossy with light syrup sheen\" }, \"accent_elements\": { \"nuts\": \"Crushed pistachio dust lightly floating\", \"syrup\": \"Thin syrup drizzle frozen mid-air\" }, \"motion_effects\": { \"particles\": \"Subtle floating crumbs and nut dust\" }, \"background\": { \"color\": \"Warm beige\", \"gradient\": \"Very soft tonal gradient\" } }, \"module_3_baklava_syrup_pour_drama\": { \"scene_description\": \"Cinematic syrup pour over baklava stack\", \"baklava\": { \"type\": \"Thick stacked baklava slices\", \"texture\": \"Highly detailed crispy layers\" }, \"additional_elements\": { \"syrup\": { \"state\": \"Thick golden syrup pouring from above\", \"motion\": \"Frozen in elegant flowing strands\" }, \"nuts\": [ \"Whole pistachio kernels\", \"Crushed pistachio fragments\" ] }, \"motion_effects\": { \"splashes\": \"Micro syrup splashes on impact points\", \"particles\": \"Floating nut fragments\" }, \"background\": { \"color\": \"Dark chocolate brown\", \"tone\": \"High contrast, luxury feel\" } }, \"module_4_modern_baklava_floating_composition\": { \"scene_description\": \"Modern deconstructed baklava composition in mid-air\", \"elements\": { \"phyllo\": \"Crispy golden phyllo sheets floating separately\", \"nuts\": \"Pistachio layers suspended between sheets\", \"syrup\": \"Glossy syrup threads connecting elements\" }, \"motion_effects\": { \"flakes\": \"Ultra-fine pastry flakes suspended\", \"drops\": \"Minimal syrup droplets\" }, \"background\": { \"color\": \"Muted olive green\", \"texture\": \"Smooth, seamless\" } } }, \"negative_prompt\": [ \"text\", \"logos\", \"branding\", \"hands\", \"people\", \"utensils\", \"plates\", \"tables\", \"cartoon style\", \"excessive syrup pooling\", \"burnt pastry\", \"overexposure\", \"artificial glow\", \"low detail textures\" ] }"
}
JSON
IM
图像
Food & Drink nano-banana-2

Perfect cinematic cross-section cut through [DISH], sliced c...

Perfect cinematic cross-section cut through [DISH], sliced cleanly down the center revealing every internal layer in full detail. The cut face is facing the camera straight-on, like a geological diagram of flavor. Each visible layer is labeled with a thin horizontal line extending to the right — uppercase sans-serif "[INGREDIENT NAME]" with italic descriptor below. Background: flat matte [COLOR]. Lighting: dramatic side light from left casting long shadows, single warm spotlight on the cut face. Every texture hyperreal — visible moisture, air pockets, char, glaze, and steam. Mood: architectural food photography meets scientific illustration. Dish name "[DISH NAME]" in large elegant type at top. Subtitle: "[TAGLINE]". 4K, tack sharp, Style ref: Wes Anderson symmetry meets Michelin-star kitchen.

查看 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": "Perfect cinematic cross-section cut through [DISH], sliced cleanly down the center revealing every internal layer in full detail. The cut face is facing the camera straight-on, like a geological diagram of flavor. Each visible layer is labeled with a thin horizontal line extending to the right — uppercase sans-serif \"[INGREDIENT NAME]\" with italic descriptor below. Background: flat matte [COLOR]. Lighting: dramatic side light from left casting long shadows, single warm spotlight on the cut face. Every texture hyperreal — visible moisture, air pockets, char, glaze, and steam. Mood: architectural food photography meets scientific illustration. Dish name \"[DISH NAME]\" in large elegant type at top. Subtitle: \"[TAGLINE]\". 4K, tack sharp, Style ref: Wes Anderson symmetry meets Michelin-star kitchen."
}
JSON
IM
图像
Food & Drink nano-banana-2

Create a hyper-realistic exploded vertical infographic compo...

Create a hyper-realistic exploded vertical infographic composition of [FOOD]. At the top, characteristic particles, droplets, or garnishes associated with the food, frozen mid-air. Below it, the primary surface or topping layer with rich texture and realistic material detail. Underneath, the core ingredient layer showing structure, depth, and natural variation. Below that, the supporting base or interior layer, slightly separated to reveal construction. At the bottom, a minimal plate, bowl, cup, or base appropriate to the food’s presentation. Pure white background, soft studio lighting, subtle shadows beneath each floating element, ultra-sharp focus, DSLR macro photography, clean infographic text labels with thin pointer lines, premium editorial food photography aesthetic, 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": "Create a hyper-realistic exploded vertical infographic composition of [FOOD]. At the top, characteristic particles, droplets, or garnishes associated with the food, frozen mid-air. Below it, the primary surface or topping layer with rich texture and realistic material detail. Underneath, the core ingredient layer showing structure, depth, and natural variation. Below that, the supporting base or interior layer, slightly separated to reveal construction. At the bottom, a minimal plate, bowl, cup, or base appropriate to the food’s presentation. Pure white background, soft studio lighting, subtle shadows beneath each floating element, ultra-sharp focus, DSLR macro photography, clean infographic text labels with thin pointer lines, premium editorial food photography aesthetic, 8K quality."
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "aspect_ratio": "3:4", "render_mode": "raw", "series...

{ "aspect_ratio": "3:4", "render_mode": "raw", "series": [ { "index": "1/5", "prompt": "two hands pulling apart a hot freshly baked pizza slice, long elastic mozzarella cheese stretch between the slice and the pie, blistered crust edges, steam rising, crumbs falling mid-air, warm cinematic light, ultra high-detail food action photography", "category": "cheese pull", "lighting": "warm cinematic oven light", "detail_level": "ultra-detailed" }, { "index": "2/5", "prompt": "two hands pulling apart a syrup-soaked baklava piece, thin crispy phyllo layers cracking, rich pistachio filling visible, thick honey syrup stretching and dripping mid-air, golden warm light, cinematic dessert action photography", "category": "syrup & crunch", "lighting": "golden warm light", "detail_level": "ultra-detailed" }, { "index": "3/5", "prompt": "two hands breaking a molten chocolate lava cake in half, glossy dark chocolate flowing out from the center, steam rising gently, crumbs suspended mid-air, soft warm spotlight, cinematic dessert action photography", "category": "molten chocolate", "lighting": "soft warm spotlight", "detail_level": "ultra-detailed" }, { "index": "4/5", "prompt": "two hands tearing a glazed cinnamon roll apart, sticky cinnamon sugar filling stretching in glossy strands, icing dripping slowly, fluffy dough texture visible, cozy warm bakery light, high-detail cinematic food photography", "category": "sticky pull", "lighting": "warm bakery light", "detail_level": "ultra-detailed" }, { "index": "5/5", "prompt": "two hands splitting a classic New York-style cheesecake slice, ultra-creamy interior slowly separating, crumbly biscuit base breaking apart, subtle cream stretch, soft studio warm light, cinematic high-detail dessert photography", "category": "creamy separation", "lighting": "soft warm studio light", "detail_level": "ultra-detailed" } ] }

查看 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": "{ \"aspect_ratio\": \"3:4\", \"render_mode\": \"raw\", \"series\": [ { \"index\": \"1/5\", \"prompt\": \"two hands pulling apart a hot freshly baked pizza slice, long elastic mozzarella cheese stretch between the slice and the pie, blistered crust edges, steam rising, crumbs falling mid-air, warm cinematic light, ultra high-detail food action photography\", \"category\": \"cheese pull\", \"lighting\": \"warm cinematic oven light\", \"detail_level\": \"ultra-detailed\" }, { \"index\": \"2/5\", \"prompt\": \"two hands pulling apart a syrup-soaked baklava piece, thin crispy phyllo layers cracking, rich pistachio filling visible, thick honey syrup stretching and dripping mid-air, golden warm light, cinematic dessert action photography\", \"category\": \"syrup & crunch\", \"lighting\": \"golden warm light\", \"detail_level\": \"ultra-detailed\" }, { \"index\": \"3/5\", \"prompt\": \"two hands breaking a molten chocolate lava cake in half, glossy dark chocolate flowing out from the center, steam rising gently, crumbs suspended mid-air, soft warm spotlight, cinematic dessert action photography\", \"category\": \"molten chocolate\", \"lighting\": \"soft warm spotlight\", \"detail_level\": \"ultra-detailed\" }, { \"index\": \"4/5\", \"prompt\": \"two hands tearing a glazed cinnamon roll apart, sticky cinnamon sugar filling stretching in glossy strands, icing dripping slowly, fluffy dough texture visible, cozy warm bakery light, high-detail cinematic food photography\", \"category\": \"sticky pull\", \"lighting\": \"warm bakery light\", \"detail_level\": \"ultra-detailed\" }, { \"index\": \"5/5\", \"prompt\": \"two hands splitting a classic New York-style cheesecake slice, ultra-creamy interior slowly separating, crumbly biscuit base breaking apart, subtle cream stretch, soft studio warm light, cinematic high-detail dessert photography\", \"category\": \"creamy separation\", \"lighting\": \"soft warm studio light\", \"detail_level\": \"ultra-detailed\" } ] }"
}
JSON
IM
图像
Food & Drink nano-banana-2

Create a realistic yet surreal creative advertisement for [P...

Create a realistic yet surreal creative advertisement for [PRODUCT NAME] in the [PRODUCT CATEGORY] space. The product must be the hero, centered in the frame, and visually “formed” in a smart way that automatically reflects the brand’s spirit and identity. Use a clean, cohesive background that matches the brand’s color palette, with soft cinematic lighting, ultra-realistic premium materials, precise shadows, and a high-end editorial composition. Add one innovative surreal touch directly tied to the product’s nature—creative but not exaggerated. Integrate the real official product logo elegantly and seamlessly within the composition, and generate a short, powerful 3-word English slogan automatically that fits the product type and brand tone. Ultra-high quality, perfectly balanced framing, strong realism, luxury style—no extra text beyond the logo and the 3-word English slogan.

查看 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 realistic yet surreal creative advertisement for [PRODUCT NAME] in the [PRODUCT CATEGORY] space. The product must be the hero, centered in the frame, and visually “formed” in a smart way that automatically reflects the brand’s spirit and identity. Use a clean, cohesive background that matches the brand’s color palette, with soft cinematic lighting, ultra-realistic premium materials, precise shadows, and a high-end editorial composition. Add one innovative surreal touch directly tied to the product’s nature—creative but not exaggerated. Integrate the real official product logo elegantly and seamlessly within the composition, and generate a short, powerful 3-word English slogan automatically that fits the product type and brand tone. Ultra-high quality, perfectly balanced framing, strong realism, luxury style—no extra text beyond the logo and the 3-word English slogan."
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "juice_boxes": [ { "id": 1, "product": {...

{ "juice_boxes": [ { "id": 1, "product": { "brand": "Tip-Top", "flavor": "Strawberry", "image": { "description": "strawberry juice with ripe strawberries", "background": { "color": "fresh pastel pink", "elements": [ "strawberry halves", "juice splashes", "dynamic swirling around the pack" ] } } }, "design": { "style": { "detail": "high-quality detail", "texture": "commercial-grade photorealism" }, "aspect_ratio": "2:3" } }, { "id": 2, "product": { "brand": "Tip-Top", "flavor": "Mango", "image": { "description": "mango juice with ripe golden mangoes", "background": { "color": "tropical orange-yellow gradient", "elements": [ "mango cubes", "swirling juice streams", "energetic and appetizing scene" ] } } }, "design": { "style": { "texture": "ultra-realistic packaging material texture" }, "aspect_ratio": "2:3" } }, { "id": 3, "product": { "brand": "Tip-Top", "flavor": "Grape", "image": { "description": "grape juice with purple grapes", "background": { "color": "deep purple gradient", "elements": [ "grape bunches", "glossy juice splashes", "surrounding the carton" ] } } }, "design": { "style": { "tone": "elegant", "mood": "lively commercial promotion style" }, "aspect_ratio": "2:3" } } ] }

查看 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": "{ \"juice_boxes\": [ { \"id\": 1, \"product\": { \"brand\": \"Tip-Top\", \"flavor\": \"Strawberry\", \"image\": { \"description\": \"strawberry juice with ripe strawberries\", \"background\": { \"color\": \"fresh pastel pink\", \"elements\": [ \"strawberry halves\", \"juice splashes\", \"dynamic swirling around the pack\" ] } } }, \"design\": { \"style\": { \"detail\": \"high-quality detail\", \"texture\": \"commercial-grade photorealism\" }, \"aspect_ratio\": \"2:3\" } }, { \"id\": 2, \"product\": { \"brand\": \"Tip-Top\", \"flavor\": \"Mango\", \"image\": { \"description\": \"mango juice with ripe golden mangoes\", \"background\": { \"color\": \"tropical orange-yellow gradient\", \"elements\": [ \"mango cubes\", \"swirling juice streams\", \"energetic and appetizing scene\" ] } } }, \"design\": { \"style\": { \"texture\": \"ultra-realistic packaging material texture\" }, \"aspect_ratio\": \"2:3\" } }, { \"id\": 3, \"product\": { \"brand\": \"Tip-Top\", \"flavor\": \"Grape\", \"image\": { \"description\": \"grape juice with purple grapes\", \"background\": { \"color\": \"deep purple gradient\", \"elements\": [ \"grape bunches\", \"glossy juice splashes\", \"surrounding the carton\" ] } } }, \"design\": { \"style\": { \"tone\": \"elegant\", \"mood\": \"lively commercial promotion style\" }, \"aspect_ratio\": \"2:3\" } } ] }"
}
JSON
IM
图像
Food & Drink nano-banana-2

Create an infographic image of [FOOD], combining a realistic...

Create an infographic image of [FOOD], combining a realistic photograph or photoreal render of the object with technical annotation overlays placed directly on top. Use black ink–style line drawings and text (technical pen / architectural sketch look) on a pure white studio background, including: •Key component labels •Internal cutaway or exploded-view outlines •Measurements, dimensions, and scale markers •Material callouts and quantities •Arrows indicating function, force, or flow (air, sound, power, pressure) •Simple schematic or sectional diagrams where relevant Place the title “FOOD” inside a hand-drawn technical annotation box in one corner. Style & layout rules: •The real object remains clearly visible beneath the annotations •Annotations feel sketched, technical, and architectural •Clean composition with balanced negative space •Educational, museum-exhibit / engineering-manual vibe Visual style: Minimal technical illustration aesthetic, black linework over realistic imagery, precise but slightly hand-drawn feel. Color palette: White background, black annotation lines and text only. No colors. 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": "Create an infographic image of [FOOD], combining a realistic photograph or photoreal render of the object with technical annotation overlays placed directly on top. Use black ink–style line drawings and text (technical pen / architectural sketch look) on a pure white studio background, including: •Key component labels •Internal cutaway or exploded-view outlines •Measurements, dimensions, and scale markers •Material callouts and quantities •Arrows indicating function, force, or flow (air, sound, power, pressure) •Simple schematic or sectional diagrams where relevant Place the title “FOOD” inside a hand-drawn technical annotation box in one corner. Style & layout rules: •The real object remains clearly visible beneath the annotations •Annotations feel sketched, technical, and architectural •Clean composition with balanced negative space •Educational, museum-exhibit / engineering-manual vibe Visual style: Minimal technical illustration aesthetic, black linework over realistic imagery, precise but slightly hand-drawn feel. Color palette: White background, black annotation lines and text only. No colors. Output: 1080×1080, ultra-crisp, social-feed optimized, no watermark."
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-realistic food photography of a prepared creamy white...

Ultra-realistic food photography of a prepared creamy white sauce penne pasta served in a minimal ceramic bowl. Perfectly cooked penne coated evenly in rich, glossy cream sauce, topped with freshly grated parmesan cheese and finely chopped green herbs. Clean white studio background, soft diffused lighting, gentle shadows under the bowl, natural highlights on the sauce, realistic texture and thickness. Centered composition, shallow depth of field, premium restaurant-style presentation, high-detail food styling, 8K quality, sharp focus, no text, no labels, no hands, no props, 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-realistic food photography of a prepared creamy white sauce penne pasta served in a minimal ceramic bowl. Perfectly cooked penne coated evenly in rich, glossy cream sauce, topped with freshly grated parmesan cheese and finely chopped green herbs. Clean white studio background, soft diffused lighting, gentle shadows under the bowl, natural highlights on the sauce, realistic texture and thickness. Centered composition, shallow depth of field, premium restaurant-style presentation, high-detail food styling, 8K quality, sharp focus, no text, no labels, no hands, no props, no watermark."
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-realistic commercial product photography of a caramel...

Ultra-realistic commercial product photography of a caramel frappuccino in a clear plastic cup with dome lid and green straw, topped with whipped cream and caramel drizzle, floating mid-air. Coffee beans exploding around the cup with fine coffee powder dust particles suspended in the air, dynamic caramel splash trails swirling around the drink. Dark smoky background with dramatic spotlight from above, warm golden rim lighting, high contrast, sharp focus, macro details, cinematic depth of field, hyper-detailed texture, premium beverage advertisement, 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": "Ultra-realistic commercial product photography of a caramel frappuccino in a clear plastic cup with dome lid and green straw, topped with whipped cream and caramel drizzle, floating mid-air. Coffee beans exploding around the cup with fine coffee powder dust particles suspended in the air, dynamic caramel splash trails swirling around the drink. Dark smoky background with dramatic spotlight from above, warm golden rim lighting, high contrast, sharp focus, macro details, cinematic depth of field, hyper-detailed texture, premium beverage advertisement, 8K resolution."
}
JSON
IM
图像
Food & Drink nano-banana-2

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

Ultra-clean modern recipe infographic. Showcase Pizza 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 Pizza 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

{ "model": "Nano Banana / Gemini-style", "aspect_ratio":...

{ "model": "Nano Banana / Gemini-style", "aspect_ratio": "3:4", "render_mode": "raw", "series": [ { "index": "1/5", "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", "category": "cheese pull", "lighting": "warm cozy cinematic light", "detail_level": "high-detail" }, { "index": "2/5", "prompt": "two hands breaking a warm chocolate chip cookie in half, melted chocolate strands stretching between the pieces, crumbs falling mid-air, cozy warm light, high-detail food action photography", "category": "chocolate stretch", "lighting": "soft cozy warm light", "detail_level": "high-detail" }, { "index": "3/5", "prompt": "two hands splitting a peanut butter and jelly sandwich in half, thick peanut butter and jam stretching in gooey strands, toasted bread edges crisp, crumbs falling mid-air, warm cozy backlight, high-detail food action photography", "category": "gooey spread pull", "lighting": "warm backlight", "detail_level": "high-detail" }, { "index": "4/5", "prompt": "two hands tearing a syrup-soaked Belgian waffle, caramel strands stretching between pieces, crumbs and syrup droplets suspended mid-air, golden hour backlight, cozy cinematic food action photography", "category": "syrup stretch", "lighting": "golden hour backlight", "detail_level": "ultra-detailed" }, { "index": "5/5", "prompt": "two hands breaking a southern-style buttery biscuit in half, hot steam rising, melted butter pooling inside the cracks, crumbs falling mid-air, warm country kitchen light, cinematic high-detail food action photography", "category": "steam & butter", "lighting": "warm kitchen light", "detail_level": "ultra-detailed" } ] }

查看 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": "{ \"model\": \"Nano Banana / Gemini-style\", \"aspect_ratio\": \"3:4\", \"render_mode\": \"raw\", \"series\": [ { \"index\": \"1/5\", \"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\", \"category\": \"cheese pull\", \"lighting\": \"warm cozy cinematic light\", \"detail_level\": \"high-detail\" }, { \"index\": \"2/5\", \"prompt\": \"two hands breaking a warm chocolate chip cookie in half, melted chocolate strands stretching between the pieces, crumbs falling mid-air, cozy warm light, high-detail food action photography\", \"category\": \"chocolate stretch\", \"lighting\": \"soft cozy warm light\", \"detail_level\": \"high-detail\" }, { \"index\": \"3/5\", \"prompt\": \"two hands splitting a peanut butter and jelly sandwich in half, thick peanut butter and jam stretching in gooey strands, toasted bread edges crisp, crumbs falling mid-air, warm cozy backlight, high-detail food action photography\", \"category\": \"gooey spread pull\", \"lighting\": \"warm backlight\", \"detail_level\": \"high-detail\" }, { \"index\": \"4/5\", \"prompt\": \"two hands tearing a syrup-soaked Belgian waffle, caramel strands stretching between pieces, crumbs and syrup droplets suspended mid-air, golden hour backlight, cozy cinematic food action photography\", \"category\": \"syrup stretch\", \"lighting\": \"golden hour backlight\", \"detail_level\": \"ultra-detailed\" }, { \"index\": \"5/5\", \"prompt\": \"two hands breaking a southern-style buttery biscuit in half, hot steam rising, melted butter pooling inside the cracks, crumbs falling mid-air, warm country kitchen light, cinematic high-detail food action photography\", \"category\": \"steam & butter\", \"lighting\": \"warm kitchen light\", \"detail_level\": \"ultra-detailed\" } ] }"
}
JSON
IM
图像
Food & Drink nano-banana-2

A high-end commercial food photograph of the same two tacos...

A high-end commercial food photograph of the same two tacos from the reference image, preserving their exact structure, fillings, proportions, and arrangement. The camera angle is slightly adjusted to a more flattering three-quarter close-up, enhancing depth and appetite appeal without altering the tacos themselves. Soft cinematic lighting highlights the textures of the tortillas and fillings, with subtle steam and natural sheen to emphasize freshness. The background is replaced with a clean, modern, out-of-focus setting in warm complementary tones that enhance the food without distracting from it. Shallow depth of field, crisp focus on the tacos, rich contrast, natural colors, and premium restaurant advertising quality. No added or removed ingredients, refined composition, lighting, and environment. Image 2: Exploded-view commercial visualization of the taco from the image, presented as premium recipe-style breakdown. The taco is deconstructed into four visible ingredients, matching the original taco precisely in composition, color, and texture. No additional ingredients. The ingredients are separated and arranged in a clean vertical stack, evenly spaced from bottom to top, floating in place with precise alignment and symmetry. Ingredient order (bottom → top): Soft wheat taco tortilla Shredded red cabbage Grilled chicken pieces Sauce with garnish (topped with a small mixed garnish of diced onion, tomato, and parsley, approximately 5–6 small cubes total, lightly mixed, placed naturally on top) Each ingredient is visually distinct and clearly readable in shape and texture. Annotation design requirements: – Large, bold sans-serif font, high legibility at feed scale – Each annotation placed inside a solid or softly rounded rectangular color block – Background color of each block corresponds subtly to the ingredient color (tomato red, lettuce green, meat warm brown, sauce white/cream, pita beige) – High contrast text (dark on light, light on dark) – Thick, clean connector lines pointing clearly to each ingredient – No transparency that reduces readability – Annotations must visually dominate over background without covering ingredients Background is soft, neutral, and atmospheric, with subtle depth and gentle gradients, inspired by premium food advertising. Overall style is clean, modern, and appetizing, commercial-ready without technical or schematic feel. No extra elements, no substitutions, no reinterpretation of ingredients.

查看 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-end commercial food photograph of the same two tacos from the reference image, preserving their exact structure, fillings, proportions, and arrangement. The camera angle is slightly adjusted to a more flattering three-quarter close-up, enhancing depth and appetite appeal without altering the tacos themselves. Soft cinematic lighting highlights the textures of the tortillas and fillings, with subtle steam and natural sheen to emphasize freshness. The background is replaced with a clean, modern, out-of-focus setting in warm complementary tones that enhance the food without distracting from it. Shallow depth of field, crisp focus on the tacos, rich contrast, natural colors, and premium restaurant advertising quality. No added or removed ingredients, refined composition, lighting, and environment. Image 2: Exploded-view commercial visualization of the taco from the image, presented as premium recipe-style breakdown. The taco is deconstructed into four visible ingredients, matching the original taco precisely in composition, color, and texture. No additional ingredients. The ingredients are separated and arranged in a clean vertical stack, evenly spaced from bottom to top, floating in place with precise alignment and symmetry. Ingredient order (bottom → top): Soft wheat taco tortilla Shredded red cabbage Grilled chicken pieces Sauce with garnish (topped with a small mixed garnish of diced onion, tomato, and parsley, approximately 5–6 small cubes total, lightly mixed, placed naturally on top) Each ingredient is visually distinct and clearly readable in shape and texture. Annotation design requirements: – Large, bold sans-serif font, high legibility at feed scale – Each annotation placed inside a solid or softly rounded rectangular color block – Background color of each block corresponds subtly to the ingredient color (tomato red, lettuce green, meat warm brown, sauce white/cream, pita beige) – High contrast text (dark on light, light on dark) – Thick, clean connector lines pointing clearly to each ingredient – No transparency that reduces readability – Annotations must visually dominate over background without covering ingredients Background is soft, neutral, and atmospheric, with subtle depth and gentle gradients, inspired by premium food advertising. Overall style is clean, modern, and appetizing, commercial-ready without technical or schematic feel. No extra elements, no substitutions, no reinterpretation of ingredients."
}
JSON
IM
图像
Food & Drink nano-banana-2

{ “subject”: “巧克力咖啡饮品的超写实垂直爆炸分解图”, “layout”: “中心垂直对齐,各组件独立悬浮...

{ “subject”: “巧克力咖啡饮品的超写实垂直爆炸分解图”, “layout”: “中心垂直对齐,各组件独立悬浮且间距清晰”, “layers”: [ { “component”: “可可粉微粒”, “position”: “顶部” }, { “component”: “光泽深色巧克力酱丝带与滴落状”, “position”: “独立层” }, { “component”: “轻盈的打发奶油堆”, “position”: “独立层” }, { “component”: “丝滑的巧克力咖啡液态层”, “position”: “独立层” }, { “component”: “烘焙咖啡豆”, “position”: “独立层” }, { “component”: “糖晶体”, “position”: “独立层” }, { “component”: “带配重底座的小型透明螺纹玻璃杯(空杯)”, “position”: “底部” } ], “background”: “高级深色背景:干净的影棚背景,近黑色的石墨色至木炭色渐变,柔和且平滑”, “lighting_and_style”: { “lighting”: “柔和且受控的影棚光,每层下方有清晰的分层阴影”, “detail”: “超锐利微距写实主义,右侧极简细指示线与英文标签”, “category”: “高端产品信息图”, “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": "{ “subject”: “巧克力咖啡饮品的超写实垂直爆炸分解图”, “layout”: “中心垂直对齐,各组件独立悬浮且间距清晰”, “layers”: [ { “component”: “可可粉微粒”, “position”: “顶部” }, { “component”: “光泽深色巧克力酱丝带与滴落状”, “position”: “独立层” }, { “component”: “轻盈的打发奶油堆”, “position”: “独立层” }, { “component”: “丝滑的巧克力咖啡液态层”, “position”: “独立层” }, { “component”: “烘焙咖啡豆”, “position”: “独立层” }, { “component”: “糖晶体”, “position”: “独立层” }, { “component”: “带配重底座的小型透明螺纹玻璃杯(空杯)”, “position”: “底部” } ], “background”: “高级深色背景:干净的影棚背景,近黑色的石墨色至木炭色渐变,柔和且平滑”, “lighting_and_style”: { “lighting”: “柔和且受控的影棚光,每层下方有清晰的分层阴影”, “detail”: “超锐利微距写实主义,右侧极简细指示线与英文标签”, “category”: “高端产品信息图”, “resolution”: “8K” } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

"Macro food photography of a crispy martabak telur tearing o...

"Macro food photography of a crispy martabak telur tearing open mid-air, thin golden wrapper shattering with a crack, hot filling of minced beef, scallions, and egg bursting outward. Flecks of fried onion and pepper suspended in motion, steam visible, glossy oil sheen catching the light. Warm Indonesian street-stall lighting, tungsten + charcoal warmth, dramatic rim light, ultra high texture detail (bubbled wrapper, layered interior).Editorial food shot, shallow depth of field, bokeh of night market signage, Nikon Z9 look, 105mm macro, fast shutter freeze, hyper-real crumbs. --ar 3:4"

查看 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": "\"Macro food photography of a crispy martabak telur tearing open mid-air, thin golden wrapper shattering with a crack, hot filling of minced beef, scallions, and egg bursting outward. Flecks of fried onion and pepper suspended in motion, steam visible, glossy oil sheen catching the light. Warm Indonesian street-stall lighting, tungsten + charcoal warmth, dramatic rim light, ultra high texture detail (bubbled wrapper, layered interior).Editorial food shot, shallow depth of field, bokeh of night market signage, Nikon Z9 look, 105mm macro, fast shutter freeze, hyper-real crumbs. --ar 3:4\""
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "content_goal": "viral food visual with extreme craving...

{ "content_goal": "viral food visual with extreme craving appeal", "image_type": "ultra-photorealistic food action photography", "visual_style": { "aesthetic": "cinematic food editorial, hyper-real", "vibe": "juicy, indulgent, irresistible", "realism": "high-end commercial food realism" }, "composition": { "framing": "tight close-up or medium close-up", "camera_angle": "slightly low or front-facing", "subject_position": "centered hero bite moment", "perspective": "depth-rich with strong foreground focus" }, "subject": { "description": "large gourmet burger captured mid-bite", "bite_action": "visible bite mark with compressed layers", "ingredients": "juicy beef patty, melted cheese, fresh lettuce, tomato, sauce drip", "details": "cheese stretch, sauce gloss, steam rising" }, "texture_details": { "bun": "soft toasted bun with sesame seeds", "patty": "juicy with visible meat fibers", "cheese": "melted, glossy, stretching", "sauce": "thick, dripping naturally" }, "human_element": { "hands": "realistic hands holding burger", "bite_mark": "natural teeth impression", "skin_detail": "natural skin texture, clean nails" }, "lighting": { "type": "dramatic food lighting", "quality": "warm, directional, high-contrast", "direction": "side or top-side light emphasizing gloss", "highlight_focus": "cheese melt and sauce texture", "shadow_style": "deep but controlled shadows" }, "color_palette": { "primary": ["golden brown", "cheese yellow", "deep red"], "accent": ["lettuce green"], "mood": "rich, bold, indulgent" }, "environment": { "location": "burger joint, café, or studio food setup", "background": "dark, blurred background to isolate burger", "atmosphere": "warm, indulgent, street-food luxury" }, "camera_details": { "camera_type": "professional DSLR / mirrorless simulation", "lens": "85mm or macro food lens", "focus": "tack-sharp on bite area", "depth_of_field": "shallow for dramatic bokeh", "resolution": "advertising-grade clarity" }, "quality_control": { "food_realism": "hyper-real textures, no plastic look", "bite_accuracy": "natural compression of ingredients", "ai_artifacts": "none", "professional_finish": "commercial food photography quality" }, "overall_mood": "mouth-watering, bold, indulgent", "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 extreme craving appeal\", \"image_type\": \"ultra-photorealistic food action photography\", \"visual_style\": { \"aesthetic\": \"cinematic food editorial, hyper-real\", \"vibe\": \"juicy, indulgent, irresistible\", \"realism\": \"high-end commercial food realism\" }, \"composition\": { \"framing\": \"tight close-up or medium close-up\", \"camera_angle\": \"slightly low or front-facing\", \"subject_position\": \"centered hero bite moment\", \"perspective\": \"depth-rich with strong foreground focus\" }, \"subject\": { \"description\": \"large gourmet burger captured mid-bite\", \"bite_action\": \"visible bite mark with compressed layers\", \"ingredients\": \"juicy beef patty, melted cheese, fresh lettuce, tomato, sauce drip\", \"details\": \"cheese stretch, sauce gloss, steam rising\" }, \"texture_details\": { \"bun\": \"soft toasted bun with sesame seeds\", \"patty\": \"juicy with visible meat fibers\", \"cheese\": \"melted, glossy, stretching\", \"sauce\": \"thick, dripping naturally\" }, \"human_element\": { \"hands\": \"realistic hands holding burger\", \"bite_mark\": \"natural teeth impression\", \"skin_detail\": \"natural skin texture, clean nails\" }, \"lighting\": { \"type\": \"dramatic food lighting\", \"quality\": \"warm, directional, high-contrast\", \"direction\": \"side or top-side light emphasizing gloss\", \"highlight_focus\": \"cheese melt and sauce texture\", \"shadow_style\": \"deep but controlled shadows\" }, \"color_palette\": { \"primary\": [\"golden brown\", \"cheese yellow\", \"deep red\"], \"accent\": [\"lettuce green\"], \"mood\": \"rich, bold, indulgent\" }, \"environment\": { \"location\": \"burger joint, café, or studio food setup\", \"background\": \"dark, blurred background to isolate burger\", \"atmosphere\": \"warm, indulgent, street-food luxury\" }, \"camera_details\": { \"camera_type\": \"professional DSLR / mirrorless simulation\", \"lens\": \"85mm or macro food lens\", \"focus\": \"tack-sharp on bite area\", \"depth_of_field\": \"shallow for dramatic bokeh\", \"resolution\": \"advertising-grade clarity\" }, \"quality_control\": { \"food_realism\": \"hyper-real textures, no plastic look\", \"bite_accuracy\": \"natural compression of ingredients\", \"ai_artifacts\": \"none\", \"professional_finish\": \"commercial food photography quality\" }, \"overall_mood\": \"mouth-watering, bold, indulgent\", \"intended_use\": { \"primary\": \"viral food post on X\", \"secondary\": \"restaurant branding, food editorial, ads\" } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

A hyper-realistic, cinematic close-up of a freshly baked pep...

A hyper-realistic, cinematic close-up of a freshly baked pepperoni pizza slice being lifted from the pie, with long, dramatic cheese pulls stretching down in silky strands. Golden, slightly charred crust with visible texture, bubbling mozzarella, glossy pepperoni slices, fresh basil leaves on top, and juicy cherry tomatoes scattered across the pizza. Soft steam rising from the hot slice, creating a warm, mouth-watering atmosphere. Shot on a DSLR, 50mm lens, shallow depth of field, sharp focus on the cheese stretch, background softly blurred. Warm studio lighting with natural highlights, rich colors, realistic shadows, premium food-advertisement look.

查看 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 freshly baked pepperoni pizza slice being lifted from the pie, with long, dramatic cheese pulls stretching down in silky strands. Golden, slightly charred crust with visible texture, bubbling mozzarella, glossy pepperoni slices, fresh basil leaves on top, and juicy cherry tomatoes scattered across the pizza. Soft steam rising from the hot slice, creating a warm, mouth-watering atmosphere. Shot on a DSLR, 50mm lens, shallow depth of field, sharp focus on the cheese stretch, background softly blurred. Warm studio lighting with natural highlights, rich colors, realistic shadows, premium food-advertisement look."
}
JSON
IM
图像
Food & Drink nano-banana-2

A high-quality digital illustration of the word [COUNTRY NAM...

A high-quality digital illustration of the word [COUNTRY NAME] spelled in bold, uppercase letters. The typography is sculptural and dimensional, with each letter subtly overlapping or stacked to enhance depth and visual flow. Set against a rich, dark-toned background that complements the palette of the ingredients. Each letter is intricately filled with iconic traditional foods from [COUNTRY], such as [SIGNATURE BREADS / FRUITS / SPICES / DISH ELEMENTS], carefully arranged to follow the contours of the typography. Small bowls of [TRADITIONAL SAUCES / CONDIMENTS] and scattered ingredients are integrated naturally within the composition. The food elements are styled in an art-directed, editorial manner – balanced, textured, and visually rich – with gentle overlaps for realism. Soft, diffused lighting enhances natural textures and depth, creating a warm, appetizing, premium aesthetic. Ultra-detailed, clean composition, food-photography-inspired digital illustration, high contrast, refined visual storytelling.

查看 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 digital illustration of the word [COUNTRY NAME] spelled in bold, uppercase letters. The typography is sculptural and dimensional, with each letter subtly overlapping or stacked to enhance depth and visual flow. Set against a rich, dark-toned background that complements the palette of the ingredients. Each letter is intricately filled with iconic traditional foods from [COUNTRY], such as [SIGNATURE BREADS / FRUITS / SPICES / DISH ELEMENTS], carefully arranged to follow the contours of the typography. Small bowls of [TRADITIONAL SAUCES / CONDIMENTS] and scattered ingredients are integrated naturally within the composition. The food elements are styled in an art-directed, editorial manner – balanced, textured, and visually rich – with gentle overlaps for realism. Soft, diffused lighting enhances natural textures and depth, creating a warm, appetizing, premium aesthetic. Ultra-detailed, clean composition, food-photography-inspired digital illustration, high contrast, refined visual storytelling."
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-realistic cinematic beverage product photography of a...

Ultra-realistic cinematic beverage product photography of a vibrant red aluminum juice can captured from a dramatic top-down three-quarter angle, the can lying diagonally on its side as if just knocked over, with the opening facing toward the camera and a burst of clear liquid splashing outward in a sweeping arc across the frame; the can features bold white “Juice” typography and strawberry illustrations, partially wet with condensation and splash residue; glossy liquid spreads across a reflective surface below, forming dynamic ripples and elongated reflections that lead the eye through the composition; fresh ripe strawberries—whole, sliced, and halved—are scattered asymmetrically around the can, some resting in the liquid pool, others frozen mid-air as if tossed, with varying scale and depth for cinematic layering; background is a smooth coral-to-rose gradient studio backdrop viewed at an angle, enhancing depth and motion; lighting is dramatic cinematic lighting with a strong side key light creating sharp highlights on the can rim and liquid splash, rim lighting separating strawberries from the background, and deep soft shadows adding contrast and mood; color palette is bold and saturated with strawberry red, crimson liquid, fresh green leaves, and warm pink tones; composition is dynamic and off-center with diagonal energy, shallow depth of field isolating the can while foreground splashes remain crisp and background elements softly fall off; mood is energetic, high-impact, and cinematic, evoking premium blockbuster-style beverage advertising with hyper-realistic fluid dynamics, ultra-detailed textures, dramatic contrast, and 8K ultra-high-definition 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 beverage product photography of a vibrant red aluminum juice can captured from a dramatic top-down three-quarter angle, the can lying diagonally on its side as if just knocked over, with the opening facing toward the camera and a burst of clear liquid splashing outward in a sweeping arc across the frame; the can features bold white “Juice” typography and strawberry illustrations, partially wet with condensation and splash residue; glossy liquid spreads across a reflective surface below, forming dynamic ripples and elongated reflections that lead the eye through the composition; fresh ripe strawberries—whole, sliced, and halved—are scattered asymmetrically around the can, some resting in the liquid pool, others frozen mid-air as if tossed, with varying scale and depth for cinematic layering; background is a smooth coral-to-rose gradient studio backdrop viewed at an angle, enhancing depth and motion; lighting is dramatic cinematic lighting with a strong side key light creating sharp highlights on the can rim and liquid splash, rim lighting separating strawberries from the background, and deep soft shadows adding contrast and mood; color palette is bold and saturated with strawberry red, crimson liquid, fresh green leaves, and warm pink tones; composition is dynamic and off-center with diagonal energy, shallow depth of field isolating the can while foreground splashes remain crisp and background elements softly fall off; mood is energetic, high-impact, and cinematic, evoking premium blockbuster-style beverage advertising with hyper-realistic fluid dynamics, ultra-detailed textures, dramatic contrast, and 8K ultra-high-definition realism."
}
JSON
IM
图像
Food & Drink nano-banana-2

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

{ "image_prompt": { "type": "Ultra-realistic Indonesian traditional food infographic poster", "layout_and_composition": { "orientation": "Vertical composition", "style": "Modern culinary infographic design, editorial layout", "background": "Dramatic but clean background" }, "typography_elements": { "headline": { "position": "Top", "style": "Bold text showing dish name and origin (ASAL)" }, "labels": { "style": "Clean Indonesian typography", "connectors": "Curved label arrows pointing to ingredients" } }, "visual_content": { "main_action": "Cinematic floating ingredients suspended in mid-air", "details": [ "Glossy curry splash", "Fresh herbs", "Spices", "Steam rising from the bowl" ], "textures": "Hyper-detailed, glossy, appetizing" }, "lighting_and_atmosphere": { "lighting_style": "Rich golden lighting, studio lighting", "mood": "Professional, appetizing, high-end" }, "technical_specs": { "quality": "8K ultra-realistic, DSLR quality", "focus": "Shallow depth of field", "style": "Professional food 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": "{ \"image_prompt\": { \"type\": \"Ultra-realistic Indonesian traditional food infographic poster\", \"layout_and_composition\": { \"orientation\": \"Vertical composition\", \"style\": \"Modern culinary infographic design, editorial layout\", \"background\": \"Dramatic but clean background\" }, \"typography_elements\": { \"headline\": { \"position\": \"Top\", \"style\": \"Bold text showing dish name and origin (ASAL)\" }, \"labels\": { \"style\": \"Clean Indonesian typography\", \"connectors\": \"Curved label arrows pointing to ingredients\" } }, \"visual_content\": { \"main_action\": \"Cinematic floating ingredients suspended in mid-air\", \"details\": [ \"Glossy curry splash\", \"Fresh herbs\", \"Spices\", \"Steam rising from the bowl\" ], \"textures\": \"Hyper-detailed, glossy, appetizing\" }, \"lighting_and_atmosphere\": { \"lighting_style\": \"Rich golden lighting, studio lighting\", \"mood\": \"Professional, appetizing, high-end\" }, \"technical_specs\": { \"quality\": \"8K ultra-realistic, DSLR quality\", \"focus\": \"Shallow depth of field\", \"style\": \"Professional food photography\" } } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "Create a hyper-realistic tourism advertisement collage...

{ "Create a hyper-realistic tourism advertisement collage in a single 1:1 image divided into a 2x2 grid. Each section shows a hand holding a sleek, ultra-thin smartphone in portrait orientation, slightly tilted to create a strong 3D portal effect where iconic national food emerges out of the phone screen into the real world. Consistent hand, phone design, and lighting style across all four panels.", "layout": { "type": "grid", "rows": 2, "columns": 2, "aspect_ratio": "1:1" }, "scenes": [ { "position": "top-left", "country": "France", "text": "France", "food": "Golden buttery croissant on a white plate with strawberries", "background": "Eiffel Tower, green fields, bright blue sky", "elements": ["flying birds", "commercial airplane", "French flag"], "lighting": "warm natural daylight", "mood": "fresh, elegant, classic" }, { "position": "top-right", "country": "Italy", "text": "Italy", "food": "Hot Italian pizza with basil leaves and visible steam", "background": "Colosseum, Rome skyline at sunset", "elements": ["orange sky", "flying birds"], "lighting": "golden sunset light", "mood": "warm, passionate, flavorful" }, { "position": "bottom-left", "country": "Japan", "text": "Japan", "food": "Assorted sushi and sashimi platter on wooden tray", "background": "Tokyo skyline at night with Tokyo Tower and neon lights", "elements": ["airplane trail", "city glow"], "lighting": "cool night lighting with neon highlights", "mood": "modern, clean, refined" }, { "position": "bottom-right", "country": "Mexico", "text": "Mexico", "food": "Colorful street tacos with lime and salsa", "background": "Colonial Mexican street with warm sunset tones", "elements": ["birds flying", "festive atmosphere"], "lighting": "warm cinematic sunset", "mood": "vibrant, festive, energetic" } ], "style": { "realism": "ultra-photorealistic", "lighting": "cinematic", "depth": "strong depth of field and realistic shadows", "colors": "vibrant but natural tourism-ad palette", "quality": "4K ultra-sharp" }, "constraints": { "no_watermark": true, "no_brand_logos": true, "no_extra_text": true, "clean_composition": true } }

查看 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 hyper-realistic tourism advertisement collage in a single 1:1 image divided into a 2x2 grid. Each section shows a hand holding a sleek, ultra-thin smartphone in portrait orientation, slightly tilted to create a strong 3D portal effect where iconic national food emerges out of the phone screen into the real world. Consistent hand, phone design, and lighting style across all four panels.\", \"layout\": { \"type\": \"grid\", \"rows\": 2, \"columns\": 2, \"aspect_ratio\": \"1:1\" }, \"scenes\": [ { \"position\": \"top-left\", \"country\": \"France\", \"text\": \"France\", \"food\": \"Golden buttery croissant on a white plate with strawberries\", \"background\": \"Eiffel Tower, green fields, bright blue sky\", \"elements\": [\"flying birds\", \"commercial airplane\", \"French flag\"], \"lighting\": \"warm natural daylight\", \"mood\": \"fresh, elegant, classic\" }, { \"position\": \"top-right\", \"country\": \"Italy\", \"text\": \"Italy\", \"food\": \"Hot Italian pizza with basil leaves and visible steam\", \"background\": \"Colosseum, Rome skyline at sunset\", \"elements\": [\"orange sky\", \"flying birds\"], \"lighting\": \"golden sunset light\", \"mood\": \"warm, passionate, flavorful\" }, { \"position\": \"bottom-left\", \"country\": \"Japan\", \"text\": \"Japan\", \"food\": \"Assorted sushi and sashimi platter on wooden tray\", \"background\": \"Tokyo skyline at night with Tokyo Tower and neon lights\", \"elements\": [\"airplane trail\", \"city glow\"], \"lighting\": \"cool night lighting with neon highlights\", \"mood\": \"modern, clean, refined\" }, { \"position\": \"bottom-right\", \"country\": \"Mexico\", \"text\": \"Mexico\", \"food\": \"Colorful street tacos with lime and salsa\", \"background\": \"Colonial Mexican street with warm sunset tones\", \"elements\": [\"birds flying\", \"festive atmosphere\"], \"lighting\": \"warm cinematic sunset\", \"mood\": \"vibrant, festive, energetic\" } ], \"style\": { \"realism\": \"ultra-photorealistic\", \"lighting\": \"cinematic\", \"depth\": \"strong depth of field and realistic shadows\", \"colors\": \"vibrant but natural tourism-ad palette\", \"quality\": \"4K ultra-sharp\" }, \"constraints\": { \"no_watermark\": true, \"no_brand_logos\": true, \"no_extra_text\": true, \"clean_composition\": true } }"
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。