模型 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
图像
Product & Brand nano-banana-2

[product], premium skincare product ad, the product placed d...

[product], premium skincare product ad, the product placed directly on and surrounded by fresh [fruit_or_vegetable], visual storytelling that the product is made from the ingredient, rich saturated color palette matching the ingredient, juicy realistic textures, visible seeds pulp or slices, glossy highlights, dramatic studio lighting, soft shadows, shallow depth of field, macro product photography look, ultra realistic, editorial commercial style, clean background in matching color tone, 8k, 1:1

查看 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": "[product], premium skincare product ad, the product placed directly on and surrounded by fresh [fruit_or_vegetable], visual storytelling that the product is made from the ingredient, rich saturated color palette matching the ingredient, juicy realistic textures, visible seeds pulp or slices, glossy highlights, dramatic studio lighting, soft shadows, shallow depth of field, macro product photography look, ultra realistic, editorial commercial style, clean background in matching color tone, 8k, 1:1"
}
JSON
IM
图像
Product & Brand nano-banana-2

[BRAND NAME]. Act as a Senior AI Visual Strategist & Creativ...

[BRAND NAME]. Act as a Senior AI Visual Strategist & Creative Director. Goal: Generate a grid-based brand identity showcase. PHASE 1: COMPOSITION & LAYOUT Set the scene on a deep, rich [BRAND PRIMARY COLOR] background. Implement an 8-module grid with rounded corners and thin separation lines. - Large Modules: Top Left and Bottom Right. - Small/Medium Modules: Fill the remaining space. PHASE 2: AUTONOMOUS BRAND LOGIC (THE CORE) [INSTRUCTIONS FOR IMAGEN]: Analyze the name "[BRAND NAME]". Determine the industry (e.g., Tech, Luxury, Eco, Automotive, Fashion). Do NOT default to sports/tennis unless the brand name explicitly requires it. Adapt all secondary elements (accessories, textures, model's activity) to match this industry. PHASE 3: MODULE CONTENT (DYNAMIC ADAPTATION) - MODULE 1 (Exterior): A flagship building façade. Use textured walls in [BRAND PRIMARY COLOR]. Feature a large [BRAND NAME] wordmark and a geometric abstract logo in a contrasting Cream/Beige. - MODULE 2 (Colors): A vertical swatch panel. Sequence: [BRAND PRIMARY COLOR], Cream, Deep Black, White. Satin finish. - MODULE 3 & 5 (Core Logo): Detailed close-ups of the brand's unique geometric icon. - MODULE 4 (Accessory): AUTONOMOUS CHOICE. If [BRAND NAME] is Tech, show a sleek device. If Luxury, show a watch or jewelry. If Eco, show sustainable packaging. Must be in brand colors. - MODULE 6 (Urban): A street-level mockup on a concrete wall. A person in an all-black outfit walks past a branded panel. - MODULE 7 (Editorial): A high-end lifestyle shot. - Model: Professional, editorial style. - Outfit: Premium sweatshirt in [BRAND PRIMARY COLOR] with brand logo. - Prop: AUTONOMOUS CHOICE based on industry. (e.g., a leather briefcase for Finance, a camera for Media, a designer bag for Retail). - MODULE 8 (Specs): Top half: A complex repeating pattern based on the brand logo. Bottom half: Four lines of text " [BRAND NAME] TYPOGRAPHY" in a clean, high-end sans-serif. PHASE 4: LIGHTING & TEXTURES - High-End Editorial Photography. No "AI-plastic" look. - Cinematic soft-box lighting with Rembrandt shadows. - Micro-details: fabric weave, skin pores, concrete grit, leaf veins. - Subsurface scattering on organic materials. PHASE 5: TECH SPECS 8K Resolution, Octane Render style, Ray Traced reflections, subtle film grain.

查看 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": "[BRAND NAME]. Act as a Senior AI Visual Strategist & Creative Director. Goal: Generate a grid-based brand identity showcase. PHASE 1: COMPOSITION & LAYOUT Set the scene on a deep, rich [BRAND PRIMARY COLOR] background. Implement an 8-module grid with rounded corners and thin separation lines. - Large Modules: Top Left and Bottom Right. - Small/Medium Modules: Fill the remaining space. PHASE 2: AUTONOMOUS BRAND LOGIC (THE CORE) [INSTRUCTIONS FOR IMAGEN]: Analyze the name \"[BRAND NAME]\". Determine the industry (e.g., Tech, Luxury, Eco, Automotive, Fashion). Do NOT default to sports/tennis unless the brand name explicitly requires it. Adapt all secondary elements (accessories, textures, model's activity) to match this industry. PHASE 3: MODULE CONTENT (DYNAMIC ADAPTATION) - MODULE 1 (Exterior): A flagship building façade. Use textured walls in [BRAND PRIMARY COLOR]. Feature a large [BRAND NAME] wordmark and a geometric abstract logo in a contrasting Cream/Beige. - MODULE 2 (Colors): A vertical swatch panel. Sequence: [BRAND PRIMARY COLOR], Cream, Deep Black, White. Satin finish. - MODULE 3 & 5 (Core Logo): Detailed close-ups of the brand's unique geometric icon. - MODULE 4 (Accessory): AUTONOMOUS CHOICE. If [BRAND NAME] is Tech, show a sleek device. If Luxury, show a watch or jewelry. If Eco, show sustainable packaging. Must be in brand colors. - MODULE 6 (Urban): A street-level mockup on a concrete wall. A person in an all-black outfit walks past a branded panel. - MODULE 7 (Editorial): A high-end lifestyle shot. - Model: Professional, editorial style. - Outfit: Premium sweatshirt in [BRAND PRIMARY COLOR] with brand logo. - Prop: AUTONOMOUS CHOICE based on industry. (e.g., a leather briefcase for Finance, a camera for Media, a designer bag for Retail). - MODULE 8 (Specs): Top half: A complex repeating pattern based on the brand logo. Bottom half: Four lines of text \" [BRAND NAME] TYPOGRAPHY\" in a clean, high-end sans-serif. PHASE 4: LIGHTING & TEXTURES - High-End Editorial Photography. No \"AI-plastic\" look. - Cinematic soft-box lighting with Rembrandt shadows. - Micro-details: fabric weave, skin pores, concrete grit, leaf veins. - Subsurface scattering on organic materials. PHASE 5: TECH SPECS 8K Resolution, Octane Render style, Ray Traced reflections, subtle film grain."
}
JSON
IM
图像
Product & Brand nano-banana-2

[BRAND NAME] | [SUBJECT_TOGGLE]. Act as a Lead Graphic Desig...

[BRAND NAME] | [SUBJECT_TOGGLE]. Act as a Lead Graphic Designer. PHASE 1: ARCHITECTURAL SETTING. Create a minimalist 2D vector illustration of a vintage-style storefront representing [BRAND NAME]. - Autonomously design the facade (Modernist, Industrial, or Classic) to match the brand's heritage. PHASE 2: SUBJECT LOGIC (TOGGLE SYSTEM). - If [SUBJECT_TOGGLE] is "OFF": Show only the empty storefront. - If [SUBJECT_TOGGLE] is "ON": Autonomously add 1-2 characters or a pet that fits the brand's lifestyle. PHASE 3: DYNAMIC TYPOGRAPHY (CORRECTED). - Header: Autonomously generate a high-status "Club" or "Community" title based on the nature of [BRAND NAME]. * Examples: For Starbucks — "Coffee Roasters Society"; for Nike — "Elite Runners Club"; for Apple — "Digital Creators Guild". - Branding: Place the [BRAND NAME] logo clearly on the storefront awning. - Contextual Info: Below the awning, add "EST. [REAL FOUNDING YEAR]" and "[REAL ORIGIN CITY]". PHASE 4: VISUAL STYLE. - Two-tone palette: [BRAND SIGNATURE COLOR] on a pure white background. - Style: 1950s-60s Retro Line Art. No gradients, no shadows. TECH SPECS: Flat 2D vector, 8k resolution, monochrome aesthetic, centered 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": "[BRAND NAME] | [SUBJECT_TOGGLE]. Act as a Lead Graphic Designer. PHASE 1: ARCHITECTURAL SETTING. Create a minimalist 2D vector illustration of a vintage-style storefront representing [BRAND NAME]. - Autonomously design the facade (Modernist, Industrial, or Classic) to match the brand's heritage. PHASE 2: SUBJECT LOGIC (TOGGLE SYSTEM). - If [SUBJECT_TOGGLE] is \"OFF\": Show only the empty storefront. - If [SUBJECT_TOGGLE] is \"ON\": Autonomously add 1-2 characters or a pet that fits the brand's lifestyle. PHASE 3: DYNAMIC TYPOGRAPHY (CORRECTED). - Header: Autonomously generate a high-status \"Club\" or \"Community\" title based on the nature of [BRAND NAME]. * Examples: For Starbucks — \"Coffee Roasters Society\"; for Nike — \"Elite Runners Club\"; for Apple — \"Digital Creators Guild\". - Branding: Place the [BRAND NAME] logo clearly on the storefront awning. - Contextual Info: Below the awning, add \"EST. [REAL FOUNDING YEAR]\" and \"[REAL ORIGIN CITY]\". PHASE 4: VISUAL STYLE. - Two-tone palette: [BRAND SIGNATURE COLOR] on a pure white background. - Style: 1950s-60s Retro Line Art. No gradients, no shadows. TECH SPECS: Flat 2D vector, 8k resolution, monochrome aesthetic, centered composition."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

Present a clear, 45° top-down isometric miniature 3D cartoon...

Present a clear, 45° top-down isometric miniature 3D cartoon scene of the iconic scene [SCENE NAME] from [MOVIE/SHOW], with soft refined textures, realistic PBR materials, and gentle lifelike lighting. Create a small raised diorama-style base that includes the most recognizable elements of this scene, along with tiny stylized characters if needed (no facial details). Use a clean solid [BACKGROUND COLOR] background. At the top-center, display [MOVIE/SHOW] in large bold text, directly beneath it show [SCENE NAME] in medium text, and place the official logo associated with [MOVIE/SHOW] below the subtext. All text must automatically match the background contrast (white or black). Composition: perfectly centered layout, square 1080x1080, ultra-clean, high-clarity diorama 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": "Present a clear, 45° top-down isometric miniature 3D cartoon scene of the iconic scene [SCENE NAME] from [MOVIE/SHOW], with soft refined textures, realistic PBR materials, and gentle lifelike lighting. Create a small raised diorama-style base that includes the most recognizable elements of this scene, along with tiny stylized characters if needed (no facial details). Use a clean solid [BACKGROUND COLOR] background. At the top-center, display [MOVIE/SHOW] in large bold text, directly beneath it show [SCENE NAME] in medium text, and place the official logo associated with [MOVIE/SHOW] below the subtext. All text must automatically match the background contrast (white or black). Composition: perfectly centered layout, square 1080x1080, ultra-clean, high-clarity diorama aesthetic."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

{ "title": "Whimsical Cozy Portrait", "input_image": "[U...

{ "title": "Whimsical Cozy Portrait", "input_image": "[UPLOAD YOUR IMAGE]", "description": "Transform the uploaded image into a 64K DSLR-quality ultra-hyperrealistic cozy, whimsical mixed-media portrait combining realistic photography with playful cartoon illustrations.", "subject": { "person": { "appearance": { "hair": "blonde, loosely tied with soft strands framing the face", "eyes": "light green", "makeup": "natural", "top": "dark grey layered over black long-sleeve shirt", "expression": "resting cheek gently on one hand, dreamy and slightly tired", "accessories": [ "black-and-pink cat ears", "small cute hair clip" ] }, "pose": "sitting at a wooden table, holding a white ceramic mug in one hand" }, "animated_elements": [ { "type": "cartoon_cat", "color": "bright orange", "expression": "excited, curious", "action": "climbing up her arm", "features": "exaggerated big eyes, expressive paws" }, { "type": "cartoon_tail", "color": "grey", "position": "right side, partially out of frame" } ] }, "props": { "mug": { "color": "white", "illustration": "cute cartoon face with big expressive eyes and small mustache", "drink": "pink foam bubbles rising from the top" }, "dessert": { "type": "chocolate cake", "toppings": ["whipped cream", "sliced strawberries", "peach slice"] } }, "environment": { "room": { "walls": "beige textured", "lighting": "soft daylight streaming through window with sheer white curtains", "decor": "vintage framed photographs in casual gallery arrangement", "atmosphere": "warm, cozy, intimate" } }, "illustration_effects": { "style": [ "hand-drawn cartoon overlays", "white doodle-style accents: bubbles, playful lines, sparkles, hand-drawn crown", "soft white illustrated outlines around woman and objects" ] }, "composition": { "aspect_ratio": ["1:1", "4:5 vertical"], "depth_of_field": "shallow", "mood": ["cozy", "cute", "whimsical", "soft", "playful", "warm"] }, "rendering": { "technique": ["Octane render", "Ultra-hyperrealistic", "Unreal Engine 5"], "details": "ultra-detailed, high-resolution, soft natural lighting, warm tones, Instagram-worthy", "texture_contrast": "realistic textures (skin, fabric, wood, wall) vs smooth vector-style illustrations" } }

查看 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": "{ \"title\": \"Whimsical Cozy Portrait\", \"input_image\": \"[UPLOAD YOUR IMAGE]\", \"description\": \"Transform the uploaded image into a 64K DSLR-quality ultra-hyperrealistic cozy, whimsical mixed-media portrait combining realistic photography with playful cartoon illustrations.\", \"subject\": { \"person\": { \"appearance\": { \"hair\": \"blonde, loosely tied with soft strands framing the face\", \"eyes\": \"light green\", \"makeup\": \"natural\", \"top\": \"dark grey layered over black long-sleeve shirt\", \"expression\": \"resting cheek gently on one hand, dreamy and slightly tired\", \"accessories\": [ \"black-and-pink cat ears\", \"small cute hair clip\" ] }, \"pose\": \"sitting at a wooden table, holding a white ceramic mug in one hand\" }, \"animated_elements\": [ { \"type\": \"cartoon_cat\", \"color\": \"bright orange\", \"expression\": \"excited, curious\", \"action\": \"climbing up her arm\", \"features\": \"exaggerated big eyes, expressive paws\" }, { \"type\": \"cartoon_tail\", \"color\": \"grey\", \"position\": \"right side, partially out of frame\" } ] }, \"props\": { \"mug\": { \"color\": \"white\", \"illustration\": \"cute cartoon face with big expressive eyes and small mustache\", \"drink\": \"pink foam bubbles rising from the top\" }, \"dessert\": { \"type\": \"chocolate cake\", \"toppings\": [\"whipped cream\", \"sliced strawberries\", \"peach slice\"] } }, \"environment\": { \"room\": { \"walls\": \"beige textured\", \"lighting\": \"soft daylight streaming through window with sheer white curtains\", \"decor\": \"vintage framed photographs in casual gallery arrangement\", \"atmosphere\": \"warm, cozy, intimate\" } }, \"illustration_effects\": { \"style\": [ \"hand-drawn cartoon overlays\", \"white doodle-style accents: bubbles, playful lines, sparkles, hand-drawn crown\", \"soft white illustrated outlines around woman and objects\" ] }, \"composition\": { \"aspect_ratio\": [\"1:1\", \"4:5 vertical\"], \"depth_of_field\": \"shallow\", \"mood\": [\"cozy\", \"cute\", \"whimsical\", \"soft\", \"playful\", \"warm\"] }, \"rendering\": { \"technique\": [\"Octane render\", \"Ultra-hyperrealistic\", \"Unreal Engine 5\"], \"details\": \"ultra-detailed, high-resolution, soft natural lighting, warm tones, Instagram-worthy\", \"texture_contrast\": \"realistic textures (skin, fabric, wood, wall) vs smooth vector-style illustrations\" } }"
}
JSON
IM
图像
Product & Brand nano-banana-2

Ultra-cinematic premium coffee bottle labeled “NOIR BREW”, m...

Ultra-cinematic premium coffee bottle labeled “NOIR BREW”, matte black glass with gold typography, floating upright amid swirling espresso waves and roasted coffee beans. Steam and mist curling around the bottle, dramatic low-key lighting with warm highlights and deep shadows, rich brown color grading, macro condensation details, cinematic depth of field, photorealistic, 8K, luxury branding 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": "Ultra-cinematic premium coffee bottle labeled “NOIR BREW”, matte black glass with gold typography, floating upright amid swirling espresso waves and roasted coffee beans. Steam and mist curling around the bottle, dramatic low-key lighting with warm highlights and deep shadows, rich brown color grading, macro condensation details, cinematic depth of field, photorealistic, 8K, luxury branding aesthetic."
}
JSON
IM
图像
Poster Design nano-banana-2

[PERSON NAME]. Act as a graphic designer creating a minimali...

[PERSON NAME]. Act as a graphic designer creating a minimalist, avant-garde streetwear poster. COMPOSITION (THE FUSION): The image is a creative fusion of a massive typographic name and a monochrome portrait of [PERSON NAME]. The Subject: A high-contrast, black-and-white full-body or 3/4 cut-out photograph of [PERSON NAME]. The subject stands centrally, looking cool and detached. The Typography: The person's name is written horizontally across the entire width of the image. The text interacts with the body: the person stands through the letters, creating a "woven" depth effect (some limbs in front of text, some behind), or the portrait creates a silhouette mask for the text. TYPOGRAPHY STYLE (MIXED SCRIPTS): Mimic the specific "Street Editorial" font pairing: The First Letter: The initial letter of the name is rendered in a large, sweeping, expressive Calligraphic Script or Brush font (dynamic and loose). The Rest of the Name: The remaining letters are rendered in an Ultra-Heavy, Geometric Sans-Serif font (like Impact or Helvetica Black). Color: The text is solid Dark Grey or Black. AESTHETICS & ATMOSPHERE: Palette: Strictly Monochrome (Black, White, and Greyscale). Background: Pure, vast White Minimalist background. Extensive negative space. Vibe: Raw, "Zine" aesthetic, cut-and-paste collage feel, high-fashion streetwear poster. LAYOUT DETAILS: Add very small, microscopic functional text in the extreme corners (e.g., "poster design", "2025", "fig 01") to enhance the Swiss Design poster feel.

查看 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": "[PERSON NAME]. Act as a graphic designer creating a minimalist, avant-garde streetwear poster. COMPOSITION (THE FUSION): The image is a creative fusion of a massive typographic name and a monochrome portrait of [PERSON NAME]. The Subject: A high-contrast, black-and-white full-body or 3/4 cut-out photograph of [PERSON NAME]. The subject stands centrally, looking cool and detached. The Typography: The person's name is written horizontally across the entire width of the image. The text interacts with the body: the person stands through the letters, creating a \"woven\" depth effect (some limbs in front of text, some behind), or the portrait creates a silhouette mask for the text. TYPOGRAPHY STYLE (MIXED SCRIPTS): Mimic the specific \"Street Editorial\" font pairing: The First Letter: The initial letter of the name is rendered in a large, sweeping, expressive Calligraphic Script or Brush font (dynamic and loose). The Rest of the Name: The remaining letters are rendered in an Ultra-Heavy, Geometric Sans-Serif font (like Impact or Helvetica Black). Color: The text is solid Dark Grey or Black. AESTHETICS & ATMOSPHERE: Palette: Strictly Monochrome (Black, White, and Greyscale). Background: Pure, vast White Minimalist background. Extensive negative space. Vibe: Raw, \"Zine\" aesthetic, cut-and-paste collage feel, high-fashion streetwear poster. LAYOUT DETAILS: Add very small, microscopic functional text in the extreme corners (e.g., \"poster design\", \"2025\", \"fig 01\") to enhance the Swiss Design poster feel."
}
JSON
IM
图像
Food & Drink nano-banana-2

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

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

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"composition\": { \"orientation\": \"vertical\", \"style\": \"ultra-cinematic\", \"scene_type\": \"mid-air suspended elements\", \"depth_of_field\": \"cinematic shallow depth\" }, \"subject\": { \"main_elements\": [ \"cascading roasted coffee beans\", \"floating chocolate bonbons\", \"mid-air coffee cup with swirling latte art\", \"splashes of milk frozen in motion\", \"splashes of espresso frozen in motion\", \"fine coffee grounds dusting through the air\" ], \"motion_state\": \"frozen action splash photography\" }, \"color_palette\": { \"primary_colors\": [ \"rich coffee brown\", \"warm cream\", \"espresso black\" ], \"background\": \"deep velvety black\" }, \"lighting\": { \"type\": \"dramatic high-contrast studio lighting\", \"highlights\": \"glossy reflections on liquids\", \"shadows\": \"deep cinematic shadows\" }, \"texture_detail\": { \"liquids\": [ \"glossy milk splashes\", \"glossy espresso splashes\", \"crema bubbles with micro-detail\" ], \"solids\": [ \"matte roasted coffee beans\", \"smooth chocolate bonbon surfaces\", \"fine granular coffee grounds\" ] }, \"photography_style\": { \"genre\": \"premium café advertising\", \"aesthetic\": \"editorial splash photography\", \"clarity\": \"crisp ultra-detailed\" }, \"camera\": { \"camera_model\": \"Nikon D850 (virtual)\", \"lens\": \"105mm macro\", \"aperture\": \"f/4.0\", \"focus\": \"sharp subject focus with background falloff\" }, \"render_quality\": { \"detail_level\": \"hyper-detailed\", \"realism\": \"photorealistic\", \"finish\": \"high-end commercial output\" } }"
}
JSON
IM
图像
Product & Brand nano-banana-2

Luxury skincare commercial, ultra-premium aesthetic. Use the...

Luxury skincare commercial, ultra-premium aesthetic. Use the provided product image as the exact reference for bottle shape, label design, liquid tone, reflections, and overall styling. The bottle stands perfectly upright at the center of the frame, surrounded by a glossy liquid surface with smooth, elegant ripples. Soft fluid splashes form a graceful crown around the base, catching light like crystal. Background is a dreamy pastel aqua-to-soft lavender gradient with a silky, creamy atmosphere and subtle mist particles floating in the air. Camera motion: Slow, continuous 360-degree cinematic orbit around the product. Movement is smooth, controlled, and hypnotic. Constant speed throughout. No shaking, no zooming, no speed changes. The product remains perfectly centered and stable at all times. Framing: Mid close-up beauty shot. Bottle remains vertical and motionless, hero focus. Lighting: High-end studio lighting, soft diffused glow with gentle highlights and glossy reflections. Subtle rim light to outline the bottle. Liquid and glass look luminous, hydrated, and silky. Mood & style: Sensual, elegant, and premium beauty campaign. Smooth motion, glossy textures, soft reflections, cinematic depth of field, slow-motion feel, luxury skincare advertisement, 4K photorealistic, polished commercial 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": "Luxury skincare commercial, ultra-premium aesthetic. Use the provided product image as the exact reference for bottle shape, label design, liquid tone, reflections, and overall styling. The bottle stands perfectly upright at the center of the frame, surrounded by a glossy liquid surface with smooth, elegant ripples. Soft fluid splashes form a graceful crown around the base, catching light like crystal. Background is a dreamy pastel aqua-to-soft lavender gradient with a silky, creamy atmosphere and subtle mist particles floating in the air. Camera motion: Slow, continuous 360-degree cinematic orbit around the product. Movement is smooth, controlled, and hypnotic. Constant speed throughout. No shaking, no zooming, no speed changes. The product remains perfectly centered and stable at all times. Framing: Mid close-up beauty shot. Bottle remains vertical and motionless, hero focus. Lighting: High-end studio lighting, soft diffused glow with gentle highlights and glossy reflections. Subtle rim light to outline the bottle. Liquid and glass look luminous, hydrated, and silky. Mood & style: Sensual, elegant, and premium beauty campaign. Smooth motion, glossy textures, soft reflections, cinematic depth of field, slow-motion feel, luxury skincare advertisement, 4K photorealistic, polished commercial look."
}
JSON
IM
图像
Food & Drink nano-banana-2

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

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

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic Indonesian food infographic poster with dramatic floating ingredients. Vertical composition, bold title text at the top showing the dish name and origin (ASAL). Ingredients levitating in mid-air with clean white label lines and Indonesian text. Cinematic food photography style, ultra-detailed textures, glossy sauces, charred meat, fresh vegetables, steam and smoke effects. Strong contrast lighting, editorial layout, modern typography, professional food magazine look, motion-frozen splashes, realistic shadows, studio lighting, shallow depth of field, 8K ultra-realistic, DSLR quality."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic fine-art portrait of a young woman with soft...

Ultra-realistic fine-art portrait of a young woman with soft natural features, minimal makeup, and calm introspective expression. Pastel muted background in sage green tones. Delicate flowers drifting across the frame in the foreground, creating intentional motion blur and soft streaks of light. Subtle double exposure and slow-shutter motion effects across the face, dreamy and poetic atmosphere. Gentle diffused lighting with smooth highlights on skin, natural texture preserved. Elegant minimalist composition, emotional and serene mood, editorial fine-art photography style, shallow depth of field, cinematic softness, painterly realism, ultra-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": "Ultra-realistic fine-art portrait of a young woman with soft natural features, minimal makeup, and calm introspective expression. Pastel muted background in sage green tones. Delicate flowers drifting across the frame in the foreground, creating intentional motion blur and soft streaks of light. Subtle double exposure and slow-shutter motion effects across the face, dreamy and poetic atmosphere. Gentle diffused lighting with smooth highlights on skin, natural texture preserved. Elegant minimalist composition, emotional and serene mood, editorial fine-art photography style, shallow depth of field, cinematic softness, painterly realism, ultra-high resolution, 8K quality."
}
JSON
IM
图像
Photography nano-banana-2

Make an Ultra-wide fisheye lens perspective shot from ground...

Make an Ultra-wide fisheye lens perspective shot from ground level looking straight up at a young woman use image for face reference crouching mid-air between brick buildings forming a circular frame around the sky. She reaches one hand dramatically toward the camera, fingers spread wide, creating strong foreground distortion and depth. Dynamic action pose, confident expression, casual streetwear outfit: fitted white t-shirt, blue straight-leg jeans, red and white sneakers. Urban European neighborhood setting with brick houses, tiled roofs, windows visible around the edges. Bright daylight, clear blue sky, natural lighting, sharp focus, high detail, cinematic composition, exaggerated perspective, 8k resolution, photorealistic, adventure photography style.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Make an Ultra-wide fisheye lens perspective shot from ground level looking straight up at a young woman use image for face reference crouching mid-air between brick buildings forming a circular frame around the sky. She reaches one hand dramatically toward the camera, fingers spread wide, creating strong foreground distortion and depth. Dynamic action pose, confident expression, casual streetwear outfit: fitted white t-shirt, blue straight-leg jeans, red and white sneakers. Urban European neighborhood setting with brick houses, tiled roofs, windows visible around the edges. Bright daylight, clear blue sky, natural lighting, sharp focus, high detail, cinematic composition, exaggerated perspective, 8k resolution, photorealistic, adventure photography style."
}
JSON
IM
图像
Photography nano-banana-2

[ { "id": "subject", "type": "person", "descri...

[ { "id": "subject", "type": "person", "description": "Madelyn Cline with long blonde hair, looking at the camera.", "pose": "She is walking forward through the mirrored structure mid-step, one hand lightly brushing the metal framework while the other adjusts her hair as she glances toward the camera.", "clothing": { "dress": { "color": "deep violet", "material": "patent leather", "style": "strapless mini-dress" }, "legwear": { "color": "black", "type": "sheer pantyhose" }, "footwear": { "color": "Violet", "material": "patent leather", "style": "Louboutin So Kate with red sole" } } }, { "id": "environment", "type": "room", "description": "A geometrically designed mirrored room with a fractured, kaleidoscopic effect.", "elements": [ { "type": "mirrors", "description": "Multiple angled mirror panels reflecting the subject and the room structure." }, { "type": "structure", "description": "Black metal framework holding the mirror panels." } ], "lighting": "Bright, high-contrast light from LED strips within the structure, creating sharp highlights and reflections, high-quality, cinematic, Ultra-realistic photo and lighting, high quality photo, depth of field, no Ai or cgi look, 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": "[ { \"id\": \"subject\", \"type\": \"person\", \"description\": \"Madelyn Cline with long blonde hair, looking at the camera.\", \"pose\": \"She is walking forward through the mirrored structure mid-step, one hand lightly brushing the metal framework while the other adjusts her hair as she glances toward the camera.\", \"clothing\": { \"dress\": { \"color\": \"deep violet\", \"material\": \"patent leather\", \"style\": \"strapless mini-dress\" }, \"legwear\": { \"color\": \"black\", \"type\": \"sheer pantyhose\" }, \"footwear\": { \"color\": \"Violet\", \"material\": \"patent leather\", \"style\": \"Louboutin So Kate with red sole\" } } }, { \"id\": \"environment\", \"type\": \"room\", \"description\": \"A geometrically designed mirrored room with a fractured, kaleidoscopic effect.\", \"elements\": [ { \"type\": \"mirrors\", \"description\": \"Multiple angled mirror panels reflecting the subject and the room structure.\" }, { \"type\": \"structure\", \"description\": \"Black metal framework holding the mirror panels.\" } ], \"lighting\": \"Bright, high-contrast light from LED strips within the structure, creating sharp highlights and reflections, high-quality, cinematic, Ultra-realistic photo and lighting, high quality photo, depth of field, no Ai or cgi look, 8k resolution.\" } ]"
}
JSON
IM
图像
Product & Brand nano-banana-2

A hyper-realistic 3D render of a flat logo sculpted as a mas...

A hyper-realistic 3D render of a flat logo sculpted as a massive, frosted stone monument standing upright on the jagged peak of a rocky mountain summit. The logo retains its exact silhouette and proportions but is fully translated into thick, solid carved rock encased in a layer of translucent frost and ice. Each element and shape of the logo is extruded with significant depth and volume, giving it a bold, chunky sculptural mass. The surface texture is rough, dark basalt or granite stone, partially obscured by a crystalline frost coating, with deep natural cracks, chipped edges, and fine granular detail across every face. The outer boundary of the logo forms the shell of the sculpture, with negative spaces between design elements carved out as open voids cutting through the rock. The sculpture sits planted into the top of a rugged mountain peak, partially buried at its base, surrounded by cracked grey rock. A thick, textured layer of white snow and rime ice rests on the top flat surfaces of the logo forms and collects in the crevices and carved edges. Small icicles hang from the lower overhanging curves and edges, catching cold light. The entire structure has a subtle, semi-translucent frozen sheen, softening the harshness of the stone beneath. The sky behind is filled with a dramatic, dense sea of clouds rolling over distant mountain peaks, creating a misty, ethereal, and cold atmosphere. Soft, diffused light filters through the cloud layer, creating a stark contrast against the dark, frosted stone sculpture. Lighting is soft natural daylight from slightly above and to the left, casting realistic shadows beneath the logo elements and across the rocky peak below. Ambient occlusion deepens the carved negative spaces between the design forms. Camera angle is slightly low, looking up at the sculpture from a three-quarter front perspective, emphasizing the scale and monumentality of the logo form, mirroring the heroic composition of a landmark monument. Rendering style: photorealistic, cinematic, ultra-detailed, physically based rendering, no text, no additional elements only the logo as a frosted stone sculpture on a cloud-covered mountain peak.

查看 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 3D render of a flat logo sculpted as a massive, frosted stone monument standing upright on the jagged peak of a rocky mountain summit. The logo retains its exact silhouette and proportions but is fully translated into thick, solid carved rock encased in a layer of translucent frost and ice. Each element and shape of the logo is extruded with significant depth and volume, giving it a bold, chunky sculptural mass. The surface texture is rough, dark basalt or granite stone, partially obscured by a crystalline frost coating, with deep natural cracks, chipped edges, and fine granular detail across every face. The outer boundary of the logo forms the shell of the sculpture, with negative spaces between design elements carved out as open voids cutting through the rock. The sculpture sits planted into the top of a rugged mountain peak, partially buried at its base, surrounded by cracked grey rock. A thick, textured layer of white snow and rime ice rests on the top flat surfaces of the logo forms and collects in the crevices and carved edges. Small icicles hang from the lower overhanging curves and edges, catching cold light. The entire structure has a subtle, semi-translucent frozen sheen, softening the harshness of the stone beneath. The sky behind is filled with a dramatic, dense sea of clouds rolling over distant mountain peaks, creating a misty, ethereal, and cold atmosphere. Soft, diffused light filters through the cloud layer, creating a stark contrast against the dark, frosted stone sculpture. Lighting is soft natural daylight from slightly above and to the left, casting realistic shadows beneath the logo elements and across the rocky peak below. Ambient occlusion deepens the carved negative spaces between the design forms. Camera angle is slightly low, looking up at the sculpture from a three-quarter front perspective, emphasizing the scale and monumentality of the logo form, mirroring the heroic composition of a landmark monument. Rendering style: photorealistic, cinematic, ultra-detailed, physically based rendering, no text, no additional elements only the logo as a frosted stone sculpture on a cloud-covered mountain peak."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

Present a clear, 45° top-down isometric miniature 3D cartoon...

Present a clear, 45° top-down isometric miniature 3D cartoon scene of [STADIUM], with soft refined textures, realistic PBR materials, and gentle lifelike lighting. Use a clean solid [COLOR] background. At the top-center, display the name of this stadium in large bold text, then directly beneath it show its real seating capacity in medium text, and place the official logo associated with this stadium below the capacity. All text must match the background contrast automatically (white or black). Centered layout

查看 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": "Present a clear, 45° top-down isometric miniature 3D cartoon scene of [STADIUM], with soft refined textures, realistic PBR materials, and gentle lifelike lighting. Use a clean solid [COLOR] background. At the top-center, display the name of this stadium in large bold text, then directly beneath it show its real seating capacity in medium text, and place the official logo associated with this stadium below the capacity. All text must match the background contrast automatically (white or black). Centered layout"
}
JSON
IM
图像
Photography nano-banana-2

A hyper-realistic 8k medium shot, captured with a standard l...

A hyper-realistic 8k medium shot, captured with a standard lens (e.g., 85mm) at a slightly low angle, frames a man seated in deep snow within a snowy forest. The man, with uploaded face as reference, wears a highly detailed black puffer jacket and black pants, looking calmly towards the left side of the frame. Directly behind him, a majestic black panther stands, its large front paws gently resting on his shoulders, creating a surreal yet intimate spatial relationship. The panther's head is positioned just above and slightly to the right of the man's head, its piercing yellow eyes looking forward. The scene is bathed in soft, natural daylight, typical of an overcast winter day, providing cinematic lighting with subtle shadows and highlighting the highly detailed texture of the panther's sleek fur and the man's quilted jacket. Volumetric lighting is evident through the abundant falling snow, which dots the subjects and the environment. The background features a softly blurred snowy forest, emphasizing the central figures and their unique interaction.

查看 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 8k medium shot, captured with a standard lens (e.g., 85mm) at a slightly low angle, frames a man seated in deep snow within a snowy forest. The man, with uploaded face as reference, wears a highly detailed black puffer jacket and black pants, looking calmly towards the left side of the frame. Directly behind him, a majestic black panther stands, its large front paws gently resting on his shoulders, creating a surreal yet intimate spatial relationship. The panther's head is positioned just above and slightly to the right of the man's head, its piercing yellow eyes looking forward. The scene is bathed in soft, natural daylight, typical of an overcast winter day, providing cinematic lighting with subtle shadows and highlighting the highly detailed texture of the panther's sleek fur and the man's quilted jacket. Volumetric lighting is evident through the abundant falling snow, which dots the subjects and the environment. The background features a softly blurred snowy forest, emphasizing the central figures and their unique interaction."
}
JSON
IM
图像
Food & Drink nano-banana-2

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

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

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

A cute 3D Pixar-style character portrait of a little girl wi...

A cute 3D Pixar-style character portrait of a little girl with big expressive eyes and round glasses, soft smooth skin, and slightly rosy cheeks. She has dark hair styled into two messy space buns tied with red scrunchies. She is wearing a cozy red knitted sweater with white winter patterns and blue denim overalls with small fabric details and light wear. Her arms are crossed casually. A small adorable fennec fox with huge ears and sleepy eyes is resting on her shoulder, leaning against her neck affectionately.

查看 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 cute 3D Pixar-style character portrait of a little girl with big expressive eyes and round glasses, soft smooth skin, and slightly rosy cheeks. She has dark hair styled into two messy space buns tied with red scrunchies. She is wearing a cozy red knitted sweater with white winter patterns and blue denim overalls with small fabric details and light wear. Her arms are crossed casually. A small adorable fennec fox with huge ears and sleepy eyes is resting on her shoulder, leaning against her neck affectionately."
}
JSON
IM
图像
Photography nano-banana-2

{ "scene": { "setting": "narrow outdoor alley with ste...

{ "scene": { "setting": "narrow outdoor alley with stepped pathway in a Mediterranean blue-painted town", "background": "vivid blue walls, stairs, and buildings with white accents, hanging fabric on wall, small windows, plants, and bright sky above", "lighting": "strong natural sunlight, high contrast with defined shadows, bright and saturated colors" }, "subject": { "type": "female", "pose": "seated on steps with one leg bent and the other extended slightly forward, hands resting naturally by her sides", "expression": "soft relaxed expression with eyes slightly downward, calm and serene mood", "face": "Use uploaded reference image, keep identity exact, natural facial proportions, visible skin texture and realistic lighting", "hair": "Use uploaded reference image, keep identity exact, long wavy hair falling over shoulders with natural volume", "eyes": "Use uploaded reference image, keep identity exact, softly focused downward gaze", "skin": "natural skin tone with sunlit highlights and realistic texture", "body": "natural proportions maintained" }, "clothing": { "outfit": "blue fitted sleeveless top paired with a long flowing white skirt", "footwear": "barefoot with both feet visible resting naturally on the blue steps", "accessories": "minimal jewelry, subtle necklace" }, "environment_details": { "props": "textured painted steps, hanging patterned fabric, architectural details of alley", "textures": "rough painted walls, fabric folds in skirt, smooth skin highlights, stone steps" }, "camera": { "angle": "slightly low front-facing angle centered on subject", "framing": "full body framing capturing entire seated pose and surrounding stairs", "focus": "sharp focus on subject with clear detailed background", "lens": "standard smartphone lens" }, "style": { "realism": "ultra realistic photography", "color_tone": "highly saturated blues contrasted with neutral white and natural skin tones", "effects": "natural sunlight, no artificial filters", "details": "high detail textures, crisp shadows, realistic depth and perspective" } }

查看 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": "{ \"scene\": { \"setting\": \"narrow outdoor alley with stepped pathway in a Mediterranean blue-painted town\", \"background\": \"vivid blue walls, stairs, and buildings with white accents, hanging fabric on wall, small windows, plants, and bright sky above\", \"lighting\": \"strong natural sunlight, high contrast with defined shadows, bright and saturated colors\" }, \"subject\": { \"type\": \"female\", \"pose\": \"seated on steps with one leg bent and the other extended slightly forward, hands resting naturally by her sides\", \"expression\": \"soft relaxed expression with eyes slightly downward, calm and serene mood\", \"face\": \"Use uploaded reference image, keep identity exact, natural facial proportions, visible skin texture and realistic lighting\", \"hair\": \"Use uploaded reference image, keep identity exact, long wavy hair falling over shoulders with natural volume\", \"eyes\": \"Use uploaded reference image, keep identity exact, softly focused downward gaze\", \"skin\": \"natural skin tone with sunlit highlights and realistic texture\", \"body\": \"natural proportions maintained\" }, \"clothing\": { \"outfit\": \"blue fitted sleeveless top paired with a long flowing white skirt\", \"footwear\": \"barefoot with both feet visible resting naturally on the blue steps\", \"accessories\": \"minimal jewelry, subtle necklace\" }, \"environment_details\": { \"props\": \"textured painted steps, hanging patterned fabric, architectural details of alley\", \"textures\": \"rough painted walls, fabric folds in skirt, smooth skin highlights, stone steps\" }, \"camera\": { \"angle\": \"slightly low front-facing angle centered on subject\", \"framing\": \"full body framing capturing entire seated pose and surrounding stairs\", \"focus\": \"sharp focus on subject with clear detailed background\", \"lens\": \"standard smartphone lens\" }, \"style\": { \"realism\": \"ultra realistic photography\", \"color_tone\": \"highly saturated blues contrasted with neutral white and natural skin tones\", \"effects\": \"natural sunlight, no artificial filters\", \"details\": \"high detail textures, crisp shadows, realistic depth and perspective\" } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt_title": "Sophisticated Urban Winter Couple Portr...

{ "prompt_title": "Sophisticated Urban Winter Couple Portrait", "environment": { "setting": "Upscale urban street corner during winter.", "architecture": "Massive grey stone pillar/building corner with classical detailing.", "background_elements": "Black wrought-iron fence with decorative gold finials/spikes. Classical stone building facade visible in background.", "ground": "Covered in fresh, clean white snow.", "atmosphere": "Light snow falling, snowflakes visible in the air. Cold, crisp winter day.", "color_palette": "Cool neutrals, stone grey, bright white snow, deep blacks, accent of burgundy." }, "subjects": [ { "id": "male_subject", "appearance": "Young adult male, fair skin, short dark hair styled neatly.", "clothing": { "outerwear": "Knee-length textured grey wool overcoat (possibly herringbone or tweed).", "top": "Black turtleneck sweater.", "bottoms": "Black tailored trousers, relaxed straight fit.", "footwear": "Black leather dress shoes or boots.", "accessories": "Black wayfarer-style sunglasses." }, "pose": "Standing confident and upright, one hand in coat pocket, other hand holding a dog leash. Looking slightly to the side." }, { "id": "female_subject", "appearance": "Young adult female, fair skin, dark hair pulled back into a sleek, tight bun.", "clothing": { "outerwear": "Long, oversized black wool coat.", "top": "Black fitted turtleneck.", "bottoms": "Black wide-leg trousers.", "footwear": "Burgundy/Maroon suede retro sneakers with white stripes (Adidas Gazelle style).", "accessories": "Black oval sunglasses, thin black belt with silver buckle, small gold hoop earrings, holding a black leather tote bag." }, "pose": "Standing next to male subject, hand touching lapel of coat, other hand holding bag at side. Radiating 'cool girl' aesthetic." } ], "additional_elements": { "animal": { "breed": "Beagle dog.", "pose": "Sitting obediently on the snow at the man's feet.", "appearance": "Tri-color fur (brown, black, white), wearing a collar and attached to a black leash." } }, "lighting_and_mood": { "lighting_type": "Soft, diffuse overcast natural light (winter daylight). No harsh shadows.", "mood": "Chic, minimalist, 'Old Money' aesthetic, quiet luxury, sophisticated, serene, fashionable.", "tonality": "Desaturated slightly with high contrast between the black clothing and white snow." }, "technical_details": { "style": "Ultra Photorealistic, High-End Street Style Photography.", "camera_settings": { "lens": "85mm portrait lens.", "aperture": "f/2.8 for slight depth of field separation from the stone background.", "shutter_speed": "Fast enough to freeze falling snowflakes.", "iso": "Low ISO (100) for grain-free clarity." }, "quality_modifiers": "8k resolution, highly detailed fabric textures (wool grain, leather sheen, suede texture), sharp focus on eyes/sunglasses, subsurface scattering on skin, cinematic composition, rule of thirds." } }

查看 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_title\": \"Sophisticated Urban Winter Couple Portrait\", \"environment\": { \"setting\": \"Upscale urban street corner during winter.\", \"architecture\": \"Massive grey stone pillar/building corner with classical detailing.\", \"background_elements\": \"Black wrought-iron fence with decorative gold finials/spikes. Classical stone building facade visible in background.\", \"ground\": \"Covered in fresh, clean white snow.\", \"atmosphere\": \"Light snow falling, snowflakes visible in the air. Cold, crisp winter day.\", \"color_palette\": \"Cool neutrals, stone grey, bright white snow, deep blacks, accent of burgundy.\" }, \"subjects\": [ { \"id\": \"male_subject\", \"appearance\": \"Young adult male, fair skin, short dark hair styled neatly.\", \"clothing\": { \"outerwear\": \"Knee-length textured grey wool overcoat (possibly herringbone or tweed).\", \"top\": \"Black turtleneck sweater.\", \"bottoms\": \"Black tailored trousers, relaxed straight fit.\", \"footwear\": \"Black leather dress shoes or boots.\", \"accessories\": \"Black wayfarer-style sunglasses.\" }, \"pose\": \"Standing confident and upright, one hand in coat pocket, other hand holding a dog leash. Looking slightly to the side.\" }, { \"id\": \"female_subject\", \"appearance\": \"Young adult female, fair skin, dark hair pulled back into a sleek, tight bun.\", \"clothing\": { \"outerwear\": \"Long, oversized black wool coat.\", \"top\": \"Black fitted turtleneck.\", \"bottoms\": \"Black wide-leg trousers.\", \"footwear\": \"Burgundy/Maroon suede retro sneakers with white stripes (Adidas Gazelle style).\", \"accessories\": \"Black oval sunglasses, thin black belt with silver buckle, small gold hoop earrings, holding a black leather tote bag.\" }, \"pose\": \"Standing next to male subject, hand touching lapel of coat, other hand holding bag at side. Radiating 'cool girl' aesthetic.\" } ], \"additional_elements\": { \"animal\": { \"breed\": \"Beagle dog.\", \"pose\": \"Sitting obediently on the snow at the man's feet.\", \"appearance\": \"Tri-color fur (brown, black, white), wearing a collar and attached to a black leash.\" } }, \"lighting_and_mood\": { \"lighting_type\": \"Soft, diffuse overcast natural light (winter daylight). No harsh shadows.\", \"mood\": \"Chic, minimalist, 'Old Money' aesthetic, quiet luxury, sophisticated, serene, fashionable.\", \"tonality\": \"Desaturated slightly with high contrast between the black clothing and white snow.\" }, \"technical_details\": { \"style\": \"Ultra Photorealistic, High-End Street Style Photography.\", \"camera_settings\": { \"lens\": \"85mm portrait lens.\", \"aperture\": \"f/2.8 for slight depth of field separation from the stone background.\", \"shutter_speed\": \"Fast enough to freeze falling snowflakes.\", \"iso\": \"Low ISO (100) for grain-free clarity.\" }, \"quality_modifiers\": \"8k resolution, highly detailed fabric textures (wool grain, leather sheen, suede texture), sharp focus on eyes/sunglasses, subsurface scattering on skin, cinematic composition, rule of thirds.\" } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "A woman relaxing poolside at a tropical resor...

{ "prompt": "A woman relaxing poolside at a tropical resort at night, lying on a cushioned lounge chair beside a rustic wooden table. She is wearing a colorful floral bikini and matching wrap skirt, resting her head on her hand while looking calmly toward the camera. A tall red cocktail in a glass sits on the table next to a glowing lantern candle. The background features a lit swimming pool with reflections on the water, palm trees, string lights, and a thatched-roof cabana with soft draped curtains. Warm ambient lighting, tropical vacation atmosphere, cinematic night photography, shallow depth of field, high detail, realistic skin tones.", "style": "photorealistic", "lighting": "warm ambient night lighting with soft highlights", "camera": "85mm lens, shallow depth of field", "resolution": "1024x1536" }

查看 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 woman relaxing poolside at a tropical resort at night, lying on a cushioned lounge chair beside a rustic wooden table. She is wearing a colorful floral bikini and matching wrap skirt, resting her head on her hand while looking calmly toward the camera. A tall red cocktail in a glass sits on the table next to a glowing lantern candle. The background features a lit swimming pool with reflections on the water, palm trees, string lights, and a thatched-roof cabana with soft draped curtains. Warm ambient lighting, tropical vacation atmosphere, cinematic night photography, shallow depth of field, high detail, realistic skin tones.\", \"style\": \"photorealistic\", \"lighting\": \"warm ambient night lighting with soft highlights\", \"camera\": \"85mm lens, shallow depth of field\", \"resolution\": \"1024x1536\" }"
}
JSON
IM
图像
Illustration & 3D nano-banana-2

{ "Objective": "Create a studio portrait blending a real h...

{ "Objective": "Create a studio portrait blending a real human with a tiny Pixar-style 3D cartoon version of themselves in a playful, whimsical interaction", "PersonaDetails": { "PrimarySubject": { "Type": "Real human", "Wardrobe": "Casual grey sweater or t-shirt", "Expression": "Surprised and delighted", "Pose": "Holding a tiny character in one hand and pointing at it with the other", "Skin": "Photorealistic skin texture with natural detail" }, "SecondarySubject": { "Type": "Tiny 3D cartoon version of the human", "Scale": "Miniature, resting in the human’s hand", "Style": "Pixar-style 3D character", "Proportions": "Exaggerated cute proportions with rounded features", "FacialFeatures": { "Eyes": "Large, expressive", "Expression": "Friendly, playful" }, "Consistency": "Matching hairstyle and outfit of the real human" } }, "Composition": { "Framing": "Medium close-up studio portrait", "InteractionFocus": "Clear visual relationship between human and miniature character", "DepthOfField": "Shallow depth of field", "Focus": "Ultra-sharp focus on both faces" }, "LightingAndBackground": { "LightingStyle": "Soft cinematic studio lighting", "LightQuality": "Smooth highlights with gentle shadow falloff", "Background": "Dark blue gradient studio backdrop", "Separation": "Subtle rim light for subject-background separation" }, "ArtDirection": { "StyleFusion": [ "Photorealistic human portrait photography", "High-quality Pixar-style 3D character rendering" ], "Integration": "Seamless blending between real and 3D elements", "DetailLevel": "Ultra-detailed textures on skin, fabric, and 3D materials" }, "MoodAndTone": { "Mood": "Whimsical, fun, lighthearted", "Energy": "Playful surprise and delight" }, "PhotographyStyle": { "Genre": "Professional studio portrait photography", "CameraLook": "High-end cinematic realism", "ImageQuality": "High resolution, clean and sharp" }, "NegativePrompt": [ "uncanny valley", "cartoon human", "low-quality 3D", "harsh lighting", "oversaturated colors", "blurry focus", "flat composition" ], "ResponseFormat": { "Type": "Single image", "Orientation": "Portrait", "AspectRatio": "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": "{ \"Objective\": \"Create a studio portrait blending a real human with a tiny Pixar-style 3D cartoon version of themselves in a playful, whimsical interaction\", \"PersonaDetails\": { \"PrimarySubject\": { \"Type\": \"Real human\", \"Wardrobe\": \"Casual grey sweater or t-shirt\", \"Expression\": \"Surprised and delighted\", \"Pose\": \"Holding a tiny character in one hand and pointing at it with the other\", \"Skin\": \"Photorealistic skin texture with natural detail\" }, \"SecondarySubject\": { \"Type\": \"Tiny 3D cartoon version of the human\", \"Scale\": \"Miniature, resting in the human’s hand\", \"Style\": \"Pixar-style 3D character\", \"Proportions\": \"Exaggerated cute proportions with rounded features\", \"FacialFeatures\": { \"Eyes\": \"Large, expressive\", \"Expression\": \"Friendly, playful\" }, \"Consistency\": \"Matching hairstyle and outfit of the real human\" } }, \"Composition\": { \"Framing\": \"Medium close-up studio portrait\", \"InteractionFocus\": \"Clear visual relationship between human and miniature character\", \"DepthOfField\": \"Shallow depth of field\", \"Focus\": \"Ultra-sharp focus on both faces\" }, \"LightingAndBackground\": { \"LightingStyle\": \"Soft cinematic studio lighting\", \"LightQuality\": \"Smooth highlights with gentle shadow falloff\", \"Background\": \"Dark blue gradient studio backdrop\", \"Separation\": \"Subtle rim light for subject-background separation\" }, \"ArtDirection\": { \"StyleFusion\": [ \"Photorealistic human portrait photography\", \"High-quality Pixar-style 3D character rendering\" ], \"Integration\": \"Seamless blending between real and 3D elements\", \"DetailLevel\": \"Ultra-detailed textures on skin, fabric, and 3D materials\" }, \"MoodAndTone\": { \"Mood\": \"Whimsical, fun, lighthearted\", \"Energy\": \"Playful surprise and delight\" }, \"PhotographyStyle\": { \"Genre\": \"Professional studio portrait photography\", \"CameraLook\": \"High-end cinematic realism\", \"ImageQuality\": \"High resolution, clean and sharp\" }, \"NegativePrompt\": [ \"uncanny valley\", \"cartoon human\", \"low-quality 3D\", \"harsh lighting\", \"oversaturated colors\", \"blurry focus\", \"flat composition\" ], \"ResponseFormat\": { \"Type\": \"Single image\", \"Orientation\": \"Portrait\", \"AspectRatio\": \"2:3\" } }"
}
JSON
IM
图像
Photography nano-banana-2

A studio-style close-up editorial portrait of a person with...

A studio-style close-up editorial portrait of a person with strong, well-defined facial features and slightly imperfect, natural skin texture. The subject wears a black tailored turtleneck with sharp, clean lines, layered under a high-collared black jacket in a minimalist contemporary fashion style.The subject wears semi-transparent orange acetate sunglasses — rectangular frames with softly rounded edges, glossy finish, and amber gradient lenses — serving as the only colored element in the image.Color concept: selective color photography — monochrome black-and-white image with only the sunglasses in vivid orange. Mood is calm and confident, serious expression, direct gaze into the camera. Lighting is soft frontal studio light with gentle shadows, even skin tones, cinematic contrast, and visible natural skin texture. Shot on a professional portrait camera, f/2.0, ISO 100, 1/125s. High resolution, ultra-sharp focus on the face. Style: editorial luxury fashion portrait, photorealistic, professional studio photography, no illustration, no painterly effects.

查看 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 studio-style close-up editorial portrait of a person with strong, well-defined facial features and slightly imperfect, natural skin texture. The subject wears a black tailored turtleneck with sharp, clean lines, layered under a high-collared black jacket in a minimalist contemporary fashion style.The subject wears semi-transparent orange acetate sunglasses — rectangular frames with softly rounded edges, glossy finish, and amber gradient lenses — serving as the only colored element in the image.Color concept: selective color photography — monochrome black-and-white image with only the sunglasses in vivid orange. Mood is calm and confident, serious expression, direct gaze into the camera. Lighting is soft frontal studio light with gentle shadows, even skin tones, cinematic contrast, and visible natural skin texture. Shot on a professional portrait camera, f/2.0, ISO 100, 1/125s. High resolution, ultra-sharp focus on the face. Style: editorial luxury fashion portrait, photorealistic, professional studio photography, no illustration, no painterly effects."
}
JSON
IM
图像
Food & Drink nano-banana-2

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

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

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic smoothie explosion, banana slices, strawberry pieces, blueberry splash, chia seeds, liquid swirl frozen mid-air, bright studio lighting, glossy liquid texture, premium health drink ad style, shallow depth, ultra sharp, frozen motion, cinematic 8K realism --ar 2:3 --v 6 --style raw"
}
JSON
常见问题

使用 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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。