模型 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 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
图像
Illustration & 3D nano-banana-2

Create a funny 4-part story featuring 3 fluffy creatures bui...

Create a funny 4-part story featuring 3 fluffy creatures building a treehouse. The story has emotional highs and lows and ends in a happy moment. Maintain consistent identity across the 3 characters. Generate 4 images in 16:9 format, one at a time.

查看 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 funny 4-part story featuring 3 fluffy creatures building a treehouse. The story has emotional highs and lows and ends in a happy moment. Maintain consistent identity across the 3 characters. Generate 4 images in 16:9 format, one at a time."
}
JSON
IM
图像
Product & Brand nano-banana-2

Create an exploded products with inner mechanics [product],...

Create an exploded products with inner mechanics [product], high-end product advertising, white seamless background, exploded view with inner mechanics revealed, outer shell hovering above core, micro screws and components suspended, perfect alignment guides implied, crisp soft shadow, ultra realistic, macro product photography, 100mm lens look, f/8, 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": "Create an exploded products with inner mechanics [product], high-end product advertising, white seamless background, exploded view with inner mechanics revealed, outer shell hovering above core, micro screws and components suspended, perfect alignment guides implied, crisp soft shadow, ultra realistic, macro product photography, 100mm lens look, f/8, 8k, 1:1"
}
JSON
IM
图像
Poster Design nano-banana-2

{ "project_settings": { "task_type": "九宫格新年祝福肖像(男生版)",...

{ "project_settings": { "task_type": "九宫格新年祝福肖像(男生版)", "aspect_ratio": "1:1", "grid_layout": "3x3", "batch_size": 1 }, "overall_style": { "整体风格": "极简新年祝福风", "视觉基调": "干净、温和、克制的节日感", "背景": "纯色白墙面,无装饰", "光线": "自然柔光,均匀无强阴影", "色彩重点": "中国红(服装 + 文字)" }, "subject_base": { "人物一致性": "九宫格内为同一位人物", "人物类型": "亚洲男性", "性别气质": "干净、阳光、自然,不油腻", "发型": "黑色短发,自然蓬松,简洁利落", "服装": "红色针织毛衣或卫衣,简洁无图案", "妆容": "无明显妆感,真实自然肤质", "表情气质": "开心,克制的微笑,不夸张" }, "pose_variations": { "grid_1": "食指竖于嘴前,轻松安静手势", "grid_2": "单手比 V 手势靠近脸部", "grid_3": "单手做 OK 或三指手势", "grid_4": "双手举起做轻松俏皮手势(不过度卖萌)", "grid_5": "单手张开遮住半边脸", "grid_6": "单手做电话手势靠近脸侧", "grid_7": "单手轻点脸颊或下巴", "grid_8": "单手托下巴,轻微思考姿势", "grid_9": "双手指向脸部或克制比心变体" }, "text_overlays": { "字体风格": "传统中文新年书法字体", "文字颜色": "中国红", "年份颜色": "深蓝色", "文字位置": "每一格顶部居中", "文字结构": "四字祝福语 + 年份" }, "text_content": [ { "position": "grid_1", "text": "一帆风顺", "year": "2026" }, { "position": "grid_2", "text": "双喜临门", "year": "2026" }, { "position": "grid_3", "text": "三阳开泰", "year": "2026" }, { "position": "grid_4", "text": "四季发财", "year": "2026" }, { "position": "grid_5", "text": "五福临门", "year": "2026" }, { "position": "grid_6", "text": "六六大顺", "year": "2026" }, { "position": "grid_7", "text": "七星高照", "year": "2026" }, { "position": "grid_8", "text": "八方来财", "year": "2026" }, { "position": "grid_9", "text": "九九同心", "year": "2026" } ], "constraints": { "禁止项": [ "不改变人物身份", "不夸张表情", "不女性化姿态", "不使用复杂背景", "不添加节日道具", "不风格化面部" ], "一致性要求": [ "人物脸型五官保持完全一致", "服装颜色与材质一致", "拍摄角度与距离基本一致" ] }, "use_cases": [ "男生新年纪念照", "个人春节祝福九宫格", "社交平台头像矩阵", "品牌新年男生模板" ] }

查看 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": "{ \"project_settings\": { \"task_type\": \"九宫格新年祝福肖像(男生版)\", \"aspect_ratio\": \"1:1\", \"grid_layout\": \"3x3\", \"batch_size\": 1 }, \"overall_style\": { \"整体风格\": \"极简新年祝福风\", \"视觉基调\": \"干净、温和、克制的节日感\", \"背景\": \"纯色白墙面,无装饰\", \"光线\": \"自然柔光,均匀无强阴影\", \"色彩重点\": \"中国红(服装 + 文字)\" }, \"subject_base\": { \"人物一致性\": \"九宫格内为同一位人物\", \"人物类型\": \"亚洲男性\", \"性别气质\": \"干净、阳光、自然,不油腻\", \"发型\": \"黑色短发,自然蓬松,简洁利落\", \"服装\": \"红色针织毛衣或卫衣,简洁无图案\", \"妆容\": \"无明显妆感,真实自然肤质\", \"表情气质\": \"开心,克制的微笑,不夸张\" }, \"pose_variations\": { \"grid_1\": \"食指竖于嘴前,轻松安静手势\", \"grid_2\": \"单手比 V 手势靠近脸部\", \"grid_3\": \"单手做 OK 或三指手势\", \"grid_4\": \"双手举起做轻松俏皮手势(不过度卖萌)\", \"grid_5\": \"单手张开遮住半边脸\", \"grid_6\": \"单手做电话手势靠近脸侧\", \"grid_7\": \"单手轻点脸颊或下巴\", \"grid_8\": \"单手托下巴,轻微思考姿势\", \"grid_9\": \"双手指向脸部或克制比心变体\" }, \"text_overlays\": { \"字体风格\": \"传统中文新年书法字体\", \"文字颜色\": \"中国红\", \"年份颜色\": \"深蓝色\", \"文字位置\": \"每一格顶部居中\", \"文字结构\": \"四字祝福语 + 年份\" }, \"text_content\": [ { \"position\": \"grid_1\", \"text\": \"一帆风顺\", \"year\": \"2026\" }, { \"position\": \"grid_2\", \"text\": \"双喜临门\", \"year\": \"2026\" }, { \"position\": \"grid_3\", \"text\": \"三阳开泰\", \"year\": \"2026\" }, { \"position\": \"grid_4\", \"text\": \"四季发财\", \"year\": \"2026\" }, { \"position\": \"grid_5\", \"text\": \"五福临门\", \"year\": \"2026\" }, { \"position\": \"grid_6\", \"text\": \"六六大顺\", \"year\": \"2026\" }, { \"position\": \"grid_7\", \"text\": \"七星高照\", \"year\": \"2026\" }, { \"position\": \"grid_8\", \"text\": \"八方来财\", \"year\": \"2026\" }, { \"position\": \"grid_9\", \"text\": \"九九同心\", \"year\": \"2026\" } ], \"constraints\": { \"禁止项\": [ \"不改变人物身份\", \"不夸张表情\", \"不女性化姿态\", \"不使用复杂背景\", \"不添加节日道具\", \"不风格化面部\" ], \"一致性要求\": [ \"人物脸型五官保持完全一致\", \"服装颜色与材质一致\", \"拍摄角度与距离基本一致\" ] }, \"use_cases\": [ \"男生新年纪念照\", \"个人春节祝福九宫格\", \"社交平台头像矩阵\", \"品牌新年男生模板\" ] }"
}
JSON
IM
图像
Poster Design nano-banana-2

[BRAND NAME]. Act as a Social Media Art Director and Digital...

[BRAND NAME]. Act as a Social Media Art Director and Digital Collage Artist specializing in bold, youth-oriented brand content for Instagram and digital campaigns. PHASE 1: CONCEPTUAL FRAMEWORK Create a dynamic digital collage that merges fashion photography with graphic design chaos. This is controlled rebellion – a composition that feels spontaneous and energetic while maintaining brand coherence. The aesthetic is anti-polished: torn edges, layered textures, hand-drawn elements, and bold color blocking that screams confidence and movement. PHASE 2: MODEL & PHOTOGRAPHY - Subject: One model (diverse casting, age 18-30) in a dynamic, confident pose - Pose Energy: 80% attitude, 20% natural – sitting, jumping, mid-motion, or power stance (avoid static standing) - Outfit: Street style/athleisure that aligns with [BRAND NAME] aesthetic – casual but styled - Hero Product: Feature 1 signature [BRAND NAME] product prominently (sneakers, bag, apparel) – this is the visual anchor - Photography Style: Editorial fashion cutout – model extracted from background with clean edges - Camera Angle: Slight low angle to empower subject (hero perspective) - Crop: Full body or 3/4 body showing hero product clearly - Background Removal: Model cut out cleanly for layering over collage elements PHASE 3: COLOR BLOCKING FOUNDATION - Primary Color Blob: Large organic shape (40-60% of composition) in bold, saturated brand color behind/around model - Shape Style: Irregular, hand-painted aesthetic – think Photoshop brush strokes or torn paper texture (NOT perfect geometric shapes) - Color Selection (Autonomous): Choose 1 hero color from [BRAND NAME] palette: - Texture: Visible brush strokes, grain, or subtle noise (15-25% opacity) – avoid flat digital fills - Placement: Blob positioned to frame model without obscuring key product details PHASE 4: GRAPHIC ELEMENTS LAYER Add 3-5 abstract graphic elements scattered across composition: - Element Types: - Color Palette: Use 2-3 accent colors total (main blob color + 1-2 contrasting tones from brand palette) - Placement: Asymmetric scatter – top-left and bottom-right zones primarily (avoid center crowding) - Scale: Mix small (5% of canvas) and medium (15% of canvas) elements – nothing overpowering - Aesthetic: Analog/handmade feel – imperfect circles, rough edges, visible texture PHASE 5: TYPOGRAPHY INTEGRATION - Brand Logo: Clean [BRAND NAME] logo placed in upper-left or upper-right quadrant (10-15% of width) - Slogan/Tagline: If [BRAND NAME] has an iconic slogan, integrate it using: - Supporting Copy: Optional 1-line descriptor (e.g., "A MOMENT OF YOUR STYLE") in smaller uppercase sans-serif - Type Treatment: Mix of aligned and slightly rotated text (2-5° angles) for dynamic energy - Hierarchy: Logo largest → Slogan medium → Copy smallest PHASE 6: TEXTURE & BACKGROUND - Base Layer: Off-white or light gray textured background (NOT pure white) - Texture Options (Autonomous selection): - Color: RGB 245-250 (near-white with warmth) – maintains brightness while adding depth - Treatment: Texture should be felt, not seen – enhances tactility without competing with foreground PHASE 7: COMPOSITION RULES - Layout: Asymmetric balance – model off-center, graphic elements counter-balance - Breathing Room: 15-20% negative space (textured background visible) to prevent claustrophobia - Layering Order: Background texture → Color blob → Graphic elements → Model (cutout) → Typography top layer - Focal Point: Model + hero product = primary focus (60% visual weight), graphics support (40%) - Movement: Diagonal lines and angled elements create directional flow (top-left to bottom-right or vice versa) PHASE 8: BRAND INTELLIGENCE (AUTONOMOUS) Autonomously adapt composition based on [BRAND NAME] personality: - Streetwear/Sportswear (Nike, Adidas, Supreme): - Luxury Streetwear (Balenciaga, Off-White, Gucci): - Beauty/Lifestyle (Glossier, Fenty, Skims): - Tech/Modern (Apple, Tesla, Beats): PHASE 9: SOCIAL MEDIA FOOTER (OPTIONAL) - Bottom Strip: Clean white or light gray bar at bottom 8-10% of frame - Content: Social media handles (Instagram, Facebook, Twitter) in small sans-serif - Layout: Three-column grid with platform icons or text handles - Aesthetic: Minimal and professional – contrast with chaotic collage above TECHNICAL SPECS: - Aspect Ratio: 4:5 (Instagram feed) or 1:1 (square social post) - Resolution: 2400x3000px minimum (high-quality for zoom and detail) - Color Mode: sRGB, vibrant saturation (Instagram-optimized) - File Aesthetic: Digital collage that mimics analog craft (Photoshop + hand-drawn hybrid) - Model Photography: 85mm lens, f/2.8, shallow depth of field on original shoot (before cutout) - Style Reference: Nike social campaigns, Spotify wrapped graphics, Gen Z Instagram aesthetics, Hypebeast x streetwear collabs - Mood: Confident, energetic, youthful, authentic chaos, anti-corporate polish

查看 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 Social Media Art Director and Digital Collage Artist specializing in bold, youth-oriented brand content for Instagram and digital campaigns. PHASE 1: CONCEPTUAL FRAMEWORK Create a dynamic digital collage that merges fashion photography with graphic design chaos. This is controlled rebellion – a composition that feels spontaneous and energetic while maintaining brand coherence. The aesthetic is anti-polished: torn edges, layered textures, hand-drawn elements, and bold color blocking that screams confidence and movement. PHASE 2: MODEL & PHOTOGRAPHY - Subject: One model (diverse casting, age 18-30) in a dynamic, confident pose - Pose Energy: 80% attitude, 20% natural – sitting, jumping, mid-motion, or power stance (avoid static standing) - Outfit: Street style/athleisure that aligns with [BRAND NAME] aesthetic – casual but styled - Hero Product: Feature 1 signature [BRAND NAME] product prominently (sneakers, bag, apparel) – this is the visual anchor - Photography Style: Editorial fashion cutout – model extracted from background with clean edges - Camera Angle: Slight low angle to empower subject (hero perspective) - Crop: Full body or 3/4 body showing hero product clearly - Background Removal: Model cut out cleanly for layering over collage elements PHASE 3: COLOR BLOCKING FOUNDATION - Primary Color Blob: Large organic shape (40-60% of composition) in bold, saturated brand color behind/around model - Shape Style: Irregular, hand-painted aesthetic – think Photoshop brush strokes or torn paper texture (NOT perfect geometric shapes) - Color Selection (Autonomous): Choose 1 hero color from [BRAND NAME] palette: - Texture: Visible brush strokes, grain, or subtle noise (15-25% opacity) – avoid flat digital fills - Placement: Blob positioned to frame model without obscuring key product details PHASE 4: GRAPHIC ELEMENTS LAYER Add 3-5 abstract graphic elements scattered across composition: - Element Types: - Color Palette: Use 2-3 accent colors total (main blob color + 1-2 contrasting tones from brand palette) - Placement: Asymmetric scatter – top-left and bottom-right zones primarily (avoid center crowding) - Scale: Mix small (5% of canvas) and medium (15% of canvas) elements – nothing overpowering - Aesthetic: Analog/handmade feel – imperfect circles, rough edges, visible texture PHASE 5: TYPOGRAPHY INTEGRATION - Brand Logo: Clean [BRAND NAME] logo placed in upper-left or upper-right quadrant (10-15% of width) - Slogan/Tagline: If [BRAND NAME] has an iconic slogan, integrate it using: - Supporting Copy: Optional 1-line descriptor (e.g., \"A MOMENT OF YOUR STYLE\") in smaller uppercase sans-serif - Type Treatment: Mix of aligned and slightly rotated text (2-5° angles) for dynamic energy - Hierarchy: Logo largest → Slogan medium → Copy smallest PHASE 6: TEXTURE & BACKGROUND - Base Layer: Off-white or light gray textured background (NOT pure white) - Texture Options (Autonomous selection): - Color: RGB 245-250 (near-white with warmth) – maintains brightness while adding depth - Treatment: Texture should be felt, not seen – enhances tactility without competing with foreground PHASE 7: COMPOSITION RULES - Layout: Asymmetric balance – model off-center, graphic elements counter-balance - Breathing Room: 15-20% negative space (textured background visible) to prevent claustrophobia - Layering Order: Background texture → Color blob → Graphic elements → Model (cutout) → Typography top layer - Focal Point: Model + hero product = primary focus (60% visual weight), graphics support (40%) - Movement: Diagonal lines and angled elements create directional flow (top-left to bottom-right or vice versa) PHASE 8: BRAND INTELLIGENCE (AUTONOMOUS) Autonomously adapt composition based on [BRAND NAME] personality: - Streetwear/Sportswear (Nike, Adidas, Supreme): - Luxury Streetwear (Balenciaga, Off-White, Gucci): - Beauty/Lifestyle (Glossier, Fenty, Skims): - Tech/Modern (Apple, Tesla, Beats): PHASE 9: SOCIAL MEDIA FOOTER (OPTIONAL) - Bottom Strip: Clean white or light gray bar at bottom 8-10% of frame - Content: Social media handles (Instagram, Facebook, Twitter) in small sans-serif - Layout: Three-column grid with platform icons or text handles - Aesthetic: Minimal and professional – contrast with chaotic collage above TECHNICAL SPECS: - Aspect Ratio: 4:5 (Instagram feed) or 1:1 (square social post) - Resolution: 2400x3000px minimum (high-quality for zoom and detail) - Color Mode: sRGB, vibrant saturation (Instagram-optimized) - File Aesthetic: Digital collage that mimics analog craft (Photoshop + hand-drawn hybrid) - Model Photography: 85mm lens, f/2.8, shallow depth of field on original shoot (before cutout) - Style Reference: Nike social campaigns, Spotify wrapped graphics, Gen Z Instagram aesthetics, Hypebeast x streetwear collabs - Mood: Confident, energetic, youthful, authentic chaos, anti-corporate polish"
}
JSON
IM
图像
Product & Brand nano-banana-2

[BRAND NAME]. Act as a vector illustrator designing a trendy...

[BRAND NAME]. Act as a vector illustrator designing a trendy, high-end "Sticker Sheet" set. THE TASK: Deconstruct the brand identity of [BRAND NAME] into a playful, cohesive set of approximately 8-10 unique sticker designs arranged on a single sheet. Content Generation: Do not just make logos. Autonomously invent a mix of: Mascots/Characters: Stylized busts of people wearing brand-relevant accessories or expressing emotions. Key Products: Iconic items associated with the brand. Symbols/Objects: Abstract shapes or tools relevant to the brand's lifestyle. VISUAL STYLE (MONOLINE VECTOR): The art style must strictly match "Modern Trendy Line Art." Line Work: Use a THICK, UNIFORM line weight (monoline) for all internal details. The lines should be smooth, rounded, and confident. Coloring: The stickers must be filled with Solid Off-White or Cream, utilizing the line color for details. NO gradients, NO shading, NO 3D effects. Flat 2D vector look. The "Sticker" Effect: Every element must have a thick, distinct White (or Cream) Die-Cut Border surrounding it, separating it from the background. COLOR PALETTE (HIGH CONTRAST): Background: A solid, deep, saturated color to create maximum contrast. Stickers: High-brightness Cream or White fill with Dark (Black or Dark Brown) outlines. COMPOSITION: The stickers are scattered naturally across the sheet (knolling layout) with even spacing. No overlapping.

查看 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 vector illustrator designing a trendy, high-end \"Sticker Sheet\" set. THE TASK: Deconstruct the brand identity of [BRAND NAME] into a playful, cohesive set of approximately 8-10 unique sticker designs arranged on a single sheet. Content Generation: Do not just make logos. Autonomously invent a mix of: Mascots/Characters: Stylized busts of people wearing brand-relevant accessories or expressing emotions. Key Products: Iconic items associated with the brand. Symbols/Objects: Abstract shapes or tools relevant to the brand's lifestyle. VISUAL STYLE (MONOLINE VECTOR): The art style must strictly match \"Modern Trendy Line Art.\" Line Work: Use a THICK, UNIFORM line weight (monoline) for all internal details. The lines should be smooth, rounded, and confident. Coloring: The stickers must be filled with Solid Off-White or Cream, utilizing the line color for details. NO gradients, NO shading, NO 3D effects. Flat 2D vector look. The \"Sticker\" Effect: Every element must have a thick, distinct White (or Cream) Die-Cut Border surrounding it, separating it from the background. COLOR PALETTE (HIGH CONTRAST): Background: A solid, deep, saturated color to create maximum contrast. Stickers: High-brightness Cream or White fill with Dark (Black or Dark Brown) outlines. COMPOSITION: The stickers are scattered naturally across the sheet (knolling layout) with even spacing. No overlapping."
}
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
图像
Photography nano-banana-2

{ "subject": { "description": "the prettiest (G)I-DLE Yuqi t...

{ "subject": { "description": "the prettiest (G)I-DLE Yuqi taking a high-angle selfie.", "mirror_rules": "Left arm extended holding camera.", "age": "Early 20s", "expression": { "eyes": { "look": "upward at lens", "energy": "alluring", "direction": "direct" }, "mouth": { "position": "slightly parted", "energy": "soft" }, "overall": "seductive and innocent" }, "face": { "preserve_original": true, "features": "Yuqi's irresistibly cute yet alluring round-yet-sharp face, bright expressive eyes, charming smile lines, and vibrant fair aesthetic.", "makeup": "Asian influencer aesthetic, heavy under-eye blush, light contacts, glossy lips." } }, "hair": { "color": "Warm light brown", "style": "Long, loose waves, voluminous.", "effect": "Top backlit halo, strands falling over chest." }, "body": { "frame": "Slim with pronounced curves.", "waist": "Narrow", "chest": "Full, deep cleavage.", "legs": "Upper thighs visible.", "skin": { "visible_areas": "Chest, shoulders, left arm, upper hips.", "tone": "Fair, pale luminous.", "texture": "Smooth, soft, slightly dewy.", "lighting_effect": "Harsh warm sunlight hitting cleavage and left shoulder, casting sharp shadows." } }, "pose": { "position": "Angled torso, hips pushed back, playful high-angle pose with slight hip cock and energetic lean.", "base": "Standing/leaning.", "overall": "Leaning forward into the high-angle lens with flirty body language." }, "clothing": { "top": { "type": "Tight shiny latex bodysuit with detached left sleeve.", "color": "Glossy Purple", "details": "Deep scoop neck, thin straps.", "effect": "Stretching tightly over chest." }, "bottom": { "type": "Latex bodysuit bottom", "color": "Glossy Purple", "details": "Extremely high cut exposing hips." } }, "accessories": { "jewelry": "Delicate silver pendant necklace." }, "photography": { "camera_style": "Smartphone selfie", "angle": "High angle, looking down.", "shot_type": "Medium close-up.", "aspect_ratio": "9:16", "texture": "Digital, slight wide-angle distortion on left arm.", "lighting": "Strong directional warm light, high contrast.", "depth_of_field": "Shallow, blurry dark background." }, "background": { "setting": "Dark interior room.", "wall_color": "Dark/black.", "elements": [ "Lit door edge on left" ], "atmosphere": "Intimate, private.", "lighting": "Mostly dark with one sharp shaft of warm light." }, "the_vibe": { "energy": "Captivating", "mood": "Sensual", "aesthetic": "Soft-core, golden hour selfie.", "authenticity": "Casual smartphone snapshot.", "intimacy": "High, direct eye contact.", "story": "Catching the golden hour light in a bedroom.", "caption_energy": "Effortless glow." }, "constraints": { "must_keep": [ "High angle perspective", "Harsh warm directional light", "Bodysuit cut" ], "avoid": [ "Flat studio lighting", "Professional posture", "Over-bright background" ] }, "negative_prompt": [ "ugly", "flat light", "studio lighting", "professional camera", "overexposed", "extra limbs", "stiff" ] }

查看 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\": { \"description\": \"the prettiest (G)I-DLE Yuqi taking a high-angle selfie.\", \"mirror_rules\": \"Left arm extended holding camera.\", \"age\": \"Early 20s\", \"expression\": { \"eyes\": { \"look\": \"upward at lens\", \"energy\": \"alluring\", \"direction\": \"direct\" }, \"mouth\": { \"position\": \"slightly parted\", \"energy\": \"soft\" }, \"overall\": \"seductive and innocent\" }, \"face\": { \"preserve_original\": true, \"features\": \"Yuqi's irresistibly cute yet alluring round-yet-sharp face, bright expressive eyes, charming smile lines, and vibrant fair aesthetic.\", \"makeup\": \"Asian influencer aesthetic, heavy under-eye blush, light contacts, glossy lips.\" } }, \"hair\": { \"color\": \"Warm light brown\", \"style\": \"Long, loose waves, voluminous.\", \"effect\": \"Top backlit halo, strands falling over chest.\" }, \"body\": { \"frame\": \"Slim with pronounced curves.\", \"waist\": \"Narrow\", \"chest\": \"Full, deep cleavage.\", \"legs\": \"Upper thighs visible.\", \"skin\": { \"visible_areas\": \"Chest, shoulders, left arm, upper hips.\", \"tone\": \"Fair, pale luminous.\", \"texture\": \"Smooth, soft, slightly dewy.\", \"lighting_effect\": \"Harsh warm sunlight hitting cleavage and left shoulder, casting sharp shadows.\" } }, \"pose\": { \"position\": \"Angled torso, hips pushed back, playful high-angle pose with slight hip cock and energetic lean.\", \"base\": \"Standing/leaning.\", \"overall\": \"Leaning forward into the high-angle lens with flirty body language.\" }, \"clothing\": { \"top\": { \"type\": \"Tight shiny latex bodysuit with detached left sleeve.\", \"color\": \"Glossy Purple\", \"details\": \"Deep scoop neck, thin straps.\", \"effect\": \"Stretching tightly over chest.\" }, \"bottom\": { \"type\": \"Latex bodysuit bottom\", \"color\": \"Glossy Purple\", \"details\": \"Extremely high cut exposing hips.\" } }, \"accessories\": { \"jewelry\": \"Delicate silver pendant necklace.\" }, \"photography\": { \"camera_style\": \"Smartphone selfie\", \"angle\": \"High angle, looking down.\", \"shot_type\": \"Medium close-up.\", \"aspect_ratio\": \"9:16\", \"texture\": \"Digital, slight wide-angle distortion on left arm.\", \"lighting\": \"Strong directional warm light, high contrast.\", \"depth_of_field\": \"Shallow, blurry dark background.\" }, \"background\": { \"setting\": \"Dark interior room.\", \"wall_color\": \"Dark/black.\", \"elements\": [ \"Lit door edge on left\" ], \"atmosphere\": \"Intimate, private.\", \"lighting\": \"Mostly dark with one sharp shaft of warm light.\" }, \"the_vibe\": { \"energy\": \"Captivating\", \"mood\": \"Sensual\", \"aesthetic\": \"Soft-core, golden hour selfie.\", \"authenticity\": \"Casual smartphone snapshot.\", \"intimacy\": \"High, direct eye contact.\", \"story\": \"Catching the golden hour light in a bedroom.\", \"caption_energy\": \"Effortless glow.\" }, \"constraints\": { \"must_keep\": [ \"High angle perspective\", \"Harsh warm directional light\", \"Bodysuit cut\" ], \"avoid\": [ \"Flat studio lighting\", \"Professional posture\", \"Over-bright background\" ] }, \"negative_prompt\": [ \"ugly\", \"flat light\", \"studio lighting\", \"professional camera\", \"overexposed\", \"extra limbs\", \"stiff\" ] }"
}
JSON
IM
图像
Illustration & 3D nano-banana-2

A hyper-realistic 3D world guide infographic poster for [SHO...

A hyper-realistic 3D world guide infographic poster for [SHOW]. The fictional world of [SHOW] is rendered as a raised, textured terrain map floating on a clean light gray surface — the map shape and landscape must reflect the actual geography and visual aesthetic of [SHOW] (fantasy kingdoms, post-apocalyptic cities, island archipelagos, ninja villages etc). Iconic locations from [SHOW] are placed as miniature 3D sculpted models at their correct canonical positions across the map — each one highly detailed, photorealistic and instantly recognizable to fans. Roads or paths connect key locations as white lines across the terrain. Around the map, floating 3D decorative props and iconic items from [SHOW] are scattered on the light gray surface. The official logo of [SHOW] is shown in the upper right corner. Each major location has a bold black label on the map, and beside the map, each location has a neat checklist of its most iconic characters or moments associated with that place, in clean sans-serif typography. A large bold title at the top reads: “THE WORLD OF SHOW” in black uppercase typography with [SHOW] in heavy bold. The overall aesthetic is premium editorial — soft studio lighting, photorealistic 3D render, white/light gray background, clean layout, 4:5 aspect ratio.

查看 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 world guide infographic poster for [SHOW]. The fictional world of [SHOW] is rendered as a raised, textured terrain map floating on a clean light gray surface — the map shape and landscape must reflect the actual geography and visual aesthetic of [SHOW] (fantasy kingdoms, post-apocalyptic cities, island archipelagos, ninja villages etc). Iconic locations from [SHOW] are placed as miniature 3D sculpted models at their correct canonical positions across the map — each one highly detailed, photorealistic and instantly recognizable to fans. Roads or paths connect key locations as white lines across the terrain. Around the map, floating 3D decorative props and iconic items from [SHOW] are scattered on the light gray surface. The official logo of [SHOW] is shown in the upper right corner. Each major location has a bold black label on the map, and beside the map, each location has a neat checklist of its most iconic characters or moments associated with that place, in clean sans-serif typography. A large bold title at the top reads: “THE WORLD OF SHOW” in black uppercase typography with [SHOW] in heavy bold. The overall aesthetic is premium editorial — soft studio lighting, photorealistic 3D render, white/light gray background, clean layout, 4:5 aspect ratio."
}
JSON
IM
图像
Photography nano-banana-2

{ "image_generation_prompt": { "subject": { "des...

{ "image_generation_prompt": { "subject": { "description": "Young woman with a strong resemblance to Sabrina Carpenter.", "hair": "Middle-parted, straight, and smooth texture with soft layers framing the face; natural physics as it rests over the shoulders.", "face": "Enigmatic expression with a subtle gaze, sun-kissed dewy skin texture, visible fine pores, and a light flush on the cheeks.", "body": "Slender physique with a tanned skin tone, showing realistic skin grain and soft highlights on the midriff." }, "attire": { "clothing": "A vibrant orange string bikini with a white tropical floral print; the fabric has a slight sheen and thin spaghetti straps that tie at the neck and hips.", "style": "Bohemian Summer / Coastal Chic." }, "styling_and_accessories": { "jewelry": [ "Layered gold necklaces with various eclectic charms and pendants", "Multiple gold statement rings on several fingers", "A chunky translucent pink ring", "Sculptural gold wrap-around bracelets on both wrists", "A delicate gold belly chain resting across the waist" ] }, "environment": { "setting": "A rustic outdoor fruit market stall featuring weathered blue wooden structures.", "background": "Stacked plastic crates filled with produce including ripe red tomatoes, bunches of yellow bananas, and various shadowed market goods.", "water": "None" }, "pose": { "posture": "Seated on the ground, leaning slightly forward with a playful and relaxed demeanor.", "arms": "One hand is holding a large slice of watermelon up to her face, while the other arm is extended outward, resting against the blue stall structure.", "angle": "Eye-level shot with a slight tilt." }, "lighting_and_mood": { "lighting": "Bright, direct natural sunlight creating high-contrast shadows and vivid highlights.", "mood": "Vibrant, sun-drenched, and candidly cinematic.", "colors": "A primary palette of saturated watermelon red, cobalt blue, and sun-ripened orange, grounded by earthy grey gravel." }, "camera_and_technical": { "style": "Ultra Photorealistic, RAW photo.", "lens": "35mm wide-angle prime.", "aperture": "f/4.0 for a balance of sharp subject detail and environmental context.", "quality_tags": [ "8k resolution", "highly detailed", "volumetric lighting", "ray tracing reflections", "hyper-realistic texture", "Hasselblad 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_generation_prompt\": { \"subject\": { \"description\": \"Young woman with a strong resemblance to Sabrina Carpenter.\", \"hair\": \"Middle-parted, straight, and smooth texture with soft layers framing the face; natural physics as it rests over the shoulders.\", \"face\": \"Enigmatic expression with a subtle gaze, sun-kissed dewy skin texture, visible fine pores, and a light flush on the cheeks.\", \"body\": \"Slender physique with a tanned skin tone, showing realistic skin grain and soft highlights on the midriff.\" }, \"attire\": { \"clothing\": \"A vibrant orange string bikini with a white tropical floral print; the fabric has a slight sheen and thin spaghetti straps that tie at the neck and hips.\", \"style\": \"Bohemian Summer / Coastal Chic.\" }, \"styling_and_accessories\": { \"jewelry\": [ \"Layered gold necklaces with various eclectic charms and pendants\", \"Multiple gold statement rings on several fingers\", \"A chunky translucent pink ring\", \"Sculptural gold wrap-around bracelets on both wrists\", \"A delicate gold belly chain resting across the waist\" ] }, \"environment\": { \"setting\": \"A rustic outdoor fruit market stall featuring weathered blue wooden structures.\", \"background\": \"Stacked plastic crates filled with produce including ripe red tomatoes, bunches of yellow bananas, and various shadowed market goods.\", \"water\": \"None\" }, \"pose\": { \"posture\": \"Seated on the ground, leaning slightly forward with a playful and relaxed demeanor.\", \"arms\": \"One hand is holding a large slice of watermelon up to her face, while the other arm is extended outward, resting against the blue stall structure.\", \"angle\": \"Eye-level shot with a slight tilt.\" }, \"lighting_and_mood\": { \"lighting\": \"Bright, direct natural sunlight creating high-contrast shadows and vivid highlights.\", \"mood\": \"Vibrant, sun-drenched, and candidly cinematic.\", \"colors\": \"A primary palette of saturated watermelon red, cobalt blue, and sun-ripened orange, grounded by earthy grey gravel.\" }, \"camera_and_technical\": { \"style\": \"Ultra Photorealistic, RAW photo.\", \"lens\": \"35mm wide-angle prime.\", \"aperture\": \"f/4.0 for a balance of sharp subject detail and environmental context.\", \"quality_tags\": [ \"8k resolution\", \"highly detailed\", \"volumetric lighting\", \"ray tracing reflections\", \"hyper-realistic texture\", \"Hasselblad photography\" ] } } }"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic street portrait of a young woman s...

Ultra-realistic cinematic street portrait of a young woman standing still in a crowded city street, sharp focus on her face with calm, intense expression. Long-exposure effect with people moving around her creating strong directional motion blur, streaked crowd movement while the subject remains perfectly still. Natural soft daylight, shallow depth of field, creamy bokeh, realistic skin texture, subtle freckles, neutral makeup, dark winter coat and scarf. Emotional, introspective mood, urban storytelling photography, DSLR quality, 85mm lens look, f/1.8, high dynamic range, 8K, professional color grading.

查看 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 street portrait of a young woman standing still in a crowded city street, sharp focus on her face with calm, intense expression. Long-exposure effect with people moving around her creating strong directional motion blur, streaked crowd movement while the subject remains perfectly still. Natural soft daylight, shallow depth of field, creamy bokeh, realistic skin texture, subtle freckles, neutral makeup, dark winter coat and scarf. Emotional, introspective mood, urban storytelling photography, DSLR quality, 85mm lens look, f/1.8, high dynamic range, 8K, professional color grading."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic candid smartphone photograph, 9:16 vertical....

Ultra-realistic candid smartphone photograph, 9:16 vertical. Use the attached image only as a strong visual inspiration for general facial proportions and vibe, while ensuring the generated subject remains fully original, non-identifiable, and not a face copy. Scene Nighttime on a quiet Tokyo city sidewalk beside a building with white ceramic tile walls. The subject is walking past the camera, partially side-on, captured mid-step in a rushed, accidental moment. Poses & Gestures (combined naturally) The subject reacts instinctively to being photographed: turning her head back mid-walk as if surprised, raising one hand close to the lens to partially block the camera, shy, restrained smile forming as she suppresses laughter, body angled in half-profile while continuing to walk forward, motion carries her slightly out of frame, imperfect framing. Expressions are subtle and spontaneous — embarrassed, playful, fleeting — never posed. Camera & Motion Shot on a modern smartphone, handheld, rushed capture. Strong uncontrolled camera shake. Heavy directional motion blur across the raised hand, hair, and face. Facial features appear smeared and streaked by movement, faintly recognizable but distorted. Partial ghosting around the body. Imperfect framing, subject nearly leaving the frame. Lighting Flash-only lighting fired mid-motion. Harsh flash highlights on skin and hand. Deep surrounding darkness. Uneven exposure, blown highlights, hard shadows typical of hurried night phone photography. Background White ceramic tile wall stretches into streaked light bands due to motion blur. Street surroundings fade into darkness with minimal readable detail. Mood Candid, shy, slightly playful. Feels intrusive, raw, imperfect, and authentic — like a fleeting memory accidentally captured and never meant to be perfect. Image Quality Extremely noisy. Heavily blurred. Raw smartphone look. Not cinematic. Not editorial. Not polished. Negative Prompt anime, illustration, painting, stylized, studio lighting, beauty lighting, soft portrait, sharp focus, clean face, perfect anatomy, smooth skin, fashion editorial, posed portrait, cinematic grading, film still, tripod shot, professional photography, identity match, face copy, real person replication

查看 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 candid smartphone photograph, 9:16 vertical. Use the attached image only as a strong visual inspiration for general facial proportions and vibe, while ensuring the generated subject remains fully original, non-identifiable, and not a face copy. Scene Nighttime on a quiet Tokyo city sidewalk beside a building with white ceramic tile walls. The subject is walking past the camera, partially side-on, captured mid-step in a rushed, accidental moment. Poses & Gestures (combined naturally) The subject reacts instinctively to being photographed: turning her head back mid-walk as if surprised, raising one hand close to the lens to partially block the camera, shy, restrained smile forming as she suppresses laughter, body angled in half-profile while continuing to walk forward, motion carries her slightly out of frame, imperfect framing. Expressions are subtle and spontaneous — embarrassed, playful, fleeting — never posed. Camera & Motion Shot on a modern smartphone, handheld, rushed capture. Strong uncontrolled camera shake. Heavy directional motion blur across the raised hand, hair, and face. Facial features appear smeared and streaked by movement, faintly recognizable but distorted. Partial ghosting around the body. Imperfect framing, subject nearly leaving the frame. Lighting Flash-only lighting fired mid-motion. Harsh flash highlights on skin and hand. Deep surrounding darkness. Uneven exposure, blown highlights, hard shadows typical of hurried night phone photography. Background White ceramic tile wall stretches into streaked light bands due to motion blur. Street surroundings fade into darkness with minimal readable detail. Mood Candid, shy, slightly playful. Feels intrusive, raw, imperfect, and authentic — like a fleeting memory accidentally captured and never meant to be perfect. Image Quality Extremely noisy. Heavily blurred. Raw smartphone look. Not cinematic. Not editorial. Not polished. Negative Prompt anime, illustration, painting, stylized, studio lighting, beauty lighting, soft portrait, sharp focus, clean face, perfect anatomy, smooth skin, fashion editorial, posed portrait, cinematic grading, film still, tripod shot, professional photography, identity match, face copy, real person replication"
}
JSON
IM
图像
Illustration & 3D nano-banana-2

[Create a hand drawn isometric schematic diagram of this str...

[Create a hand drawn isometric schematic diagram of this street]

查看 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 hand drawn isometric schematic diagram of this street]"
}
JSON
IM
图像
Poster Design nano-banana-2

A refined fashion editorial image with a 3:4 aspect ratio, s...

A refined fashion editorial image with a 3:4 aspect ratio, split into two clear sections. Right side: A fashionable, confident, sensual woman standing and walking casually in a modern architectural space with red luxurious walls and soft natural light. She wears a top with a deep V neckline, a 90-60-90 figure, tucked into a high-waisted blue tailored short skirt, On her feet are sleek black stiletto heels, elegant and minimal. She carries a small structured red handbag in one hand and she is wearing a luxurious diamond necklace with a blue diamond on it. Her hair is open emphasizing her facial structure. She wears subtle statement earrings. The look is refined, modern, and effortlessly chic. Natural daylight, soft shadows, realistic skin texture. Casual fashion photography style with an editorial, high-end feel. alive color palette, warm tones, shallow depth of field, cinematic realism. Style & Mood: Modern elegance, quiet luxury, confident, minimal, editorial casual. Photography Details: Eye-level angle, candid stance, 35mm lens, natural lighting, high detail, photorealistic. Left side: A clean, minimalist product breakdown layout on a neutral background. The individual fashion items worn by the woman are displayed separately, neatly arranged with subtle shadows. Each item includes a small, elegant price label in refined sans-serif typography: – white deep V-neck knit top — $180 – blue high-waisted tailored mini skirt — $220 – Black pointed-toe stiletto heels — $350 – Small structured red handbag — $480 – a diamond necklace with a big blue diamond — $160000 The left side feels like a luxury fashion catalog or e-commerce lookbook, with a red carpet, luxurious walls, art pieces on wall Overall Style & Mood: Quiet luxury, modern elegance, editorial fashion, high-end retail aesthetic. Lighting & Quality: Soft natural light, studio-clean clarity on product side, photorealistic, ultra-high resolution, professional fashion photography. Negative Prompt: Cluttered layout, oversized text, flashy logos, mannequins, people on left side, harsh lighting, low resolution, cartoon style.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A refined fashion editorial image with a 3:4 aspect ratio, split into two clear sections. Right side: A fashionable, confident, sensual woman standing and walking casually in a modern architectural space with red luxurious walls and soft natural light. She wears a top with a deep V neckline, a 90-60-90 figure, tucked into a high-waisted blue tailored short skirt, On her feet are sleek black stiletto heels, elegant and minimal. She carries a small structured red handbag in one hand and she is wearing a luxurious diamond necklace with a blue diamond on it. Her hair is open emphasizing her facial structure. She wears subtle statement earrings. The look is refined, modern, and effortlessly chic. Natural daylight, soft shadows, realistic skin texture. Casual fashion photography style with an editorial, high-end feel. alive color palette, warm tones, shallow depth of field, cinematic realism. Style & Mood: Modern elegance, quiet luxury, confident, minimal, editorial casual. Photography Details: Eye-level angle, candid stance, 35mm lens, natural lighting, high detail, photorealistic. Left side: A clean, minimalist product breakdown layout on a neutral background. The individual fashion items worn by the woman are displayed separately, neatly arranged with subtle shadows. Each item includes a small, elegant price label in refined sans-serif typography: – white deep V-neck knit top — $180 – blue high-waisted tailored mini skirt — $220 – Black pointed-toe stiletto heels — $350 – Small structured red handbag — $480 – a diamond necklace with a big blue diamond — $160000 The left side feels like a luxury fashion catalog or e-commerce lookbook, with a red carpet, luxurious walls, art pieces on wall Overall Style & Mood: Quiet luxury, modern elegance, editorial fashion, high-end retail aesthetic. Lighting & Quality: Soft natural light, studio-clean clarity on product side, photorealistic, ultra-high resolution, professional fashion photography. Negative Prompt: Cluttered layout, oversized text, flashy logos, mannequins, people on left side, harsh lighting, low resolution, cartoon style."
}
JSON
IM
图像
UI & Graphic nano-banana-2

[BRAND NAME]. Act as a 3D Product Visualization Artist. PHA...

[BRAND NAME]. Act as a 3D Product Visualization Artist. PHASE 1: LOGO TO 3D OBJECT Take the [BRAND NAME] logo and transform it into a thick 3D sculptural form. Simplify to core shape, add rounded edges (8-12mm fillet), make it one solid piece with 40-60mm depth. Keep it recognizable. PHASE 2: PINK METALLIC MATERIAL - Color: Pink metallic (#C85A8E to #8B4A6F range) - Finish: Glossy brushed metal with fine grain - Highlights: Light pink (#E89BB8) - Shadows: Deep plum (#6B3854) - Roughness: 0.2 (shiny but not mirror) - NO copper, NO gold, NO silver PHASE 3: LIGHTING Soft studio lighting from top-left creating smooth gradient across the object. Light pink on highlights, deep plum in shadows. No hard shadows. PHASE 4: BACKGROUND & FLOATING - Pure white background (#FFFFFF) - Object levitating in white void - Soft blurred shadow underneath (90% transparent) - NO pedestals, NO stands, NO supports PHASE 5: CAMERA Slight 3/4 angle, looking down 10°, object centered, filling 60% of frame. TECH SPECS: - High-quality 3D render (Octane/Cycles) - 4K resolution - Full object in focus - Subtle bloom on highlights CRITICAL: - Must be PINK metallic only - Must float in pure white space - Must have thick 3D volume with smooth surfaces - Must look like luxury product 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": "[BRAND NAME]. Act as a 3D Product Visualization Artist. PHASE 1: LOGO TO 3D OBJECT Take the [BRAND NAME] logo and transform it into a thick 3D sculptural form. Simplify to core shape, add rounded edges (8-12mm fillet), make it one solid piece with 40-60mm depth. Keep it recognizable. PHASE 2: PINK METALLIC MATERIAL - Color: Pink metallic (#C85A8E to #8B4A6F range) - Finish: Glossy brushed metal with fine grain - Highlights: Light pink (#E89BB8) - Shadows: Deep plum (#6B3854) - Roughness: 0.2 (shiny but not mirror) - NO copper, NO gold, NO silver PHASE 3: LIGHTING Soft studio lighting from top-left creating smooth gradient across the object. Light pink on highlights, deep plum in shadows. No hard shadows. PHASE 4: BACKGROUND & FLOATING - Pure white background (#FFFFFF) - Object levitating in white void - Soft blurred shadow underneath (90% transparent) - NO pedestals, NO stands, NO supports PHASE 5: CAMERA Slight 3/4 angle, looking down 10°, object centered, filling 60% of frame. TECH SPECS: - High-quality 3D render (Octane/Cycles) - 4K resolution - Full object in focus - Subtle bloom on highlights CRITICAL: - Must be PINK metallic only - Must float in pure white space - Must have thick 3D volume with smooth surfaces - Must look like luxury product photography"
}
JSON
IM
图像
Photography nano-banana-2

{   "meta": {     "aspect_ratio": "9:16",     "quality": "ul...

{ "meta": { "aspect_ratio": "9:16", "quality": "ultra_photorealistic", "resolution": "8k", "camera": "iPhone front camera", "lens": "24mm", "style": "raw iPhone mirror realism, zero smoothing, heavy reflections, subtle grain, imperfect exposure" }, "scene": { "location": "luxury apartment elevator", "environment": [ "mirror walls on three sides", "brushed stainless steel panels", "glass-like reflection layering (multiple reflections of body)", "LED ceiling strip lights", "digital floor number glowing red", "slight fingerprints and smudges on mirror" ], "time": "late night", "atmosphere": "private tension in a public box, quiet, charged, intimate" }, "lighting": { "type": "mixed elevator lighting", "sources": [ "cool white overhead LEDs", "warm spill from control panel lights" ], "effect": [ "high contrast highlights on hips and thighs", "specular reflections multiplying curves in mirrors", "face partially lit, partially disappearing in reflections", "real iPhone low-light noise in shadows" ] }, "camera_perspective": { "pov": "mirror selfie", "angle": "slightly low and close", "framing": "upper thighs to head", "distance": "arm-length", "imperfections": [ "phone edge visible in reflection", "finger slightly covering lens corner", "minor motion blur from breathing" ] }, "subject": { "gender": "female", "ethnicity": "light european / mediterranean mix", "vibe": "young adult, controlled confidence, quietly provocative", "body": { "type": "fit-curvy", "waist": "tight and defined", "hips": "round and visually repeated by reflections", "thighs": "thick, softly compressed", "chest": "full and natural, secondary focus" }, "skin": { "tone": "warm fair", "texture": "real skin texture, slight sheen, no blur" }, "hair": { "color": "dark blonde", "style": "loose, slightly messy", "details": "a few strands stuck to lips and cheek" }, "face": { "expression": "neutral with soft half-smirk", "eyes": "focused on phone screen", "makeup": "minimal, glossy lips catching light" }, "outfit": { "top": { "type": "tight cropped tank top", "color": "soft grey", "fit": "hugging chest naturally, no bra", "details": "fabric stretched slightly, fine rib texture visible" }, "bottom": { "type": "ultra-short micro biker shorts", "length": "barely covering upper thighs", "material": "thin matte spandex", "fit": "painted-on tight, amplified by mirror repetition", "details": [ "fabric tension visible at hips", "slight ride-up at inner thighs", "clean, logo-free" ] }, "shoes": { "type": "clean white sneakers", "reflection": "duplicated multiple times in mirrors" } }, "pose": { "stance": "standing close to mirror", "hips": "shifted strongly to one side", "legs": "one knee bent inward", "upper_body": "shoulders relaxed, torso angled", "arms": { "phone_hand": "holding phone low", "free_hand": "resting lightly on upper thigh" }, "movement": "still moment that feels like a pause, not a pose" } }, "mood_keywords": [ "mirror multiplication", "late night tension", "quiet confidence", "timeline stopper" ] }

查看 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": "{ \"meta\": { \"aspect_ratio\": \"9:16\", \"quality\": \"ultra_photorealistic\", \"resolution\": \"8k\", \"camera\": \"iPhone front camera\", \"lens\": \"24mm\", \"style\": \"raw iPhone mirror realism, zero smoothing, heavy reflections, subtle grain, imperfect exposure\" }, \"scene\": { \"location\": \"luxury apartment elevator\", \"environment\": [ \"mirror walls on three sides\", \"brushed stainless steel panels\", \"glass-like reflection layering (multiple reflections of body)\", \"LED ceiling strip lights\", \"digital floor number glowing red\", \"slight fingerprints and smudges on mirror\" ], \"time\": \"late night\", \"atmosphere\": \"private tension in a public box, quiet, charged, intimate\" }, \"lighting\": { \"type\": \"mixed elevator lighting\", \"sources\": [ \"cool white overhead LEDs\", \"warm spill from control panel lights\" ], \"effect\": [ \"high contrast highlights on hips and thighs\", \"specular reflections multiplying curves in mirrors\", \"face partially lit, partially disappearing in reflections\", \"real iPhone low-light noise in shadows\" ] }, \"camera_perspective\": { \"pov\": \"mirror selfie\", \"angle\": \"slightly low and close\", \"framing\": \"upper thighs to head\", \"distance\": \"arm-length\", \"imperfections\": [ \"phone edge visible in reflection\", \"finger slightly covering lens corner\", \"minor motion blur from breathing\" ] }, \"subject\": { \"gender\": \"female\", \"ethnicity\": \"light european / mediterranean mix\", \"vibe\": \"young adult, controlled confidence, quietly provocative\", \"body\": { \"type\": \"fit-curvy\", \"waist\": \"tight and defined\", \"hips\": \"round and visually repeated by reflections\", \"thighs\": \"thick, softly compressed\", \"chest\": \"full and natural, secondary focus\" }, \"skin\": { \"tone\": \"warm fair\", \"texture\": \"real skin texture, slight sheen, no blur\" }, \"hair\": { \"color\": \"dark blonde\", \"style\": \"loose, slightly messy\", \"details\": \"a few strands stuck to lips and cheek\" }, \"face\": { \"expression\": \"neutral with soft half-smirk\", \"eyes\": \"focused on phone screen\", \"makeup\": \"minimal, glossy lips catching light\" }, \"outfit\": { \"top\": { \"type\": \"tight cropped tank top\", \"color\": \"soft grey\", \"fit\": \"hugging chest naturally, no bra\", \"details\": \"fabric stretched slightly, fine rib texture visible\" }, \"bottom\": { \"type\": \"ultra-short micro biker shorts\", \"length\": \"barely covering upper thighs\", \"material\": \"thin matte spandex\", \"fit\": \"painted-on tight, amplified by mirror repetition\", \"details\": [ \"fabric tension visible at hips\", \"slight ride-up at inner thighs\", \"clean, logo-free\" ] }, \"shoes\": { \"type\": \"clean white sneakers\", \"reflection\": \"duplicated multiple times in mirrors\" } }, \"pose\": { \"stance\": \"standing close to mirror\", \"hips\": \"shifted strongly to one side\", \"legs\": \"one knee bent inward\", \"upper_body\": \"shoulders relaxed, torso angled\", \"arms\": { \"phone_hand\": \"holding phone low\", \"free_hand\": \"resting lightly on upper thigh\" }, \"movement\": \"still moment that feels like a pause, not a pose\" } }, \"mood_keywords\": [ \"mirror multiplication\", \"late night tension\", \"quiet confidence\", \"timeline stopper\" ] }"
}
JSON
IM
图像
Poster Design nano-banana-2

A minimalist cinematic colored poster featuring a [Character...

A minimalist cinematic colored poster featuring a [Character Name]’s portrait from shoulders to the top of the head. The face is reconstructed using a small number of large, square-cut paper fragments arranged in a simple grid [around 4x5 or 5x6 pieces]. Each paper fragment contains a disjointed part of the face which together reconstruct the portrait. The internal paper fragments constituting the face are not perfectly flat; many have slightly curled edges and lifted corners, casting tiny, realistic shadows that give them a three-dimensional, tacked-down appearance. 4 of these squares have subtle black handwritten [text1, text2, text3, text4] directly on the skin/image. Scattered irregularly around the outer perimeter of this central grid in various randomly placed positions (not confined to the corners), several [Sticky Note Color] sticky notes are attached to the [Color] wall, containing handwritten [External Text Content, e.g., iconic quotes]. The overall layout is slightly irregular with visible gaps between the pieces showing [Color] concrete wall background. Realistic paper texture throughout, high-end studio lighting emphasizing the lifted edges, sharp focus on ink and paper 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": "A minimalist cinematic colored poster featuring a [Character Name]’s portrait from shoulders to the top of the head. The face is reconstructed using a small number of large, square-cut paper fragments arranged in a simple grid [around 4x5 or 5x6 pieces]. Each paper fragment contains a disjointed part of the face which together reconstruct the portrait. The internal paper fragments constituting the face are not perfectly flat; many have slightly curled edges and lifted corners, casting tiny, realistic shadows that give them a three-dimensional, tacked-down appearance. 4 of these squares have subtle black handwritten [text1, text2, text3, text4] directly on the skin/image. Scattered irregularly around the outer perimeter of this central grid in various randomly placed positions (not confined to the corners), several [Sticky Note Color] sticky notes are attached to the [Color] wall, containing handwritten [External Text Content, e.g., iconic quotes]. The overall layout is slightly irregular with visible gaps between the pieces showing [Color] concrete wall background. Realistic paper texture throughout, high-end studio lighting emphasizing the lifted edges, sharp focus on ink and paper grain."
}
JSON
IM
图像
Photography nano-banana-2

Preserve the face, proportions, and external features of the...

Preserve the face, proportions, and external features of the model as in the reference. A minimalist monochrome fashion editorial triptych featuring three stacked cinematic frames. The subject is a young man with short dark hair and a groomed beard. Frame 1: Emotional and introspective, looking downward with a hand near the collarbone, highlighting bone structure with Rembrandt lighting. Frame 2: A crisp profile shot with a focus on the nose, lips, and masculine jawline, gaze directed slightly upward. Frame 3: A frontal, thoughtful portrait with shoulders relaxed and direct eye contact. The composition is clean and modern, using a white T-shirt and gold necklace for visual continuity. Commercial magazine quality, high-end mirrorless camera, authentic skin pores, soft bokeh, and elegant masculinity.

查看 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": "Preserve the face, proportions, and external features of the model as in the reference. A minimalist monochrome fashion editorial triptych featuring three stacked cinematic frames. The subject is a young man with short dark hair and a groomed beard. Frame 1: Emotional and introspective, looking downward with a hand near the collarbone, highlighting bone structure with Rembrandt lighting. Frame 2: A crisp profile shot with a focus on the nose, lips, and masculine jawline, gaze directed slightly upward. Frame 3: A frontal, thoughtful portrait with shoulders relaxed and direct eye contact. The composition is clean and modern, using a white T-shirt and gold necklace for visual continuity. Commercial magazine quality, high-end mirrorless camera, authentic skin pores, soft bokeh, and elegant masculinity."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

Create an exaggerated stylized 3D caricature character portr...

Create an exaggerated stylized 3D caricature character portrait with strong intentional deformation and a clean, controlled surface finish. Use the person from the ATTACHED REFERENCE PHOTO. Preserve the subject’s identity, facial likeness, skin tone, and defining features, but reinterpret them into a bold caricatured 3D form with an elongated neck, oversized head-to-neck ratio, droopy eyelids, heavy lips, and slightly asymmetrical facial structure.Render as a human-like 3D character with smooth, studio-clean skin and intentionally designed detail, avoiding random texture or noise. Style with bold accessories such as round or oval glasses, hoop earrings, gold chains, headscarves or bandanas, and street-luxury clothing. Use neutral studio lighting with soft shadows and even illumination, no dramatic contrast, against a plain neutral grey or off-white background. The overall aesthetic should feel weird, fashion-forward, collectible, and character-driven rather than cute or realistic. Ultra high definition, premium cinematic 3D render quality, hyper-realistic hyper realism, clean materials, no freckles, no dirt, no grain, no noise, no speckling, no text, no logos, no watermarks. Aspect ratio 4:5.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create an exaggerated stylized 3D caricature character portrait with strong intentional deformation and a clean, controlled surface finish. Use the person from the ATTACHED REFERENCE PHOTO. Preserve the subject’s identity, facial likeness, skin tone, and defining features, but reinterpret them into a bold caricatured 3D form with an elongated neck, oversized head-to-neck ratio, droopy eyelids, heavy lips, and slightly asymmetrical facial structure.Render as a human-like 3D character with smooth, studio-clean skin and intentionally designed detail, avoiding random texture or noise. Style with bold accessories such as round or oval glasses, hoop earrings, gold chains, headscarves or bandanas, and street-luxury clothing. Use neutral studio lighting with soft shadows and even illumination, no dramatic contrast, against a plain neutral grey or off-white background. The overall aesthetic should feel weird, fashion-forward, collectible, and character-driven rather than cute or realistic. Ultra high definition, premium cinematic 3D render quality, hyper-realistic hyper realism, clean materials, no freckles, no dirt, no grain, no noise, no speckling, no text, no logos, no watermarks. Aspect ratio 4:5."
}
JSON
IM
图像
Photography nano-banana-2

Use this photo attached to create an ultra-realistic printed...

Use this photo attached to create an ultra-realistic printed portrait with authentic photo-print shine. A straight-on, centered head-and-shoulders portrait of a young woman, neutral confident expression, eyes looking directly at the camera. Composition is perfectly aligned and symmetrical, identical to a school ID / yearbook / magazine archive photo. She has long, smooth brown hair, center-parted, softly layered, neatly styled. Makeup is polished but natural, editorial-clean: warm brown eyeshadow, softly defined eyeliner, voluminous lashes, subtle contour, peach blush, and glossy nude lips. Skin is smooth, flawless, softly matte with natural highlights, realistic pores visible. She wears a dark navy blazer with white piping, white collared shirt, dark sweater vest, and navy striped tie, styled like a formal school uniform portrait. Small silver hoop earrings. EXACT FILTER & PRINT SHINE (VERY IMPORTANT): Apply a real photo-print filter, not digital glow: Subtle semi-gloss paper sheen Light reflective shine across cheeks, forehead, and lips, as if light is bouncing off printed ink Very mild lamination glare, thin diagonal highlights Slight softening from ink absorption, not blur Gentle warm undertone from printed ink Fine paper grain texture visible on skin and background Looks like a scanned or photographed printed photo NO glassy skin NO beauty filter glow NO cinematic bloom LIGHTING: Direct frontal harsh flash ALWAYS ON, similar to ID or studio flash: Even exposure Bright eye catchlights Minimal shadows Flat, clean lighting typical of printed portraits BACKGROUND: Flat cool blue textured studio backdrop, evenly lit, slightly muted by print ink. TEXT & LAYOUT (PRINTED): Below the portrait, centered and printed on the page: Bold serif font: HIGHSCHOOL GAL Below in smaller italic serif font, quotation style: “You put the ‘over’ in ‘lover,’ put the ‘ex’ in ‘next’ Ain’t no ‘I’ in ‘trouble,’ just the ‘U’ since we met” Text appears ink-printed, slightly imperfect edges, natural spacing, no digital sharpness. OVERALL LOOK: Real printed photograph Magazine / yearbook archive Soft shine, subtle glare Paper texture + ink warmth Not digital, not glossy poster Looks physically touchable

查看 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 this photo attached to create an ultra-realistic printed portrait with authentic photo-print shine. A straight-on, centered head-and-shoulders portrait of a young woman, neutral confident expression, eyes looking directly at the camera. Composition is perfectly aligned and symmetrical, identical to a school ID / yearbook / magazine archive photo. She has long, smooth brown hair, center-parted, softly layered, neatly styled. Makeup is polished but natural, editorial-clean: warm brown eyeshadow, softly defined eyeliner, voluminous lashes, subtle contour, peach blush, and glossy nude lips. Skin is smooth, flawless, softly matte with natural highlights, realistic pores visible. She wears a dark navy blazer with white piping, white collared shirt, dark sweater vest, and navy striped tie, styled like a formal school uniform portrait. Small silver hoop earrings. EXACT FILTER & PRINT SHINE (VERY IMPORTANT): Apply a real photo-print filter, not digital glow: Subtle semi-gloss paper sheen Light reflective shine across cheeks, forehead, and lips, as if light is bouncing off printed ink Very mild lamination glare, thin diagonal highlights Slight softening from ink absorption, not blur Gentle warm undertone from printed ink Fine paper grain texture visible on skin and background Looks like a scanned or photographed printed photo NO glassy skin NO beauty filter glow NO cinematic bloom LIGHTING: Direct frontal harsh flash ALWAYS ON, similar to ID or studio flash: Even exposure Bright eye catchlights Minimal shadows Flat, clean lighting typical of printed portraits BACKGROUND: Flat cool blue textured studio backdrop, evenly lit, slightly muted by print ink. TEXT & LAYOUT (PRINTED): Below the portrait, centered and printed on the page: Bold serif font: HIGHSCHOOL GAL Below in smaller italic serif font, quotation style: “You put the ‘over’ in ‘lover,’ put the ‘ex’ in ‘next’ Ain’t no ‘I’ in ‘trouble,’ just the ‘U’ since we met” Text appears ink-printed, slightly imperfect edges, natural spacing, no digital sharpness. OVERALL LOOK: Real printed photograph Magazine / yearbook archive Soft shine, subtle glare Paper texture + ink warmth Not digital, not glossy poster Looks physically touchable"
}
JSON
IM
图像
UI & Graphic nano-banana-2

Create a typographic art portrait using the uploaded photo o...

Create a typographic art portrait using the uploaded photo of a person as reference. Display a left-facing side profile portrait. The entire image--including the face. hair. and facial features--must be formed exclusively from repeated white calligraphic text using the words: "[PUT WHATEVER WORDS YOU WANT HERE]" The text should follow the natural contours of the face and hair, clearly shaping the person's profile silhouette. Use a deep navy blue background with high contrast The stvle should be clean vector art with sharp edges. Output in high-resolution 8K quality. Do not alter the person's facial identity. No additional colors. no textures. and no watermark. Dimension 4:5

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create a typographic art portrait using the uploaded photo of a person as reference. Display a left-facing side profile portrait. The entire image--including the face. hair. and facial features--must be formed exclusively from repeated white calligraphic text using the words: \"[PUT WHATEVER WORDS YOU WANT HERE]\" The text should follow the natural contours of the face and hair, clearly shaping the person's profile silhouette. Use a deep navy blue background with high contrast The stvle should be clean vector art with sharp edges. Output in high-resolution 8K quality. Do not alter the person's facial identity. No additional colors. no textures. and no watermark. Dimension 4:5"
}
JSON
IM
图像
Poster Design nano-banana-2

A photorealistic fashion upper body shot of [Character Descr...

A photorealistic fashion upper body shot of [Character Description and expression] wearing [Detailed Outfit Description]. The subject is framed inside a central white Instagram-style post border. Composition & Spacing: The white frame is perfectly centered in the middle of the image, leaving balanced empty [Soft Background Color matching the outfit] space above and below the frame to match the theme. Frame Details: The top, left, and right white borders are very thin. The bottom white section is thicker to include UI elements. The bottom section features a red heart icon, comment bubble, share icon, and bookmark icon. Text Details: Clearly visible text on the bottom panel: "[Number] likes", username "[Username]", caption "[Caption text]... more", and below that, "View all comments". 3D Pop-Out Effect & Hand Pose: [CHOOSE ONE OF THE FOLLOWING ACTIONS OR DESCRIBE YOUR OWN ACTION:] 1. (Grip): head and arms are physically popping out OVER the top and side thin borders. hands are realistically gripping the outer edges of the thin side borders, appearing to hold the frame firmly. 2. (Kiss): Her body is leaning forward towards the camera, creating a strong sense of depth. Her head remains securely framed WITHIN the top thin white border. Only her right hand, raised near her mouth in a blowing-kiss gesture, physically extends forward and breaks OUT of the thin side frame boundary. Her left hand realistically grips the side edge. 3. (Resting): She is looking directly at the camera with a gentle smile. Her head and shoulders physically pop out OVER the top thin white border. Crucially, her hands are realistically resting comfortably on top of the thicker bottom white UI panel, appearing to lean casually on the frame edge. 4. (Dynamic Frame): Her upper body and head remain secure WITHIN the boundaries of the white frame. However, both of her arms are fully extended outward dynamically, breaking past the thin borders up to her elbows, reaching straight toward the camera lens. She forms a distinct “L” shape with both hands, as if framing a scene. Due to perspective, her hands are positioned significantly closer to the camera than her face, showing strong spatial depth. Subject Dimensionality & Texture: The subject must look like a solid, three-dimensional figure, not flat. Emphasize the detailed texture of the [Specific Fabric Name from outfit description], the contours of the face, and realistic hair details. She should have distinct depth separating her from the flat [Background Color] background. Lighting & Shadows: Professional studio lighting creating soft, realistic drop shadows cast by the physical frame and, crucially, by the [popping-out elements, e.g., hands/head/arms] onto the solid flat [Background Color] background, enhancing the dramatic depth and illusion. High definition, commercial 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": "A photorealistic fashion upper body shot of [Character Description and expression] wearing [Detailed Outfit Description]. The subject is framed inside a central white Instagram-style post border. Composition & Spacing: The white frame is perfectly centered in the middle of the image, leaving balanced empty [Soft Background Color matching the outfit] space above and below the frame to match the theme. Frame Details: The top, left, and right white borders are very thin. The bottom white section is thicker to include UI elements. The bottom section features a red heart icon, comment bubble, share icon, and bookmark icon. Text Details: Clearly visible text on the bottom panel: \"[Number] likes\", username \"[Username]\", caption \"[Caption text]... more\", and below that, \"View all comments\". 3D Pop-Out Effect & Hand Pose: [CHOOSE ONE OF THE FOLLOWING ACTIONS OR DESCRIBE YOUR OWN ACTION:] 1. (Grip): head and arms are physically popping out OVER the top and side thin borders. hands are realistically gripping the outer edges of the thin side borders, appearing to hold the frame firmly. 2. (Kiss): Her body is leaning forward towards the camera, creating a strong sense of depth. Her head remains securely framed WITHIN the top thin white border. Only her right hand, raised near her mouth in a blowing-kiss gesture, physically extends forward and breaks OUT of the thin side frame boundary. Her left hand realistically grips the side edge. 3. (Resting): She is looking directly at the camera with a gentle smile. Her head and shoulders physically pop out OVER the top thin white border. Crucially, her hands are realistically resting comfortably on top of the thicker bottom white UI panel, appearing to lean casually on the frame edge. 4. (Dynamic Frame): Her upper body and head remain secure WITHIN the boundaries of the white frame. However, both of her arms are fully extended outward dynamically, breaking past the thin borders up to her elbows, reaching straight toward the camera lens. She forms a distinct “L” shape with both hands, as if framing a scene. Due to perspective, her hands are positioned significantly closer to the camera than her face, showing strong spatial depth. Subject Dimensionality & Texture: The subject must look like a solid, three-dimensional figure, not flat. Emphasize the detailed texture of the [Specific Fabric Name from outfit description], the contours of the face, and realistic hair details. She should have distinct depth separating her from the flat [Background Color] background. Lighting & Shadows: Professional studio lighting creating soft, realistic drop shadows cast by the physical frame and, crucially, by the [popping-out elements, e.g., hands/head/arms] onto the solid flat [Background Color] background, enhancing the dramatic depth and illusion. High definition, commercial photography."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

Using the attached image, create an illustration sheet of pr...

Using the attached image, create an illustration sheet of professional industrial design packaging for the package (PACKAGE TYPE). A centered heroic 3D rendering with realistic materials, soft studio lighting and commercial quality finishes. Surrounded by technical views: front, side, top, bottom, oblique perspective and flat position. Include sketches of the frame structure, crease lines, seam details, and size arrows in millimeters. Show materials and finishes (matte, glossy print, plastic, paper, glass, etc.) in handwritten annotations. Add color swatches, realistic product illustrations, and subtle shadows. Clean sketchbook background, realistic rendering + pencil sketch style, modern design design, ultra-detailed, portfolio ready.

查看 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": "Using the attached image, create an illustration sheet of professional industrial design packaging for the package (PACKAGE TYPE). A centered heroic 3D rendering with realistic materials, soft studio lighting and commercial quality finishes. Surrounded by technical views: front, side, top, bottom, oblique perspective and flat position. Include sketches of the frame structure, crease lines, seam details, and size arrows in millimeters. Show materials and finishes (matte, glossy print, plastic, paper, glass, etc.) in handwritten annotations. Add color swatches, realistic product illustrations, and subtle shadows. Clean sketchbook background, realistic rendering + pencil sketch style, modern design design, ultra-detailed, portfolio ready."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

A realistic, highly detailed geographic map viewed from abov...

A realistic, highly detailed geographic map viewed from above, accurately representing the region where [COUNTRY] is located. Rising from the map is a miniature 3D diorama of [CITY], precisely positioned at its real geographic location. The diorama features iconic architecture, natural landmarks, and cultural elements seamlessly emerging from the map surface. Ultra-realistic materials, fine textures, and depth of field. Soft studio lighting with subtle shadows, cinematic composition, premium macro photography style. Square 1:1 format, high detail, realistic scale.

查看 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 realistic, highly detailed geographic map viewed from above, accurately representing the region where [COUNTRY] is located. Rising from the map is a miniature 3D diorama of [CITY], precisely positioned at its real geographic location. The diorama features iconic architecture, natural landmarks, and cultural elements seamlessly emerging from the map surface. Ultra-realistic materials, fine textures, and depth of field. Soft studio lighting with subtle shadows, cinematic composition, premium macro photography style. Square 1:1 format, high detail, realistic scale."
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。