模型 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
图像
Photography nano-banana-2

{ "composition": { "framing": "centered subject with symmetr...

{ "composition": { "framing": "centered subject with symmetrical balance", "perspective": "eye-level, slight downward tilt", "crop": "vertical portrait orientation, full body seated pose", "depth_of_field": "moderate, subject sharp with softly detailed background", "leading_elements": "rusted car edges and hood frame the subject" }, "subject": { "type": "human", "pose": "sitting casually on the hood of an abandoned car, one leg bent, one leg hanging", "expression": "relaxed, confident, contemplative", "gaze": "looking slightly downward and to the side", "hair": "short, curly, tousled", "facial_hair": "light mustache and stubble", "accessories": [ "round sunglasses", "necklace" ] }, "clothing": { "outerwear": "patterned bomber jacket with muted pastel tones", "top": "graphic t-shirt with colorful print", "pants": "teal slim-fit jeans, slightly cropped", "footwear": "black sneakers with white soles and red socks" }, "environment": { "setting": "urban outdoor area", "foreground": "overgrown grass and weeds", "primary_object": "abandoned, heavily rusted vintage car", "background": "modern apartment buildings with balconies", "contrast": "decay versus modern urban living" }, "color_palette": { "dominant_colors": [ "rust red", "teal", "muted green", "beige", "brown" ], "accent_colors": [ "red", "yellow", "black" ], "color_temperature": "warm with teal-green shadows", "grading_style": "cinematic, desaturated highlights, rich shadows" }, "lighting": { "type": "natural light", "time_of_day": "late afternoon or golden hour", "direction": "side-lit with soft shadows", "contrast": "medium contrast", "highlights": "soft and warm on skin and metal surfaces" }, "technical_details": { "camera_type": "DSLR or mirrorless", "lens_estimate": "35mm–50mm prime", "aperture_estimate": "f/2.8–f/4", "iso_estimate": "ISO 200–400", "shutter_speed_estimate": "1/200–1/400", "focus": "sharp on subject, slightly softer background" }, "artistic_style": { "genre": "urban lifestyle portrait", "mood": "nostalgic, gritty, stylish", "influences": [ "street photography", "cinematic editorial fashion" ], "texture": "visible grain, emphasis on rust and fabric detail" }, "post_processing": { "grain": "moderate film grain", "sharpening": "selective sharpening on subject", "contrast_curve": "soft highlights with lifted blacks", "vignette": "subtle vignette around edges" }, "background_details": { "architecture": "concrete apartment blocks with repetitive windows", "color": "neutral beige and gray tones", "blur_level": "light background separation without heavy bokeh" }, "overall_aesthetic": { "theme": "urban decay meets modern fashion", "visual_story": "individuality and style emerging from neglected environments", "use_case" : [ "editorial fashion", "UGC influencer content", "cinematic portrait reference" ] } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"composition\": { \"framing\": \"centered subject with symmetrical balance\", \"perspective\": \"eye-level, slight downward tilt\", \"crop\": \"vertical portrait orientation, full body seated pose\", \"depth_of_field\": \"moderate, subject sharp with softly detailed background\", \"leading_elements\": \"rusted car edges and hood frame the subject\" }, \"subject\": { \"type\": \"human\", \"pose\": \"sitting casually on the hood of an abandoned car, one leg bent, one leg hanging\", \"expression\": \"relaxed, confident, contemplative\", \"gaze\": \"looking slightly downward and to the side\", \"hair\": \"short, curly, tousled\", \"facial_hair\": \"light mustache and stubble\", \"accessories\": [ \"round sunglasses\", \"necklace\" ] }, \"clothing\": { \"outerwear\": \"patterned bomber jacket with muted pastel tones\", \"top\": \"graphic t-shirt with colorful print\", \"pants\": \"teal slim-fit jeans, slightly cropped\", \"footwear\": \"black sneakers with white soles and red socks\" }, \"environment\": { \"setting\": \"urban outdoor area\", \"foreground\": \"overgrown grass and weeds\", \"primary_object\": \"abandoned, heavily rusted vintage car\", \"background\": \"modern apartment buildings with balconies\", \"contrast\": \"decay versus modern urban living\" }, \"color_palette\": { \"dominant_colors\": [ \"rust red\", \"teal\", \"muted green\", \"beige\", \"brown\" ], \"accent_colors\": [ \"red\", \"yellow\", \"black\" ], \"color_temperature\": \"warm with teal-green shadows\", \"grading_style\": \"cinematic, desaturated highlights, rich shadows\" }, \"lighting\": { \"type\": \"natural light\", \"time_of_day\": \"late afternoon or golden hour\", \"direction\": \"side-lit with soft shadows\", \"contrast\": \"medium contrast\", \"highlights\": \"soft and warm on skin and metal surfaces\" }, \"technical_details\": { \"camera_type\": \"DSLR or mirrorless\", \"lens_estimate\": \"35mm–50mm prime\", \"aperture_estimate\": \"f/2.8–f/4\", \"iso_estimate\": \"ISO 200–400\", \"shutter_speed_estimate\": \"1/200–1/400\", \"focus\": \"sharp on subject, slightly softer background\" }, \"artistic_style\": { \"genre\": \"urban lifestyle portrait\", \"mood\": \"nostalgic, gritty, stylish\", \"influences\": [ \"street photography\", \"cinematic editorial fashion\" ], \"texture\": \"visible grain, emphasis on rust and fabric detail\" }, \"post_processing\": { \"grain\": \"moderate film grain\", \"sharpening\": \"selective sharpening on subject\", \"contrast_curve\": \"soft highlights with lifted blacks\", \"vignette\": \"subtle vignette around edges\" }, \"background_details\": { \"architecture\": \"concrete apartment blocks with repetitive windows\", \"color\": \"neutral beige and gray tones\", \"blur_level\": \"light background separation without heavy bokeh\" }, \"overall_aesthetic\": { \"theme\": \"urban decay meets modern fashion\", \"visual_story\": \"individuality and style emerging from neglected environments\", \"use_case\" : [ \"editorial fashion\", \"UGC influencer content\", \"cinematic portrait reference\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "ultra-detailed fashion portrait of a beautiful...

{ "prompt": "ultra-detailed fashion portrait of a beautiful young Korean woman, exactly matching An Yujin from IVE, tall athletic elegant figure, standing confidently in a vibrant all-blue studio, wearing a tight glossy blue patent latex bodycon mini dress that hugs every curve, shiny reflective blue vinyl material, deep cobalt blue color, sleeveless square neckline, short length above mid-thigh, layered with a luxurious fluffy soft blue faux fur cropped jacket with fuzzy long fur texture, open front, long voluminous dark brown hair with perfect loose Hollywood waves cascading down to waist, charismatic deep eyes, full glossy nude-pink lips, dramatic makeup with long lashes, sharp eyeliner, flawless glowing fair skin, confident seductive expression, slight head tilt, holding a small structured hot blue designer crossbody purse with gold chain strap, bright even baby blue background, soft professional studio lighting, high fashion editorial style, hyper-realistic, ultra sharp details, 8k resolution, photorealistic skin texture, intricate fur details, reflective latex shine, azurecore aesthetic, maximalist blue glamour, shot on Canon EOS R5, 85mm lens, f/1.8, cinematic color grading", "negative_prompt": "low quality, blurry, deformed, ugly, extra limbs, bad anatomy, poorly drawn face, bad proportions, watermark, text, logo, cropped, out of frame, skinny, thin body, small chest, flat figure, realistic clothing texture instead of latex, muted colors, dark background, green skin, male", "parameters": { "aspect_ratio": "9:16", "style": "photorealistic fashion photography", "lighting": "soft studio lighting with subtle rim light", "quality_tags": "masterpiece, best quality, ultra detailed, highly detailed, sharp focus", "sampler": "DPM++ 2M Karras or Euler a", "steps": 35, "cfg_scale": 7.5, "seed": -1 }, "model_recommendations": [ "Flux.1 dev", "Realistic Vision V6.0", "Juggernaut XL", "Photon", "Midjourney v6" ] }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"prompt\": \"ultra-detailed fashion portrait of a beautiful young Korean woman, exactly matching An Yujin from IVE, tall athletic elegant figure, standing confidently in a vibrant all-blue studio, wearing a tight glossy blue patent latex bodycon mini dress that hugs every curve, shiny reflective blue vinyl material, deep cobalt blue color, sleeveless square neckline, short length above mid-thigh, layered with a luxurious fluffy soft blue faux fur cropped jacket with fuzzy long fur texture, open front, long voluminous dark brown hair with perfect loose Hollywood waves cascading down to waist, charismatic deep eyes, full glossy nude-pink lips, dramatic makeup with long lashes, sharp eyeliner, flawless glowing fair skin, confident seductive expression, slight head tilt, holding a small structured hot blue designer crossbody purse with gold chain strap, bright even baby blue background, soft professional studio lighting, high fashion editorial style, hyper-realistic, ultra sharp details, 8k resolution, photorealistic skin texture, intricate fur details, reflective latex shine, azurecore aesthetic, maximalist blue glamour, shot on Canon EOS R5, 85mm lens, f/1.8, cinematic color grading\", \"negative_prompt\": \"low quality, blurry, deformed, ugly, extra limbs, bad anatomy, poorly drawn face, bad proportions, watermark, text, logo, cropped, out of frame, skinny, thin body, small chest, flat figure, realistic clothing texture instead of latex, muted colors, dark background, green skin, male\", \"parameters\": { \"aspect_ratio\": \"9:16\", \"style\": \"photorealistic fashion photography\", \"lighting\": \"soft studio lighting with subtle rim light\", \"quality_tags\": \"masterpiece, best quality, ultra detailed, highly detailed, sharp focus\", \"sampler\": \"DPM++ 2M Karras or Euler a\", \"steps\": 35, \"cfg_scale\": 7.5, \"seed\": -1 }, \"model_recommendations\": [ \"Flux.1 dev\", \"Realistic Vision V6.0\", \"Juggernaut XL\", \"Photon\", \"Midjourney v6\" ] }"
}
JSON
IM
图像
Photography nano-banana-2

A close-up studio portrait of me, masculine features, textur...

A close-up studio portrait of me, masculine features, textured messy hair neatly styled. I wear a black tailored blazer with sharp structure and clean lines, layered over a black high-neck turtleneck, embodying a minimalist and contemporary fashion style. The man is wearing bold translucent orange acetate sunglasses, rectangular frame with slightly rounded edges, glossy finish, amber/orange tinted lenses, and fashion-forward and statement eyewear. Color concept: selective color photography - monochrome black and white image with only the sunglasses in vibrant orange color, creating strong contrast and visual focus. Expression: calm, confident, serious gaze, looking straight into the camera. Lighting: soft studio lighting from the front with subtle side shadows, even skin tones, greath detai,l facial texture, and cinematic contrast. Camera settings: - Lens: 85mm portrait lens - Aperture: f/2.0 - ISO: 100 - Shutter speed: 1/125 - High resolution, ultra-sharp focus on face Style: editorial fashion portrait, luxury menswear, realistic skin texture, non-Al look, professional studio 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 close-up studio portrait of me, masculine features, textured messy hair neatly styled. I wear a black tailored blazer with sharp structure and clean lines, layered over a black high-neck turtleneck, embodying a minimalist and contemporary fashion style. The man is wearing bold translucent orange acetate sunglasses, rectangular frame with slightly rounded edges, glossy finish, amber/orange tinted lenses, and fashion-forward and statement eyewear. Color concept: selective color photography - monochrome black and white image with only the sunglasses in vibrant orange color, creating strong contrast and visual focus. Expression: calm, confident, serious gaze, looking straight into the camera. Lighting: soft studio lighting from the front with subtle side shadows, even skin tones, greath detai,l facial texture, and cinematic contrast. Camera settings: - Lens: 85mm portrait lens - Aperture: f/2.0 - ISO: 100 - Shutter speed: 1/125 - High resolution, ultra-sharp focus on face Style: editorial fashion portrait, luxury menswear, realistic skin texture, non-Al look, professional studio photography."
}
JSON
IM
图像
Photography nano-banana-2

A young man with a slight smile see the uploaded picture as...

A young man with a slight smile see the uploaded picture as reference for the face wearing outfit: oversized white sweatshirt, lemon green oversized combat jean, styled with footwear: lemon green neutral Nike sneakers and white ribbed socks. Environment: futuristic lemon green-tone studio background. Lighting: soft cinematic glow highlighting skin and fabric textures. Style: fashion editorial x futuristic. Model seats on lemon green bench elegantly with a relaxed posture.

查看 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 young man with a slight smile see the uploaded picture as reference for the face wearing outfit: oversized white sweatshirt, lemon green oversized combat jean, styled with footwear: lemon green neutral Nike sneakers and white ribbed socks. Environment: futuristic lemon green-tone studio background. Lighting: soft cinematic glow highlighting skin and fabric textures. Style: fashion editorial x futuristic. Model seats on lemon green bench elegantly with a relaxed posture."
}
JSON
IM
图像
Photography nano-banana-2

Concept & Mood Intimate lifestyle–fashion editorial with qu...

Concept & Mood Intimate lifestyle–fashion editorial with quiet masculine warmth and thoughtful calm. Soft, cozy atmosphere reminiscent of a private winter afternoon spent reading indoors. Emotional restraint with gentle confidence — reflective, composed, subtly romantic without performance. Feels like a real, candid moment captured naturally, not posed or styled for effect. --- Subject & Anatomy Adult man with realistic proportions and natural build. Relaxed posture with subtle asymmetry — body leaning forward slightly, one arm resting on the table, head supported by the hand. Natural weight distribution through the elbow and forearm resting on the surface. No tension in the shoulders or neck, posture feels unforced and comfortable. --- Pose & Perspective Seated at a wooden table indoors. Head gently tilted, cheek resting against the palm of the hand. Other arm relaxed and folded near an open book on the table. Camera positioned at eye level, slightly off-center, creating an intimate, conversational perspective. Framing is mid-close portrait, focusing on face, hands, and upper torso. --- Face & Expression Soft, calm expression with a subtle, knowing half-smile. Eyes relaxed and warm, making gentle eye contact with the camera. Brows natural and expressive, conveying ease and quiet confidence rather than performance. Facial hair neatly groomed with realistic density and texture. --- Skin (Key Focus) Highly realistic skin texture featuring: visible pores natural tonal variation subtle under-eye texture realistic beard shadow and transitions Skin appears alive and tactile. No smoothing, no beauty retouching, no artificial glow or plastic finish. --- Hair & Grooming Medium-length dark hair with natural volume and movement. Softly tousled with slight wave, imperfect strands falling naturally across the forehead. Hair density realistic, not styled or over-defined. Beard neatly trimmed, edges soft and organic, not sharply sculpted. --- Wardrobe & Styling Cozy red knit sweater with small white heart motifs. Fabric appears thick and warm, with: visible knit texture realistic folds and stretch around elbows and shoulders natural drape and compression at contact points Sweater reads as casual, intimate, and personal — not fashion-staged. --- Environment & Props Simple indoor setting with a wooden table surface. An open book placed naturally in front of the subject, pages slightly curved and imperfect. Background softly blurred, suggesting a quiet home or café interior. No distracting elements, environment supports calm and intimacy. --- Lighting Soft natural window light only. Light falls gently across the face, creating smooth highlight-to-shadow transitions. Warm, diffused illumination with no harsh shadows. No artificial lighting, no flash, no studio feel. --- Camera & Optics Photographer mindset. Full-frame look with a 50–55mm perspective. Shallow depth of field — face and eyes in sharp focus, background softly blurred. Natural optical falloff with subtle softness, not clinical sharpness. --- Color & Film Feel Warm, restrained color palette: deep knit red natural skin tones warm wood browns soft neutral background hues Film-inspired tonality similar to Portra-style color science: soft contrast, gentle highlights, realistic skin color retention. No HDR, no heavy grading, no oversaturation. --- Style & Realism Cinematic realism with emotional subtlety. Feels like a real lifestyle or fashion editorial captured on natural light. Quiet, confident, intimate — grounded in reality. No exaggeration, no fantasy elements. --- Technical Aspect ratio: 3:4 High resolution, ultra-photorealistic detail Natural grain structure Shallow depth of field No text, no logos, no watermarks

查看 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": "Concept & Mood Intimate lifestyle–fashion editorial with quiet masculine warmth and thoughtful calm. Soft, cozy atmosphere reminiscent of a private winter afternoon spent reading indoors. Emotional restraint with gentle confidence — reflective, composed, subtly romantic without performance. Feels like a real, candid moment captured naturally, not posed or styled for effect. --- Subject & Anatomy Adult man with realistic proportions and natural build. Relaxed posture with subtle asymmetry — body leaning forward slightly, one arm resting on the table, head supported by the hand. Natural weight distribution through the elbow and forearm resting on the surface. No tension in the shoulders or neck, posture feels unforced and comfortable. --- Pose & Perspective Seated at a wooden table indoors. Head gently tilted, cheek resting against the palm of the hand. Other arm relaxed and folded near an open book on the table. Camera positioned at eye level, slightly off-center, creating an intimate, conversational perspective. Framing is mid-close portrait, focusing on face, hands, and upper torso. --- Face & Expression Soft, calm expression with a subtle, knowing half-smile. Eyes relaxed and warm, making gentle eye contact with the camera. Brows natural and expressive, conveying ease and quiet confidence rather than performance. Facial hair neatly groomed with realistic density and texture. --- Skin (Key Focus) Highly realistic skin texture featuring: visible pores natural tonal variation subtle under-eye texture realistic beard shadow and transitions Skin appears alive and tactile. No smoothing, no beauty retouching, no artificial glow or plastic finish. --- Hair & Grooming Medium-length dark hair with natural volume and movement. Softly tousled with slight wave, imperfect strands falling naturally across the forehead. Hair density realistic, not styled or over-defined. Beard neatly trimmed, edges soft and organic, not sharply sculpted. --- Wardrobe & Styling Cozy red knit sweater with small white heart motifs. Fabric appears thick and warm, with: visible knit texture realistic folds and stretch around elbows and shoulders natural drape and compression at contact points Sweater reads as casual, intimate, and personal — not fashion-staged. --- Environment & Props Simple indoor setting with a wooden table surface. An open book placed naturally in front of the subject, pages slightly curved and imperfect. Background softly blurred, suggesting a quiet home or café interior. No distracting elements, environment supports calm and intimacy. --- Lighting Soft natural window light only. Light falls gently across the face, creating smooth highlight-to-shadow transitions. Warm, diffused illumination with no harsh shadows. No artificial lighting, no flash, no studio feel. --- Camera & Optics Photographer mindset. Full-frame look with a 50–55mm perspective. Shallow depth of field — face and eyes in sharp focus, background softly blurred. Natural optical falloff with subtle softness, not clinical sharpness. --- Color & Film Feel Warm, restrained color palette: deep knit red natural skin tones warm wood browns soft neutral background hues Film-inspired tonality similar to Portra-style color science: soft contrast, gentle highlights, realistic skin color retention. No HDR, no heavy grading, no oversaturation. --- Style & Realism Cinematic realism with emotional subtlety. Feels like a real lifestyle or fashion editorial captured on natural light. Quiet, confident, intimate — grounded in reality. No exaggeration, no fantasy elements. --- Technical Aspect ratio: 3:4 High resolution, ultra-photorealistic detail Natural grain structure Shallow depth of field No text, no logos, no watermarks"
}
JSON
IM
图像
Photography nano-banana-2

{ "model": "Nano Banana Pro (Gemini)", "prompt": { "...

{ "model": "Nano Banana Pro (Gemini)", "prompt": { "layout": { "type": "3x3 照片拼贴 / 九宫格", "description": "9 张竖版人像照片以正方形网格排列", "consistency": "9 个画面中为同一人物、同一服装、同一光线条件" }, "aesthetic_style": { "theme": "Z 世代居家派对 / 少女闺房写真", "lighting_technique": "机顶直闪(硬光)", "visuals": "高对比度、清晰锐利阴影、混乱有趣的氛围、鲜艳色彩、白色背景" }, "subject_details": { "appearance": "年轻亚洲女性,肤色白皙,深色长卷发,发量蓬松", "outfit": "白色碎花吊带上衣,蓝色牛仔短裤", "makeup": "浓重粉色腮红(Igari 醉酒妆风格),红色唇妆,脸颊带亮片" }, "environment_and_props": { "background": "贴有照片的白色墙面,白色床单", "decor": [ "银色迪斯科球(多种尺寸)", "五彩金属亮片纸散落", "棕色泰迪熊", "粉色复古有线电话" ] }, "panel_pose_breakdown": { "1_top_left": "俯卧趴着,下巴放在交叉的手臂上,看向镜头,头发上有亮片", "2_top_center": "俯拍视角仰躺,眨一只眼,比 V 手势,头发向四周散开", "3_top_right": "侧坐,双膝弯曲,大笑抓拍,向空中抛洒亮片", "4_middle_left": "上半身倚靠在大型银色迪斯科球上,目光强烈直视镜头", "5_middle_center": "近景特写,双手贴在脸颊,惊讶或害羞表情,亮片粘在脸上", "6_middle_right": "躺在迪斯科球之间,一只手向上伸向天花板或镜头", "7_bottom_left": "倒置视角(头部在画面下方),俏皮表情,头发自然垂落", "8_bottom_center": "盘腿坐姿,紧紧抱着棕色泰迪熊,微微嘟嘴", "9_bottom_right": "坐直,手持粉色复古电话听筒贴在耳边,侧头像在听八卦" }, "camera_technical_values": { "focal_length": "35mm", "aperture": "f/5.6",

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"model\": \"Nano Banana Pro (Gemini)\", \"prompt\": { \"layout\": { \"type\": \"3x3 照片拼贴 / 九宫格\", \"description\": \"9 张竖版人像照片以正方形网格排列\", \"consistency\": \"9 个画面中为同一人物、同一服装、同一光线条件\" }, \"aesthetic_style\": { \"theme\": \"Z 世代居家派对 / 少女闺房写真\", \"lighting_technique\": \"机顶直闪(硬光)\", \"visuals\": \"高对比度、清晰锐利阴影、混乱有趣的氛围、鲜艳色彩、白色背景\" }, \"subject_details\": { \"appearance\": \"年轻亚洲女性,肤色白皙,深色长卷发,发量蓬松\", \"outfit\": \"白色碎花吊带上衣,蓝色牛仔短裤\", \"makeup\": \"浓重粉色腮红(Igari 醉酒妆风格),红色唇妆,脸颊带亮片\" }, \"environment_and_props\": { \"background\": \"贴有照片的白色墙面,白色床单\", \"decor\": [ \"银色迪斯科球(多种尺寸)\", \"五彩金属亮片纸散落\", \"棕色泰迪熊\", \"粉色复古有线电话\" ] }, \"panel_pose_breakdown\": { \"1_top_left\": \"俯卧趴着,下巴放在交叉的手臂上,看向镜头,头发上有亮片\", \"2_top_center\": \"俯拍视角仰躺,眨一只眼,比 V 手势,头发向四周散开\", \"3_top_right\": \"侧坐,双膝弯曲,大笑抓拍,向空中抛洒亮片\", \"4_middle_left\": \"上半身倚靠在大型银色迪斯科球上,目光强烈直视镜头\", \"5_middle_center\": \"近景特写,双手贴在脸颊,惊讶或害羞表情,亮片粘在脸上\", \"6_middle_right\": \"躺在迪斯科球之间,一只手向上伸向天花板或镜头\", \"7_bottom_left\": \"倒置视角(头部在画面下方),俏皮表情,头发自然垂落\", \"8_bottom_center\": \"盘腿坐姿,紧紧抱着棕色泰迪熊,微微嘟嘴\", \"9_bottom_right\": \"坐直,手持粉色复古电话听筒贴在耳边,侧头像在听八卦\" }, \"camera_technical_values\": { \"focal_length\": \"35mm\", \"aperture\": \"f/5.6\","
}
JSON
IM
图像
Photography nano-banana-2

Photorealistic editorial portrait of a smiling woman using t...

Photorealistic editorial portrait of a smiling woman using the exact same face from the reference image. She wears oversized black sunglasses with orange lenses and small gold earrings. Slightly leaning forward in a close wide-angle perspective, with a playful, mischievous expression and subtle smirk. Clean blue studio background with soft gradient. Bright soft lighting with gentle contrast, sharp focus, minimal high-fashion mood.

查看 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": "Photorealistic editorial portrait of a smiling woman using the exact same face from the reference image. She wears oversized black sunglasses with orange lenses and small gold earrings. Slightly leaning forward in a close wide-angle perspective, with a playful, mischievous expression and subtle smirk. Clean blue studio background with soft gradient. Bright soft lighting with gentle contrast, sharp focus, minimal high-fashion mood."
}
JSON
IM
图像
Photography nano-banana-2

A HYPER-REALISTIC, 8K, MEDIUM SHOT CAPTURED WITH A WIDE-ANGL...

A HYPER-REALISTIC, 8K, MEDIUM SHOT CAPTURED WITH A WIDE-ANGLE LENS FROM A SLIGHTLY LOW ANGLE SHOWCASING A YOUNG PERSON IN A DYNAMIC, MID-ACTION POSE ON A SKATEBOARD, RIDING DOWN AN URBAN STREET AT DUSK. THE SUBJECT, WITH UPLOADED FACE AS REFERENCE, HAS LONG, LIGHT-COLORED HAIR FLOWING DYNAMICALLY TO THEIR RIGHT, INDICATING MOTION. THEY ARE WEARING A LIGHT GREY OR OFF-WHITE HOODIE FEATURING A PROMINENT, BRIGHT YELLOW HEON OUTLINE GRAPHIC THAT SPELLS "PAVELTUTORIAL ACROSS THE CHEST. THEIR LEGS ARE CLAD IN LIGHT BROWN OR BEIGE PANTS, INTRICATELY OUTLINED WITH A VIBRANT ORANGE-RED NEON GLOW THAT ALSO EMITS SMALL, FLICKERING NEON WISPS AROUND THEM, SUGGESTING ENERGY. THEIR FEET ARE ADORNED WITH BRIGHT PINK NEON-OUTLINED SNEAKERS, WHICH MATCH THE GLOWING PINK OUTLINE OF THE SKATEBOARD DECK BENEATH THEM. AROUND THE SKATEBOARD AND THE SUBJECT'S FEET, THERE ARE WHIMSICAL, GLOWING PINK NEON HEARTS AND STARBURSTS, ADDING A SURREAL, ENERGETIC TOUCH. THE BACKGROUND IS AN URBAN STREET SCENE, RENDERED WITH A SHALLOW DEPTH OF FIELD, CREATING A BEAUTIFUL BOKEH EFFECT OF WARM, OUT-OF-FOCUS ORANGE AND YELLOW STRING LIGHTS STRUNG ACROSS BUILDINGS, SUGGESTING A FESTIVE OR LIVELY ATMOSPHERE. SILHOUETTES OF BLURRED PEDESTRIANS CAN BE SEEN IN THE DISTANCE. THE OVERALL LIGHTING IS CINEMATIC, WITH A SOFT GOLDEN HOUR GLOW FROM THE BACKGROUND CONTRASTING WITH THE VIBRANT. VOLUMETRIC NEON LIGHTING EMANATING FROM THE SUBJECT AND THEIR ACCESSORIES, CREATING HIGHLY DETAILED TEXTURES AND A CAPTIVATING VISUAL.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A HYPER-REALISTIC, 8K, MEDIUM SHOT CAPTURED WITH A WIDE-ANGLE LENS FROM A SLIGHTLY LOW ANGLE SHOWCASING A YOUNG PERSON IN A DYNAMIC, MID-ACTION POSE ON A SKATEBOARD, RIDING DOWN AN URBAN STREET AT DUSK. THE SUBJECT, WITH UPLOADED FACE AS REFERENCE, HAS LONG, LIGHT-COLORED HAIR FLOWING DYNAMICALLY TO THEIR RIGHT, INDICATING MOTION. THEY ARE WEARING A LIGHT GREY OR OFF-WHITE HOODIE FEATURING A PROMINENT, BRIGHT YELLOW HEON OUTLINE GRAPHIC THAT SPELLS \"PAVELTUTORIAL ACROSS THE CHEST. THEIR LEGS ARE CLAD IN LIGHT BROWN OR BEIGE PANTS, INTRICATELY OUTLINED WITH A VIBRANT ORANGE-RED NEON GLOW THAT ALSO EMITS SMALL, FLICKERING NEON WISPS AROUND THEM, SUGGESTING ENERGY. THEIR FEET ARE ADORNED WITH BRIGHT PINK NEON-OUTLINED SNEAKERS, WHICH MATCH THE GLOWING PINK OUTLINE OF THE SKATEBOARD DECK BENEATH THEM. AROUND THE SKATEBOARD AND THE SUBJECT'S FEET, THERE ARE WHIMSICAL, GLOWING PINK NEON HEARTS AND STARBURSTS, ADDING A SURREAL, ENERGETIC TOUCH. THE BACKGROUND IS AN URBAN STREET SCENE, RENDERED WITH A SHALLOW DEPTH OF FIELD, CREATING A BEAUTIFUL BOKEH EFFECT OF WARM, OUT-OF-FOCUS ORANGE AND YELLOW STRING LIGHTS STRUNG ACROSS BUILDINGS, SUGGESTING A FESTIVE OR LIVELY ATMOSPHERE. SILHOUETTES OF BLURRED PEDESTRIANS CAN BE SEEN IN THE DISTANCE. THE OVERALL LIGHTING IS CINEMATIC, WITH A SOFT GOLDEN HOUR GLOW FROM THE BACKGROUND CONTRASTING WITH THE VIBRANT. VOLUMETRIC NEON LIGHTING EMANATING FROM THE SUBJECT AND THEIR ACCESSORIES, CREATING HIGHLY DETAILED TEXTURES AND A CAPTIVATING VISUAL."
}
JSON
IM
图像
Photography nano-banana-2

Artistic portrait of an elegant Asian woman wearing a black...

Artistic portrait of an elegant Asian woman wearing a black silk cheongsam (qipao), standing among red camellia flowers and delicate branches, soft natural sunlight filtering through leaves creating beautiful shadow patterns across her face, short slightly messy bob haircut, natural freckles and minimal makeup, calm thoughtful expression, cinematic shallow depth of field, dreamy garden atmosphere, warm golden hour lighting, soft bokeh background, fine art photography style, ultra-realistic skin texture, high detail, 85mm lens, 8K.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Artistic portrait of an elegant Asian woman wearing a black silk cheongsam (qipao), standing among red camellia flowers and delicate branches, soft natural sunlight filtering through leaves creating beautiful shadow patterns across her face, short slightly messy bob haircut, natural freckles and minimal makeup, calm thoughtful expression, cinematic shallow depth of field, dreamy garden atmosphere, warm golden hour lighting, soft bokeh background, fine art photography style, ultra-realistic skin texture, high detail, 85mm lens, 8K."
}
JSON
IM
图像
Photography nano-banana-2

Transform this image [UPLOAD YOU'RE IMAGE] into a 64K DSLR s...

Transform this image [UPLOAD YOU'RE IMAGE] into a 64K DSLR shot resolution of A four-panel fashion collage featuring the same subject styled in a cohesive earth-tone, minimalist streetwear aesthetic, photographed in a calm, modern concrete courtyard or interior patio space. The environment is muted and serene, with light gray walls, raw cement flooring, and subtle natural decor elements that enhance the understated mood. The subject (sameface as the uploaded image) is a athletic build, androgynous-presenting young adult with stylish volume hairs and cool, introspective expression. They wear thin black rectangular glasses, silver jewelry (necklace and earrings), and have intricate black-and-gray tattoo sleeves covering the forearms and hands. Outfit & Styling:- Oversized brown T-shirt with a small minimal chest graphic or letter Extremely baggy brown cargo pants with large utility pockets and heavy drapeThick white rope belt tied loosely, hanging dramatically at the waist Chunky white sneakers with a bold sole Large off-white canvas shoulder bag worn crossbody, adding texture and contrast The color palette is warm and neutral: browns, taupe, beige, off-white, and soft gray. Poses Across the Panels:- Standing with arms crossed, relaxed but confident Sitting on a concrete step, leaning forward in a contemplative pose Seated casually with one leg bent, holding glasses or touching the faceA laid-back pose emphasizing the oversized silhouette and layered textures Background & Props:- Minimalist decor including a woven straw mat, a wooden box, and a potted branch arrangement in a square planter Small framed wall art arranged in a clean grid Soft natural daylight with diffused shadows, no harsh highlights Mood & Aesthetic:- The overall vibe is quiet luxury meets Japanese-inspired minimal streetwear, blending modern fashion, utilitarian design, and calmeditorial styling. The image feels like a fashion lookbook or lifestyle editorial, with emphasis on silhouette, texture, and effortless cool. Style Keywords:- Minimalist streetwear, neutral tones, oversized fashion, utilitarian cargo pants, androgynous style, editorial fashion collage, modern zen aesthetic, Japanese-inspired fashion, muted color palette.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Transform this image [UPLOAD YOU'RE IMAGE] into a 64K DSLR shot resolution of A four-panel fashion collage featuring the same subject styled in a cohesive earth-tone, minimalist streetwear aesthetic, photographed in a calm, modern concrete courtyard or interior patio space. The environment is muted and serene, with light gray walls, raw cement flooring, and subtle natural decor elements that enhance the understated mood. The subject (sameface as the uploaded image) is a athletic build, androgynous-presenting young adult with stylish volume hairs and cool, introspective expression. They wear thin black rectangular glasses, silver jewelry (necklace and earrings), and have intricate black-and-gray tattoo sleeves covering the forearms and hands. Outfit & Styling:- Oversized brown T-shirt with a small minimal chest graphic or letter Extremely baggy brown cargo pants with large utility pockets and heavy drapeThick white rope belt tied loosely, hanging dramatically at the waist Chunky white sneakers with a bold sole Large off-white canvas shoulder bag worn crossbody, adding texture and contrast The color palette is warm and neutral: browns, taupe, beige, off-white, and soft gray. Poses Across the Panels:- Standing with arms crossed, relaxed but confident Sitting on a concrete step, leaning forward in a contemplative pose Seated casually with one leg bent, holding glasses or touching the faceA laid-back pose emphasizing the oversized silhouette and layered textures Background & Props:- Minimalist decor including a woven straw mat, a wooden box, and a potted branch arrangement in a square planter Small framed wall art arranged in a clean grid Soft natural daylight with diffused shadows, no harsh highlights Mood & Aesthetic:- The overall vibe is quiet luxury meets Japanese-inspired minimal streetwear, blending modern fashion, utilitarian design, and calmeditorial styling. The image feels like a fashion lookbook or lifestyle editorial, with emphasis on silhouette, texture, and effortless cool. Style Keywords:- Minimalist streetwear, neutral tones, oversized fashion, utilitarian cargo pants, androgynous style, editorial fashion collage, modern zen aesthetic, Japanese-inspired fashion, muted color palette."
}
JSON
IM
图像
Photography nano-banana-2

Hyper-realistic surreal photography of a woman sitting insid...

Hyper-realistic surreal photography of a woman sitting inside a massive, rough concrete pipe, featuring the uploaded face as reference. She wears a dark polo shirt, ripped jeans, and white sneakers, with a calm and thoughtful expression. She is gently holding a glowing, miniature full moon in her cupped hands. The surreal moon casts a warm, magical rim light across her face and body. The camera is positioned from inside the pipe, creating a natural circular frame around her. In the background, a starry night sky is visible along with a deeply blurred cityscape filled with warm orange bokeh lights. Shot with a 50mm lens, shallow depth of field, high contrast, blending cool night tones with the ethereal glow of the moon in her hands.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Hyper-realistic surreal photography of a woman sitting inside a massive, rough concrete pipe, featuring the uploaded face as reference. She wears a dark polo shirt, ripped jeans, and white sneakers, with a calm and thoughtful expression. She is gently holding a glowing, miniature full moon in her cupped hands. The surreal moon casts a warm, magical rim light across her face and body. The camera is positioned from inside the pipe, creating a natural circular frame around her. In the background, a starry night sky is visible along with a deeply blurred cityscape filled with warm orange bokeh lights. Shot with a 50mm lens, shallow depth of field, high contrast, blending cool night tones with the ethereal glow of the moon in her hands."
}
JSON
IM
图像
Photography nano-banana-2

High-contrast black-and-white studio photo of a woman seated...

High-contrast black-and-white studio photo of a woman seated on the floor wearing a black sweater, black trousers, and black leather ankle boots. Legs are bent and open toward the camera, with one boot sole prominently facing the lens. Upper body slightly reclined, calm expression. Clean white background, dramatic low-angle composition. Don’t change the face. (Use the attached image)

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "High-contrast black-and-white studio photo of a woman seated on the floor wearing a black sweater, black trousers, and black leather ankle boots. Legs are bent and open toward the camera, with one boot sole prominently facing the lens. Upper body slightly reclined, calm expression. Clean white background, dramatic low-angle composition. Don’t change the face. (Use the attached image)"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic vintage fashion portrait of a graceful young wom...

A cinematic vintage fashion portrait of a graceful young woman in a 1950s aesthetic, standing beside a classic convertible car. She is captured from a three-quarter back angle, looking over her shoulder with a soft, confident gaze. She wears an elegant ivory strapless dress with a fitted bodice and a flowing skirt adorned with hand-painted red rose floral patterns near the hem. A thin red belt cinches her waist. Her hair is styled in a voluminous retro updo, auburn/red tones, topped with a straw boater hat featuring a red ribbon. She wears white satin gloves and delicate pearl earrings. Makeup is refined and timeless: winged eyeliner, soft blush, and deep red lipstick. The scene is bathed in warm golden-hour sunlight with creamy bokeh in the background, outdoor garden setting. Ultra-detailed, photorealistic, shallow depth of field, cinematic lighting, luxury fashion editorial style, 8K quality.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A cinematic vintage fashion portrait of a graceful young woman in a 1950s aesthetic, standing beside a classic convertible car. She is captured from a three-quarter back angle, looking over her shoulder with a soft, confident gaze. She wears an elegant ivory strapless dress with a fitted bodice and a flowing skirt adorned with hand-painted red rose floral patterns near the hem. A thin red belt cinches her waist. Her hair is styled in a voluminous retro updo, auburn/red tones, topped with a straw boater hat featuring a red ribbon. She wears white satin gloves and delicate pearl earrings. Makeup is refined and timeless: winged eyeliner, soft blush, and deep red lipstick. The scene is bathed in warm golden-hour sunlight with creamy bokeh in the background, outdoor garden setting. Ultra-detailed, photorealistic, shallow depth of field, cinematic lighting, luxury fashion editorial style, 8K quality."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic fashion portrait of a stylish woma...

Ultra-realistic cinematic fashion portrait of a stylish woman wearing oversized black cat-eye sunglasses, soft warm golden sunlight, hazy foreground blur creating dreamy depth, shallow depth of field, glowing skin, natural makeup, glossy nude lips, loose messy updo hairstyle with soft strands falling, black high-neck outfit, luxury editorial vibe, shot through translucent fabric for soft diffusion, 85mm lens, f/1.8, creamy bokeh, golden hour lighting, warm beige color grading, high detail, photorealistic, Vogue style photography, soft focus edges, elegant and minimal background

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic cinematic fashion portrait of a stylish woman wearing oversized black cat-eye sunglasses, soft warm golden sunlight, hazy foreground blur creating dreamy depth, shallow depth of field, glowing skin, natural makeup, glossy nude lips, loose messy updo hairstyle with soft strands falling, black high-neck outfit, luxury editorial vibe, shot through translucent fabric for soft diffusion, 85mm lens, f/1.8, creamy bokeh, golden hour lighting, warm beige color grading, high detail, photorealistic, Vogue style photography, soft focus edges, elegant and minimal background"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic fashion studio scene of a woman hand-sewing a mi...

A cinematic fashion studio scene of a woman hand-sewing a miniature dress worn by a tiny version of herself seated on a pin cushion. She uses a fine needle and silk thread, concentrating intensely as fabric tension is adjusted. The miniature garment features perfectly scaled seams, buttons, and lifelike fabric weight in it . Workbench filled with miniature scissors, chalk, rulers, pattern papers, and thread reels. Warm cinematic lighting reveals textile grain, skin pores, and metal reflections. Macro depth of field, fashion editorial composition, ultra-photoreal realism, 8K quality. Style: cinematic miniature tailoring realism, no cartoon, no CGI

查看 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 cinematic fashion studio scene of a woman hand-sewing a miniature dress worn by a tiny version of herself seated on a pin cushion. She uses a fine needle and silk thread, concentrating intensely as fabric tension is adjusted. The miniature garment features perfectly scaled seams, buttons, and lifelike fabric weight in it . Workbench filled with miniature scissors, chalk, rulers, pattern papers, and thread reels. Warm cinematic lighting reveals textile grain, skin pores, and metal reflections. Macro depth of field, fashion editorial composition, ultra-photoreal realism, 8K quality. Style: cinematic miniature tailoring realism, no cartoon, no CGI"
}
JSON
IM
图像
Photography nano-banana-2

{ "Objective": "Create a stylish, cinematic birthday-theme...

{ "Objective": "Create a stylish, cinematic birthday-themed studio portrait with a modern celebratory poster aesthetic", "PersonaDetails": { "Subject": { "Type": "Young man", "Pose": "Sitting casually on the floor", "Expression": "Confident, friendly smile", "Gaze": "Looking directly at the camera", "Accessories": [ "Glasses", "Wristwatch" ] } }, "Wardrobe": { "Top": "Dark grey sweater", "Bottom": "Black trousers", "Footwear": "Black leather boots", "Style": "Clean, modern, understated" }, "SceneDescription": { "Environment": "Studio setting", "Background": { "Color": "Deep purple", "Details": "Subtle glowing particles floating in the background" } }, "GraphicElements": { "Typography": { "Text": "Happy Birthday", "Style": "Neon typography", "Color": "Soft purple and white glow", "Placement": "Top corner of the composition" }, "FloatingFrames": { "Description": "Multiple framed portrait snapshots of the same person", "Variations": [ "Different poses and moods", "Film negative–style frames", "Neon-outlined light frames" ], "Arrangement": "Floating around the subject with balanced spacing" } }, "Composition": { "Framing": "Medium full-body portrait", "Layout": "Centered subject with surrounding floating elements", "Balance": "Clean, poster-style composition", "DepthOfField": "Shallow depth of field with layered depth" }, "LightingAndColor": { "LightingStyle": "Cinematic studio lighting", "RimLight": "Soft purple rim light for edge separation", "Contrast": "High contrast with controlled highlights", "ColorPalette": [ "Deep purple", "Black", "Soft white highlights" ] }, "ArtDirection": { "Style": "Modern celebratory poster", "Aesthetic": "Stylish, cinematic, social-media–ready", "DetailLevel": "Ultra-detailed textures and crisp edges", "RealismLevel": "Photorealistic with graphic design overlays" }, "PhotographyStyle": { "Genre": "Professional studio portrait photography", "Finish": "High-end, polished, digital poster look", "Resolution": "Ultra-high resolution, sharp focus" }, "Mood": { "Tone": "Celebratory, confident, modern", "Energy": "Positive, stylish, personal" }, "NegativePrompt": [ "messy composition", "low resolution", "flat lighting", "oversaturated neon", "cartoon style", "blurry text", "cluttered background" ], "ResponseFormat": { "Type": "Single composite image", "Orientation": "Portrait", "AspectRatio": "4:5", "UseCase": [ "Social media post", "Birthday poster", "Digital celebration graphic" ] } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"Objective\": \"Create a stylish, cinematic birthday-themed studio portrait with a modern celebratory poster aesthetic\", \"PersonaDetails\": { \"Subject\": { \"Type\": \"Young man\", \"Pose\": \"Sitting casually on the floor\", \"Expression\": \"Confident, friendly smile\", \"Gaze\": \"Looking directly at the camera\", \"Accessories\": [ \"Glasses\", \"Wristwatch\" ] } }, \"Wardrobe\": { \"Top\": \"Dark grey sweater\", \"Bottom\": \"Black trousers\", \"Footwear\": \"Black leather boots\", \"Style\": \"Clean, modern, understated\" }, \"SceneDescription\": { \"Environment\": \"Studio setting\", \"Background\": { \"Color\": \"Deep purple\", \"Details\": \"Subtle glowing particles floating in the background\" } }, \"GraphicElements\": { \"Typography\": { \"Text\": \"Happy Birthday\", \"Style\": \"Neon typography\", \"Color\": \"Soft purple and white glow\", \"Placement\": \"Top corner of the composition\" }, \"FloatingFrames\": { \"Description\": \"Multiple framed portrait snapshots of the same person\", \"Variations\": [ \"Different poses and moods\", \"Film negative–style frames\", \"Neon-outlined light frames\" ], \"Arrangement\": \"Floating around the subject with balanced spacing\" } }, \"Composition\": { \"Framing\": \"Medium full-body portrait\", \"Layout\": \"Centered subject with surrounding floating elements\", \"Balance\": \"Clean, poster-style composition\", \"DepthOfField\": \"Shallow depth of field with layered depth\" }, \"LightingAndColor\": { \"LightingStyle\": \"Cinematic studio lighting\", \"RimLight\": \"Soft purple rim light for edge separation\", \"Contrast\": \"High contrast with controlled highlights\", \"ColorPalette\": [ \"Deep purple\", \"Black\", \"Soft white highlights\" ] }, \"ArtDirection\": { \"Style\": \"Modern celebratory poster\", \"Aesthetic\": \"Stylish, cinematic, social-media–ready\", \"DetailLevel\": \"Ultra-detailed textures and crisp edges\", \"RealismLevel\": \"Photorealistic with graphic design overlays\" }, \"PhotographyStyle\": { \"Genre\": \"Professional studio portrait photography\", \"Finish\": \"High-end, polished, digital poster look\", \"Resolution\": \"Ultra-high resolution, sharp focus\" }, \"Mood\": { \"Tone\": \"Celebratory, confident, modern\", \"Energy\": \"Positive, stylish, personal\" }, \"NegativePrompt\": [ \"messy composition\", \"low resolution\", \"flat lighting\", \"oversaturated neon\", \"cartoon style\", \"blurry text\", \"cluttered background\" ], \"ResponseFormat\": { \"Type\": \"Single composite image\", \"Orientation\": \"Portrait\", \"AspectRatio\": \"4:5\", \"UseCase\": [ \"Social media post\", \"Birthday poster\", \"Digital celebration graphic\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "image_generation": { "subject": { "descriptio...

{ "image_generation": { "subject": { "description": "young woman sitting at the edge of a skyscraper rooftop with a dramatic city view below", "pose": "sitting with legs extended toward the camera, both hands raised making peace signs", "expression": "playful confident smile", "gaze": "looking directly at the camera" }, "appearance": { "hair": { "color": "dark brown", "style": "covered with a light beige headscarf flowing in the wind" }, "skin": { "tone": "fair natural skin tone", "texture": "smooth realistic skin" }, "makeup": "light natural makeup" }, "outfit": { "outerwear": "long patterned coat", "inner_layer": "black top with denim jacket", "bottom": "light blue jeans", "footwear": "colorful sneakers with orange soles" }, "environment": { "setting": "urban city high-rise rooftop", "background_elements": [ "busy city street far below", "cars and taxis on the road", "tall buildings on both sides", "glass rooftop surface" ], "time_of_day": "daytime" }, "lighting": { "type": "natural daylight", "direction": "soft overhead light", "effect": "bright urban lighting with balanced shadows" }, "camera": { "angle": "extreme high angle / top-down perspective", "framing": "full body with exaggerated perspective", "lens": "wide-angle lens", "depth_of_field": "deep focus showing detailed city below" }, "aesthetic": { "style": "urban lifestyle photography", "vibe": "adventurous bold city energy", "color_palette": "vibrant city tones with pops of orange and blue" }, "effects": { "grading": "cinematic vibrant color grading", "sharpness": "high detail with slight depth exaggeration" }, "quality": { "resolution": "high resolution", "render": "photorealistic", "details": "sharp textures with strong perspective depth" } } }

查看 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\": { \"subject\": { \"description\": \"young woman sitting at the edge of a skyscraper rooftop with a dramatic city view below\", \"pose\": \"sitting with legs extended toward the camera, both hands raised making peace signs\", \"expression\": \"playful confident smile\", \"gaze\": \"looking directly at the camera\" }, \"appearance\": { \"hair\": { \"color\": \"dark brown\", \"style\": \"covered with a light beige headscarf flowing in the wind\" }, \"skin\": { \"tone\": \"fair natural skin tone\", \"texture\": \"smooth realistic skin\" }, \"makeup\": \"light natural makeup\" }, \"outfit\": { \"outerwear\": \"long patterned coat\", \"inner_layer\": \"black top with denim jacket\", \"bottom\": \"light blue jeans\", \"footwear\": \"colorful sneakers with orange soles\" }, \"environment\": { \"setting\": \"urban city high-rise rooftop\", \"background_elements\": [ \"busy city street far below\", \"cars and taxis on the road\", \"tall buildings on both sides\", \"glass rooftop surface\" ], \"time_of_day\": \"daytime\" }, \"lighting\": { \"type\": \"natural daylight\", \"direction\": \"soft overhead light\", \"effect\": \"bright urban lighting with balanced shadows\" }, \"camera\": { \"angle\": \"extreme high angle / top-down perspective\", \"framing\": \"full body with exaggerated perspective\", \"lens\": \"wide-angle lens\", \"depth_of_field\": \"deep focus showing detailed city below\" }, \"aesthetic\": { \"style\": \"urban lifestyle photography\", \"vibe\": \"adventurous bold city energy\", \"color_palette\": \"vibrant city tones with pops of orange and blue\" }, \"effects\": { \"grading\": \"cinematic vibrant color grading\", \"sharpness\": \"high detail with slight depth exaggeration\" }, \"quality\": { \"resolution\": \"high resolution\", \"render\": \"photorealistic\", \"details\": \"sharp textures with strong perspective depth\" } } }"
}
JSON
IM
图像
Photography nano-banana-2

Create a melancholic and cinematic portrait photography. A y...

Create a melancholic and cinematic portrait photography. A young woman with clear, fair skin and light makeup. Warm, natural lip color. Deep brown hair with a fluffy texture. A calm and confident expression. Wearing a wine-red top to showcase elegance. A dark, minimalist background fading to black. Soft, diffused front lighting, gentle shadows, subtle film grain, organic color grading, shallow depth of field, and high-end editing texture. Use the facial features of the reference subject without any alterations.

查看 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 melancholic and cinematic portrait photography. A young woman with clear, fair skin and light makeup. Warm, natural lip color. Deep brown hair with a fluffy texture. A calm and confident expression. Wearing a wine-red top to showcase elegance. A dark, minimalist background fading to black. Soft, diffused front lighting, gentle shadows, subtle film grain, organic color grading, shallow depth of field, and high-end editing texture. Use the facial features of the reference subject without any alterations."
}
JSON
IM
图像
Photography nano-banana-2

Cinematic portrait of a stylish man standing on a busy subwa...

Cinematic portrait of a stylish man standing on a busy subway platform, wearing a dark tailored suit and black turtleneck with round glasses, serious confident expression, commuters rushing past creating motion blur around him, subway train beside the platform with metallic reflections, urban underground atmosphere, dramatic fluorescent subway lighting, shallow depth of field, subject sharply in focus while the crowd is blurred, modern thriller movie scene aesthetic, ultra-realistic photography, 85mm lens, high detail, 8K

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Cinematic portrait of a stylish man standing on a busy subway platform, wearing a dark tailored suit and black turtleneck with round glasses, serious confident expression, commuters rushing past creating motion blur around him, subway train beside the platform with metallic reflections, urban underground atmosphere, dramatic fluorescent subway lighting, shallow depth of field, subject sharply in focus while the crowd is blurred, modern thriller movie scene aesthetic, ultra-realistic photography, 85mm lens, high detail, 8K"
}
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 woman with medium-length dark hair, natural makeup, and elegant features. Frame 1: Emotional and introspective, looking downward with a hand gently near the collarbone, highlighting cheekbones and bone structure with soft Rembrandt lighting. Frame 2: A crisp profile shot emphasizing the nose, lips, and graceful jawline, gaze directed slightly upward for a poised, confident look. Frame 3: A frontal, thoughtful portrait with relaxed shoulders and direct eye contact, conveying quiet strength and elegance. The composition is clean and modern, using a fitted white top and delicate gold jewelry for visual continuity. Commercial magazine quality, shot on a high-end mirrorless camera, with authentic skin texture, soft bokeh, and cinematic sophistication. Feminine elegance and contemporary fashion sensibility.

查看 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 woman with medium-length dark hair, natural makeup, and elegant features. Frame 1: Emotional and introspective, looking downward with a hand gently near the collarbone, highlighting cheekbones and bone structure with soft Rembrandt lighting. Frame 2: A crisp profile shot emphasizing the nose, lips, and graceful jawline, gaze directed slightly upward for a poised, confident look. Frame 3: A frontal, thoughtful portrait with relaxed shoulders and direct eye contact, conveying quiet strength and elegance. The composition is clean and modern, using a fitted white top and delicate gold jewelry for visual continuity. Commercial magazine quality, shot on a high-end mirrorless camera, with authentic skin texture, soft bokeh, and cinematic sophistication. Feminine elegance and contemporary fashion sensibility."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic portrait of a woman (from uploaded image), m...

Ultra-realistic portrait of a woman (from uploaded image), messy hair slightly windswept, wearing a worn leather jacket. Bright white car light sweeping across the face from one side to the other, freezing a moment of illumination while the rest fades into shadow. Night street environment, cinematic motion feel.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic portrait of a woman (from uploaded image), messy hair slightly windswept, wearing a worn leather jacket. Bright white car light sweeping across the face from one side to the other, freezing a moment of illumination while the rest fades into shadow. Night street environment, cinematic motion feel."
}
JSON
IM
图像
Photography nano-banana-2

A cinematic ultra-realistic portrait of a man standing face-...

A cinematic ultra-realistic portrait of a man standing face-to-face with a majestic white lion in a snowy forest. The man is wearing a luxurious white fur coat, gently holding the lion’s face with one hand, conveying trust, power, and calm dominance. Soft snowfall surrounds them, with frosted pine trees blurred in the background. Dramatic natural lighting, shallow depth of field, sharp focus on facial details and fur texture. Cold winter color grading, soft whites and muted grays. Hyper-detailed fur, realistic skin texture, emotional eye contact. Shot on a high-end DSLR, 85mm lens, f/1.8, cinematic composition, photorealistic, 8K quality.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A cinematic ultra-realistic portrait of a man standing face-to-face with a majestic white lion in a snowy forest. The man is wearing a luxurious white fur coat, gently holding the lion’s face with one hand, conveying trust, power, and calm dominance. Soft snowfall surrounds them, with frosted pine trees blurred in the background. Dramatic natural lighting, shallow depth of field, sharp focus on facial details and fur texture. Cold winter color grading, soft whites and muted grays. Hyper-detailed fur, realistic skin texture, emotional eye contact. Shot on a high-end DSLR, 85mm lens, f/1.8, cinematic composition, photorealistic, 8K quality."
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "Using the uploaded reference image, generate...

{ "prompt": "Using the uploaded reference image, generate a highly realistic full-body portrait of the SAME person with 100% identical facial structure, skin tone, facial proportions, and overall identity. Do NOT alter the face in any way.\n\nA proud South Indian woman celebrating the Thaipongal festival, standing gracefully in a traditional rural Tamil village courtyard at sunrise. She is wearing an elegant traditional silk saree (Kanjivaram-style) in rich festive colors with a gold zari border, draped authentically. A matching blouse complements the saree. Her hair is neatly styled in a traditional manner, adorned with fresh jasmine flowers (mallipoo). A subtle sandalwood or kumkum tilak is visible on her forehead. She holds a long brown leafy sugarcane stalk gently in one hand.\n\nIn the foreground, a decorated clay Pongal pot is boiling over on a wood-fired brick stove, with rice frothing out, symbolizing prosperity. Beside the stove are tied brown sugarcane stalks, fresh turmeric plants, bananas, and intricate colorful kolam (rangoli) designs drawn on the ground.\n\nThe background features a rustic mud house with a thatched roof, decorated with mango-leaf torans, marigold flower garlands, and hanging clay oil lamps. Warm golden sunrise light fills the scene, with soft smoke rising from firewood, creating a joyful and auspicious festive atmosphere.\n\nUltra-realistic cinematic lighting, shallow depth of field, natural South Indian skin texture, authentic Tamil rural aesthetic, 8K ultra-detailed quality, vertical composition, cultural accuracy, festive mood.", "style": "cinematic realism, South Indian traditional portrait", "lighting": "warm golden sunrise light, soft cinematic glow", "environment": "traditional Tamil rural village courtyard", "camera": "professional portrait photography, shallow depth of field", "quality": "ultra-realistic, 8K, highly detailed", "composition": "full-body, vertical frame", "constraints": "face must remain 100% identical to the uploaded reference image with absolutely no facial modification" }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"prompt\": \"Using the uploaded reference image, generate a highly realistic full-body portrait of the SAME person with 100% identical facial structure, skin tone, facial proportions, and overall identity. Do NOT alter the face in any way.\\n\\nA proud South Indian woman celebrating the Thaipongal festival, standing gracefully in a traditional rural Tamil village courtyard at sunrise. She is wearing an elegant traditional silk saree (Kanjivaram-style) in rich festive colors with a gold zari border, draped authentically. A matching blouse complements the saree. Her hair is neatly styled in a traditional manner, adorned with fresh jasmine flowers (mallipoo). A subtle sandalwood or kumkum tilak is visible on her forehead. She holds a long brown leafy sugarcane stalk gently in one hand.\\n\\nIn the foreground, a decorated clay Pongal pot is boiling over on a wood-fired brick stove, with rice frothing out, symbolizing prosperity. Beside the stove are tied brown sugarcane stalks, fresh turmeric plants, bananas, and intricate colorful kolam (rangoli) designs drawn on the ground.\\n\\nThe background features a rustic mud house with a thatched roof, decorated with mango-leaf torans, marigold flower garlands, and hanging clay oil lamps. Warm golden sunrise light fills the scene, with soft smoke rising from firewood, creating a joyful and auspicious festive atmosphere.\\n\\nUltra-realistic cinematic lighting, shallow depth of field, natural South Indian skin texture, authentic Tamil rural aesthetic, 8K ultra-detailed quality, vertical composition, cultural accuracy, festive mood.\", \"style\": \"cinematic realism, South Indian traditional portrait\", \"lighting\": \"warm golden sunrise light, soft cinematic glow\", \"environment\": \"traditional Tamil rural village courtyard\", \"camera\": \"professional portrait photography, shallow depth of field\", \"quality\": \"ultra-realistic, 8K, highly detailed\", \"composition\": \"full-body, vertical frame\", \"constraints\": \"face must remain 100% identical to the uploaded reference image with absolutely no facial modification\" }"
}
JSON
IM
图像
Photography nano-banana-2

Cinematic ultra-realistic close-up of a man taking a billiar...

Cinematic ultra-realistic close-up of a man taking a billiards shot, captured in a tense, mid-focus moment as he leans low toward the cue ball. His eyes are locked sharply on the aim, expression steady and confident, while his supporting hand rests firmly on the green felt, guiding the cue with precision. He wears a crisp white shirt with rolled sleeves and slightly open buttons, giving a relaxed yet intensely focused vibe. His hair is neatly tied back, and his clear-framed glasses catch warm reflections from overhead lights. The background is softly blurred, filled with atmospheric golden highlights, adding depth, drama, and a competitive mood to the scene. use face reference exactly

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Cinematic ultra-realistic close-up of a man taking a billiards shot, captured in a tense, mid-focus moment as he leans low toward the cue ball. His eyes are locked sharply on the aim, expression steady and confident, while his supporting hand rests firmly on the green felt, guiding the cue with precision. He wears a crisp white shirt with rolled sleeves and slightly open buttons, giving a relaxed yet intensely focused vibe. His hair is neatly tied back, and his clear-framed glasses catch warm reflections from overhead lights. The background is softly blurred, filled with atmospheric golden highlights, adding depth, drama, and a competitive mood to the scene. use face reference exactly"
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。