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

A cinematic golden hour portrait of a stylish man leaning ag...

A cinematic golden hour portrait of a stylish man leaning against a textured stone wall, wearing dark sunglasses, a beige suede jacket with large front pockets, and a white crew-neck shirt underneath, warm sunlight casting sharp shadows across the wall, soft natural beard, well-groomed dark hair styled back, confident relaxed pose with one hand raised near his face, warm earthy color palette, strong side lighting, high contrast highlights and shadows, shallow depth of field, ultra-realistic fashion photography, editorial street style aesthetic, 85mm lens, f/2.0, crisp detail, natural skin tones, 4K resolution.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A cinematic golden hour portrait of a stylish man leaning against a textured stone wall, wearing dark sunglasses, a beige suede jacket with large front pockets, and a white crew-neck shirt underneath, warm sunlight casting sharp shadows across the wall, soft natural beard, well-groomed dark hair styled back, confident relaxed pose with one hand raised near his face, warm earthy color palette, strong side lighting, high contrast highlights and shadows, shallow depth of field, ultra-realistic fashion photography, editorial street style aesthetic, 85mm lens, f/2.0, crisp detail, natural skin tones, 4K resolution."
}
JSON
IM
图像
Photography nano-banana-2

{ "composition": { "framing": "mid-length portrait from uppe...

{ "composition": { "framing": "mid-length portrait from upper thighs to head", "orientation": "vertical", "camera_angle": "eye-level", "subject_position": "left third of the frame", "balance": "subject balanced against expansive seascape on the right", "depth": "moderate depth with clear foreground subject and distant cityscape background" }, "subject": { "gender_presentation": "male-presenting", "age_range": "young adult", "pose": "relaxed standing posture, torso slightly angled, head turned to the left", "expression": "neutral to contemplative", "gaze_direction": "looking on camera", "hair": { "color": "dark brown to black", "style": "thick, voluminous, tousled, slightly wavy" }, "skin_tone": "light to medium", "facial_features": "defined jawline, straight nose, full lips, clean-shaven" }, "clothing_and_accessories": { "top": { "type": "long-sleeve button-up shirt", "color": "black", "fit": "slim to regular fit", "details": "top buttons undone, lightweight fabric with subtle drape" }, "bottom": { "type": "trousers", "color": "dark navy or black", "fit": "slim fit" }, "accessories": [ { "item": "sunglasses", "color": "black", "held_in": "right hand" }, { "item": "wristwatch", "material": "metal", "worn_on": "left wrist" }, { "item": "bracelet", "color": "red", "worn_on": "right wrist" } ] }, "environment": { "setting": "outdoor, on a boat or waterfront deck", "foreground": "white deck surface", "background": { "elements": [ "open sea with visible water texture", "distant coastal cityscape", "cloud-filled sky" ], "horizon_line": "visible and level" } }, "lighting": { "type": "natural daylight", "quality": "soft and diffused", "direction": "overhead with slight frontal illumination", "shadows": "minimal, soft-edged" }, "color_palette": { "dominant_colors": [ "deep blue", "cyan", "white", "black" ], "contrast": "high contrast between dark clothing and bright environment", "saturation": "moderate, natural tones" }, "technical_characteristics": { "focus": "sharp focus on subject", "depth_of_field": "moderate, background slightly softened but recognizable", "image_clarity": "high", "noise": "minimal", "lens_effect": "no visible distortion, likely standard focal length" }, "artistic_style": { "aesthetic": "clean, modern lifestyle photography", "mood": "calm, confident, aspirational", "visual_theme": "luxury travel or leisure" }, "typography": { "text_present": false } }

查看 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\": \"mid-length portrait from upper thighs to head\", \"orientation\": \"vertical\", \"camera_angle\": \"eye-level\", \"subject_position\": \"left third of the frame\", \"balance\": \"subject balanced against expansive seascape on the right\", \"depth\": \"moderate depth with clear foreground subject and distant cityscape background\" }, \"subject\": { \"gender_presentation\": \"male-presenting\", \"age_range\": \"young adult\", \"pose\": \"relaxed standing posture, torso slightly angled, head turned to the left\", \"expression\": \"neutral to contemplative\", \"gaze_direction\": \"looking on camera\", \"hair\": { \"color\": \"dark brown to black\", \"style\": \"thick, voluminous, tousled, slightly wavy\" }, \"skin_tone\": \"light to medium\", \"facial_features\": \"defined jawline, straight nose, full lips, clean-shaven\" }, \"clothing_and_accessories\": { \"top\": { \"type\": \"long-sleeve button-up shirt\", \"color\": \"black\", \"fit\": \"slim to regular fit\", \"details\": \"top buttons undone, lightweight fabric with subtle drape\" }, \"bottom\": { \"type\": \"trousers\", \"color\": \"dark navy or black\", \"fit\": \"slim fit\" }, \"accessories\": [ { \"item\": \"sunglasses\", \"color\": \"black\", \"held_in\": \"right hand\" }, { \"item\": \"wristwatch\", \"material\": \"metal\", \"worn_on\": \"left wrist\" }, { \"item\": \"bracelet\", \"color\": \"red\", \"worn_on\": \"right wrist\" } ] }, \"environment\": { \"setting\": \"outdoor, on a boat or waterfront deck\", \"foreground\": \"white deck surface\", \"background\": { \"elements\": [ \"open sea with visible water texture\", \"distant coastal cityscape\", \"cloud-filled sky\" ], \"horizon_line\": \"visible and level\" } }, \"lighting\": { \"type\": \"natural daylight\", \"quality\": \"soft and diffused\", \"direction\": \"overhead with slight frontal illumination\", \"shadows\": \"minimal, soft-edged\" }, \"color_palette\": { \"dominant_colors\": [ \"deep blue\", \"cyan\", \"white\", \"black\" ], \"contrast\": \"high contrast between dark clothing and bright environment\", \"saturation\": \"moderate, natural tones\" }, \"technical_characteristics\": { \"focus\": \"sharp focus on subject\", \"depth_of_field\": \"moderate, background slightly softened but recognizable\", \"image_clarity\": \"high\", \"noise\": \"minimal\", \"lens_effect\": \"no visible distortion, likely standard focal length\" }, \"artistic_style\": { \"aesthetic\": \"clean, modern lifestyle photography\", \"mood\": \"calm, confident, aspirational\", \"visual_theme\": \"luxury travel or leisure\" }, \"typography\": { \"text_present\": false } }"
}
JSON
IM
图像
Photography nano-banana-2

Use The Uploaded Image Of The Woman As Strict Facial Referen...

Use The Uploaded Image Of The Woman As Strict Facial Reference And Physical Features - Keep Her Real Face Exactly As Provided, Without Alterations Or Stylization. Ensure Seamless, Ultra-realistic Integration In The Final Render. Black And White High-fashion Editorial Portrait Of The Uploaded Person, Wearing A Loose White Blouse. She Poses With One Arm Raised, Partially Covering Her Face While Holding Her Hair Up, Creating A Dramatic And Artistic Composition. Her Gaze Is Intense And Captivating, Directly Toward The Camera, Exuding A Strong, Enigmatic Aura. Background: Minimalist Plain Wall With Sharp Daylight Shadows Adding Contrast And Depth. Lighting: Harsh Natural Sunlight, High-contrast, Emphasizing Facial Contours, Cheekbones, Hair Texture, And Fabric Detail. Pose: Bold And Expressive, Arm Lifted Framing The Face To Emphasize Raw Emotion And High-fashion Editorial Style. Camera: Eye-level Close-up, Focusing On Facial Expression, Texture, And Dramatic Shadow Play. Captured As If With Canon Eos R5, 85mm F/1.8 Lens - Crisp Detail, Tonal Depth, Fine Grain. Style: Monochrome, Ultra-realistic, Cinematic, High-fashion Editorial Photography.ashion editorial 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": "Use The Uploaded Image Of The Woman As Strict Facial Reference And Physical Features - Keep Her Real Face Exactly As Provided, Without Alterations Or Stylization. Ensure Seamless, Ultra-realistic Integration In The Final Render. Black And White High-fashion Editorial Portrait Of The Uploaded Person, Wearing A Loose White Blouse. She Poses With One Arm Raised, Partially Covering Her Face While Holding Her Hair Up, Creating A Dramatic And Artistic Composition. Her Gaze Is Intense And Captivating, Directly Toward The Camera, Exuding A Strong, Enigmatic Aura. Background: Minimalist Plain Wall With Sharp Daylight Shadows Adding Contrast And Depth. Lighting: Harsh Natural Sunlight, High-contrast, Emphasizing Facial Contours, Cheekbones, Hair Texture, And Fabric Detail. Pose: Bold And Expressive, Arm Lifted Framing The Face To Emphasize Raw Emotion And High-fashion Editorial Style. Camera: Eye-level Close-up, Focusing On Facial Expression, Texture, And Dramatic Shadow Play. Captured As If With Canon Eos R5, 85mm F/1.8 Lens - Crisp Detail, Tonal Depth, Fine Grain. Style: Monochrome, Ultra-realistic, Cinematic, High-fashion Editorial Photography.ashion editorial photography."
}
JSON
IM
图像
Photography nano-banana-2

use the uploaded photo as the exact identity reference. keep...

use the uploaded photo as the exact identity reference. keep the same person, same face, same facial features, same proportions and natural expression, create a photorealistic cinematic triptych portrait (three-frame composition in one image). scene: night city, bridge over a busy road, moving cars, glowing street lights, evening sky, city skyline in the background. atmosphere: freedom, motion, youth, urban romance, feeling of wind and road. frame 1 (top): wide cinematic shot - the person standing on a bridge above a busy road, slight motion blur from head movement, city lights and cars below, strong urban night mood. frame 2 (middle): medium shot person leaning on the bridge railing, looking up at the sky, relaxed confident pose, cars and headlights glowing behind. frame 3 (bottom): close-up emotional portrait wind in hair, city lights in bokeh behind, thoughtful and dreamy expression. style: real photography, cinematic lifestyle portrait, urban fashion photography. lighting, natural city night lighting, street lamps, car headlights, soft glow on skin. camera: full-frame dslr, 85mm lens look, shallow depth of field. color grading: warm city lights mixed with cool blue night tones, film-style mood. ultra photorealistic, natural skin texture, real candid moment, no illustration, no cgi, no plastic skin, no text, no logos, 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": "use the uploaded photo as the exact identity reference. keep the same person, same face, same facial features, same proportions and natural expression, create a photorealistic cinematic triptych portrait (three-frame composition in one image). scene: night city, bridge over a busy road, moving cars, glowing street lights, evening sky, city skyline in the background. atmosphere: freedom, motion, youth, urban romance, feeling of wind and road. frame 1 (top): wide cinematic shot - the person standing on a bridge above a busy road, slight motion blur from head movement, city lights and cars below, strong urban night mood. frame 2 (middle): medium shot person leaning on the bridge railing, looking up at the sky, relaxed confident pose, cars and headlights glowing behind. frame 3 (bottom): close-up emotional portrait wind in hair, city lights in bokeh behind, thoughtful and dreamy expression. style: real photography, cinematic lifestyle portrait, urban fashion photography. lighting, natural city night lighting, street lamps, car headlights, soft glow on skin. camera: full-frame dslr, 85mm lens look, shallow depth of field. color grading: warm city lights mixed with cool blue night tones, film-style mood. ultra photorealistic, natural skin texture, real candid moment, no illustration, no cgi, no plastic skin, no text, no logos, no watermark."
}
JSON
IM
图像
Photography nano-banana-2

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

{ "image_generation": { "subject": { "description": "young woman sitting on stone steps in a quiet old European street", "pose": "seated casually on worn stone stairs, legs crossed slightly, holding a notebook and pen", "expression": "thoughtful, calm, introspective", "action": "writing notes while glancing to the side" }, "appearance": { "hair": { "color": "dark brown", "style": "messy bun with soft bangs framing the face" }, "face": { "features": "soft natural facial features", "makeup": "minimal, natural look" } }, "outfit": { "top": "black oversized blazer", "bottom": "blue straight-leg jeans", "shoes": "black ballet flats" }, "accessories": { "bag": "small brown leather shoulder bag", "objects": [ "small notebook", "pen", "closed book placed beside her" ] }, "environment": { "setting": "old European alleyway", "background": "weathered stone wall, green wooden door, cobblestone street", "architecture": "vintage, rustic, historic textures" }, "lighting": { "type": "natural daylight", "quality": "soft, diffused", "mood": "warm, calm, cinematic" }, "camera": { "angle": "eye-level", "framing": "medium full-body shot", "style": "editorial lifestyle photography", "focus": "sharp subject with subtly textured background", "quality": "high resolution, realistic" }, "aesthetic": { "style": "Parisian street style", "vibe": "artistic, literary, cozy", "color_palette": "neutral earth tones, muted greens, stone gray, denim blue" } } }

查看 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 on stone steps in a quiet old European street\", \"pose\": \"seated casually on worn stone stairs, legs crossed slightly, holding a notebook and pen\", \"expression\": \"thoughtful, calm, introspective\", \"action\": \"writing notes while glancing to the side\" }, \"appearance\": { \"hair\": { \"color\": \"dark brown\", \"style\": \"messy bun with soft bangs framing the face\" }, \"face\": { \"features\": \"soft natural facial features\", \"makeup\": \"minimal, natural look\" } }, \"outfit\": { \"top\": \"black oversized blazer\", \"bottom\": \"blue straight-leg jeans\", \"shoes\": \"black ballet flats\" }, \"accessories\": { \"bag\": \"small brown leather shoulder bag\", \"objects\": [ \"small notebook\", \"pen\", \"closed book placed beside her\" ] }, \"environment\": { \"setting\": \"old European alleyway\", \"background\": \"weathered stone wall, green wooden door, cobblestone street\", \"architecture\": \"vintage, rustic, historic textures\" }, \"lighting\": { \"type\": \"natural daylight\", \"quality\": \"soft, diffused\", \"mood\": \"warm, calm, cinematic\" }, \"camera\": { \"angle\": \"eye-level\", \"framing\": \"medium full-body shot\", \"style\": \"editorial lifestyle photography\", \"focus\": \"sharp subject with subtly textured background\", \"quality\": \"high resolution, realistic\" }, \"aesthetic\": { \"style\": \"Parisian street style\", \"vibe\": \"artistic, literary, cozy\", \"color_palette\": \"neutral earth tones, muted greens, stone gray, denim blue\" } } }"
}
JSON
IM
图像
Photography nano-banana-2

48k Hyper-realistic, A cinematic portrait of a young man(kee...

48k Hyper-realistic, A cinematic portrait of a young man(keep the facial features unchanged as uploaded image), his hair is messy manbun over the eye ,in a long dark trench coat, surrounded by pigeons flying dramatically around him. Some pigeons fly very close to the camera, wings blurred in motion, others perch on his shoulder. His expression is serious and enigmatic, half of his face obscured by a pigeon in the foreground. Moody lighting with strong shadows and highlights.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "48k Hyper-realistic, A cinematic portrait of a young man(keep the facial features unchanged as uploaded image), his hair is messy manbun over the eye ,in a long dark trench coat, surrounded by pigeons flying dramatically around him. Some pigeons fly very close to the camera, wings blurred in motion, others perch on his shoulder. His expression is serious and enigmatic, half of his face obscured by a pigeon in the foreground. Moody lighting with strong shadows and highlights."
}
JSON
IM
图像
Photography nano-banana-2

Create a hyper-realistic, high-detail studio photoshoot feat...

Create a hyper-realistic, high-detail studio photoshoot featuring the same person from the reference photo with the exact facial features, skin tone, hairstyle, proportions, and identity fully preserved (no changes to face or structure). She is wearing stylish Gen-Z fashion attire trendy, minimal, modern streetwear. She is leaning casually on a realistic, fluffy, life-sized Labubu character, rendered in soft fur texture with playful expression. A British Shorthair cat sits or poses nearby, also hyperrealistic with detailed fur and natural posture. The entire scene is set against a smooth, seamless, vibrant orange studio backdrop with professional studio lighting, crisp shadows, clean highlights, and a premium fashion editorial vibe. Ultra-photorealistic, flawless skin texture (but unchanged identity), high-end photography style, full-body or mid-shot composition.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create a hyper-realistic, high-detail studio photoshoot featuring the same person from the reference photo with the exact facial features, skin tone, hairstyle, proportions, and identity fully preserved (no changes to face or structure). She is wearing stylish Gen-Z fashion attire trendy, minimal, modern streetwear. She is leaning casually on a realistic, fluffy, life-sized Labubu character, rendered in soft fur texture with playful expression. A British Shorthair cat sits or poses nearby, also hyperrealistic with detailed fur and natural posture. The entire scene is set against a smooth, seamless, vibrant orange studio backdrop with professional studio lighting, crisp shadows, clean highlights, and a premium fashion editorial vibe. Ultra-photorealistic, flawless skin texture (but unchanged identity), high-end photography style, full-body or mid-shot composition."
}
JSON
IM
图像
Photography nano-banana-2

Ultra wide-angle low-angle portrait shot from ground perspec...

Ultra wide-angle low-angle portrait shot from ground perspective, young woman leaning over camera, hands reaching toward lens creating foreground distortion, bright midday sun with strong lens flare, clear blue sky background, wind-blown messy hair glowing in backlight, soft freckles and natural skin texture, wearing cozy cream knit sweater and mustard wide-leg pants, cinematic lighting, shallow depth of field, high detail, 35mm fisheye look, vibrant colors, fashion editorial 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": "Ultra wide-angle low-angle portrait shot from ground perspective, young woman leaning over camera, hands reaching toward lens creating foreground distortion, bright midday sun with strong lens flare, clear blue sky background, wind-blown messy hair glowing in backlight, soft freckles and natural skin texture, wearing cozy cream knit sweater and mustard wide-leg pants, cinematic lighting, shallow depth of field, high detail, 35mm fisheye look, vibrant colors, fashion editorial style"
}
JSON
IM
图像
Photography nano-banana-2

Create a hyper-realistic underwater close-range portrait cap...

Create a hyper-realistic underwater close-range portrait captured with a wide-angle action camera in a waterproof housing. The camera is very close to the Subject (≈0.5–1 m), positioned slightly below face level and angled upward, with wide-angle distortion emphasizing depth while keeping the Subject dominant. Mid-shot to ¾ body framing. The Subject fills most of the frame, with face and upper body clearly visible. Schools of tropical fish swim closely around, some passing near the lens to create layered depth, with mild motion blur on fish closest to the camera. Natural sunlight enters from above, producing bright caustic patterns on the Subject and surrounding water, strong highlights near the surface, and soft blue gradients below. Floating water particles are visible between the camera and Subject, with slight refraction distortion around mask edges and hands. The Subject appears calm and relaxed, floating effortlessly with subtle body movement suggesting buoyancy and breathing through the snorkel. A shallow coral reef is visible below, slightly softened by depth, while nearby fish remain sharper. The water surface shimmers above with gentle ripples. Color behavior reflects natural underwater absorption: dominant blues and aquas, vibrant yellow and black fish patterns retained, and skin tones realistic with a slightly cool cast. The image should feel like a real close-distance snorkeling travel photo intimate, immersive, and authentic. Do not alter facial structure or identity. The Subject must remain 1000% identical to the reference 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": "Create a hyper-realistic underwater close-range portrait captured with a wide-angle action camera in a waterproof housing. The camera is very close to the Subject (≈0.5–1 m), positioned slightly below face level and angled upward, with wide-angle distortion emphasizing depth while keeping the Subject dominant. Mid-shot to ¾ body framing. The Subject fills most of the frame, with face and upper body clearly visible. Schools of tropical fish swim closely around, some passing near the lens to create layered depth, with mild motion blur on fish closest to the camera. Natural sunlight enters from above, producing bright caustic patterns on the Subject and surrounding water, strong highlights near the surface, and soft blue gradients below. Floating water particles are visible between the camera and Subject, with slight refraction distortion around mask edges and hands. The Subject appears calm and relaxed, floating effortlessly with subtle body movement suggesting buoyancy and breathing through the snorkel. A shallow coral reef is visible below, slightly softened by depth, while nearby fish remain sharper. The water surface shimmers above with gentle ripples. Color behavior reflects natural underwater absorption: dominant blues and aquas, vibrant yellow and black fish patterns retained, and skin tones realistic with a slightly cool cast. The image should feel like a real close-distance snorkeling travel photo intimate, immersive, and authentic. Do not alter facial structure or identity. The Subject must remain 1000% identical to the reference image."
}
JSON
IM
图像
Photography nano-banana-2

Ultra realistic cinematic portrait of a 32-year-old young wo...

Ultra realistic cinematic portrait of a 32-year-old young woman standing in heavy rain at night, arms open wide and face lifted toward the sky, eyes closed, feeling the rain. Dramatic warm orange backlight illuminating the falling raindrops, creating glowing rain particles around her. Wet black t-shirt tightly fitting on the body, water droplets on her skin. Strong contrast lighting with a dark background, orange and golden light shining from the left side like fire or a spotlight. Emotional expression of freedom and peace, cinematic photography style, ultra-detailed, 8K resolution, shallow depth of field, professional studio lighting, rain splash effects, high-contrast shadows, dramatic atmosphere, vertical portrait composition, 85mm lens 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": "Ultra realistic cinematic portrait of a 32-year-old young woman standing in heavy rain at night, arms open wide and face lifted toward the sky, eyes closed, feeling the rain. Dramatic warm orange backlight illuminating the falling raindrops, creating glowing rain particles around her. Wet black t-shirt tightly fitting on the body, water droplets on her skin. Strong contrast lighting with a dark background, orange and golden light shining from the left side like fire or a spotlight. Emotional expression of freedom and peace, cinematic photography style, ultra-detailed, 8K resolution, shallow depth of field, professional studio lighting, rain splash effects, high-contrast shadows, dramatic atmosphere, vertical portrait composition, 85mm lens photography."
}
JSON
IM
图像
Photography nano-banana-2

Cinematic close-up portrait of a young man standing in heavy...

Cinematic close-up portrait of a young man standing in heavy rain at night, wearing round metal glasses and a dark coat, wet hair falling across his forehead, light stubble beard. Raindrops clinging to his glasses and skin, dramatic moody lighting with warm orange streetlight bokeh in the background, shallow depth of field, intense contemplative expression, gritty noir atmosphere, ultra-realistic, high contrast, detailed skin texture, cinematic color grading, 85mm lens, f/1.8,photorealistic, dark urban aesthetic, film still look.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Cinematic close-up portrait of a young man standing in heavy rain at night, wearing round metal glasses and a dark coat, wet hair falling across his forehead, light stubble beard. Raindrops clinging to his glasses and skin, dramatic moody lighting with warm orange streetlight bokeh in the background, shallow depth of field, intense contemplative expression, gritty noir atmosphere, ultra-realistic, high contrast, detailed skin texture, cinematic color grading, 85mm lens, f/1.8,photorealistic, dark urban aesthetic, film still look."
}
JSON
IM
图像
Photography nano-banana-2

{ "image_request": { "style": { "genre": "Editor...

{ "image_request": { "style": { "genre": "Editorial fashion portrait", "aesthetic": "2000s retro-pop, Californian summer vibe", "mood": "Confident, sultry, youthful", "quality": "High-quality, cinematic", "aspect_ratio": "Portrait" }, "identity": { "face_lock": "Use the original face exactly as provided", "constraints": "Do not change any facial features, proportions, asymmetry, or details", "realism": "100% photorealistic face preservation" }, "subject": { "gender": "Woman", "expression": "Confident and sultry", "mouth": "Slightly open", "gaze": "Direct eye contact with the camera" }, "hair": { "color": "Soft golden-brown", "length": "Long", "style": "Shaggy haircut with full bangs" }, "pose": { "body_position": "Crouching forward", "hands": { "gesture": "One hand raised to the face", "detail": "Finger touching bottom lip" }, "attitude": "Bold, self-assured" }, "fashion": { "outfit": "White and red athletic-style bodysuit" }, "makeup": { "eyes": "Peach eyeshadow with winged eyeliner", "lips": "Glossy berry-red lipstick", "overall": "Soft, warm-toned editorial makeup" }, "accessories": { "jewelry": "Chunky silver jewelry", "ring": "Large silver ring with yellow watch-face detail", "nails": { "style": "Long manicured nails", "design": "Red heart accents" } }, "lighting": { "type": "Bright, warm, high-key natural sunlight", "shadows": "Soft and natural" }, "environment": { "background": "Blurred warm orange and sandy-yellow gradient", "suggested_location": "Outdoor desert or poolside atmosphere" }, "camera": { "style": "35mm film photography look", "focus": "Sharp focus on face and hand", "depth_of_field": "Shallow depth of field", "color": "Vibrant, cinematic tones" }, "final_notes": { "textures": "Natural skin, hair, and fabric detail", "editing": "No face alteration, no over-smoothing", "overall_feel": "High-fashion cinematic editorial portrait" } } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"image_request\": { \"style\": { \"genre\": \"Editorial fashion portrait\", \"aesthetic\": \"2000s retro-pop, Californian summer vibe\", \"mood\": \"Confident, sultry, youthful\", \"quality\": \"High-quality, cinematic\", \"aspect_ratio\": \"Portrait\" }, \"identity\": { \"face_lock\": \"Use the original face exactly as provided\", \"constraints\": \"Do not change any facial features, proportions, asymmetry, or details\", \"realism\": \"100% photorealistic face preservation\" }, \"subject\": { \"gender\": \"Woman\", \"expression\": \"Confident and sultry\", \"mouth\": \"Slightly open\", \"gaze\": \"Direct eye contact with the camera\" }, \"hair\": { \"color\": \"Soft golden-brown\", \"length\": \"Long\", \"style\": \"Shaggy haircut with full bangs\" }, \"pose\": { \"body_position\": \"Crouching forward\", \"hands\": { \"gesture\": \"One hand raised to the face\", \"detail\": \"Finger touching bottom lip\" }, \"attitude\": \"Bold, self-assured\" }, \"fashion\": { \"outfit\": \"White and red athletic-style bodysuit\" }, \"makeup\": { \"eyes\": \"Peach eyeshadow with winged eyeliner\", \"lips\": \"Glossy berry-red lipstick\", \"overall\": \"Soft, warm-toned editorial makeup\" }, \"accessories\": { \"jewelry\": \"Chunky silver jewelry\", \"ring\": \"Large silver ring with yellow watch-face detail\", \"nails\": { \"style\": \"Long manicured nails\", \"design\": \"Red heart accents\" } }, \"lighting\": { \"type\": \"Bright, warm, high-key natural sunlight\", \"shadows\": \"Soft and natural\" }, \"environment\": { \"background\": \"Blurred warm orange and sandy-yellow gradient\", \"suggested_location\": \"Outdoor desert or poolside atmosphere\" }, \"camera\": { \"style\": \"35mm film photography look\", \"focus\": \"Sharp focus on face and hand\", \"depth_of_field\": \"Shallow depth of field\", \"color\": \"Vibrant, cinematic tones\" }, \"final_notes\": { \"textures\": \"Natural skin, hair, and fabric detail\", \"editing\": \"No face alteration, no over-smoothing\", \"overall_feel\": \"High-fashion cinematic editorial portrait\" } } }"
}
JSON
IM
图像
Photography nano-banana-2

Cute, innocent young adult blonde woman sitting comfortably...

Cute, innocent young adult blonde woman sitting comfortably on a neatly made bed, relaxed natural posture with legs gently bent, shoulders soft and at ease. Long, soft, flowing blonde hair styled in loose natural waves, silky texture, subtle shine, a few delicate strands framing her face. Clear blue eyes with a gentle sparkle, long natural lashes, delicate eyebrows, smooth fair complexion with a soft healthy glow, subtle blush on cheeks, light pink lips, minimal natural makeup enhancing her youthful features. Calm, sweet, peaceful expression conveying warmth and innocence. Wearing a clean white short-sleeve cotton shirt, lightweight fabric, neatly tied at the waist with natural folds and creases, paired with light-wash high-waisted jeans, casual fit, realistic denim texture, visible stitching and seams, effortlessly stylish yet simple. Bright, cozy bedroom interior filled with soft natural light, white and cream color palette, minimal modern decor, neatly arranged pillows, soft linen bedsheets, light wooden bed frame and furniture, a large window nearby with sheer curtains gently diffusing the sunlight. Warm morning or late-afternoon sunlight streaming in, creating soft highlights on her hair and skin, gentle shadows for depth, peaceful and intimate atmosphere, calm lifestyle mood. Photorealistic, ultra-high detail, hyper-detailed skin texture with visible natural pores and softness, realistic hair strands with depth and volume, accurate fabric textures, lifelike color tones. Shot on Canon DSLR, 50mm f/1.8 lens, shallow depth of field, creamy natural bokeh background, sharp focus on eyes and face, natural lighting only, no artificial flash. Soft cinematic yet true-to-life color grading, lifestyle editorial photography style, clean balanced composition, vertical framing, realistic perspective, professional photography quality. --ar 3:4 --stylize 250 --v 6 --q 2

查看 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": "Cute, innocent young adult blonde woman sitting comfortably on a neatly made bed, relaxed natural posture with legs gently bent, shoulders soft and at ease. Long, soft, flowing blonde hair styled in loose natural waves, silky texture, subtle shine, a few delicate strands framing her face. Clear blue eyes with a gentle sparkle, long natural lashes, delicate eyebrows, smooth fair complexion with a soft healthy glow, subtle blush on cheeks, light pink lips, minimal natural makeup enhancing her youthful features. Calm, sweet, peaceful expression conveying warmth and innocence. Wearing a clean white short-sleeve cotton shirt, lightweight fabric, neatly tied at the waist with natural folds and creases, paired with light-wash high-waisted jeans, casual fit, realistic denim texture, visible stitching and seams, effortlessly stylish yet simple. Bright, cozy bedroom interior filled with soft natural light, white and cream color palette, minimal modern decor, neatly arranged pillows, soft linen bedsheets, light wooden bed frame and furniture, a large window nearby with sheer curtains gently diffusing the sunlight. Warm morning or late-afternoon sunlight streaming in, creating soft highlights on her hair and skin, gentle shadows for depth, peaceful and intimate atmosphere, calm lifestyle mood. Photorealistic, ultra-high detail, hyper-detailed skin texture with visible natural pores and softness, realistic hair strands with depth and volume, accurate fabric textures, lifelike color tones. Shot on Canon DSLR, 50mm f/1.8 lens, shallow depth of field, creamy natural bokeh background, sharp focus on eyes and face, natural lighting only, no artificial flash. Soft cinematic yet true-to-life color grading, lifestyle editorial photography style, clean balanced composition, vertical framing, realistic perspective, professional photography quality. --ar 3:4 --stylize 250 --v 6 --q 2"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic 4-panel photo collage showing a quiet, introspec...

A cinematic 4-panel photo collage showing a quiet, introspective city walk with smoking as a character detail. • Frame 1: Sitting briefly on wide stone stairs, cigarette lit, city lights behind • Frame 2: Standing still under a warm streetlamp, slow smoke drifting upward • Frame 3: Walking past old European buildings, cigarette between fingers • Frame 4: Pausing near a closed shop window, reflection visible with smoke haze Consistent outfit — minimalist black outfit, ankle boots. Low-key lighting, soft bokeh, cinematic shadows, film-still realism, editorial mood, 1:1 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 cinematic 4-panel photo collage showing a quiet, introspective city walk with smoking as a character detail. • Frame 1: Sitting briefly on wide stone stairs, cigarette lit, city lights behind • Frame 2: Standing still under a warm streetlamp, slow smoke drifting upward • Frame 3: Walking past old European buildings, cigarette between fingers • Frame 4: Pausing near a closed shop window, reflection visible with smoke haze Consistent outfit — minimalist black outfit, ankle boots. Low-key lighting, soft bokeh, cinematic shadows, film-still realism, editorial mood, 1:1 aspect ratio."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic portrait of a stylish man in a bla...

Ultra-realistic cinematic portrait of a stylish man in a black suit, captured from behind with his head turned over his shoulder, giving a sharp, intense look toward the camera. Short textured hair with subtle highlights, well-groomed beard. Dramatic spotlight from above creating a warm golden halo effect on his hair and face, fading into a dark background. Strong chiaroscuro lighting with deep shadows and soft highlights.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic cinematic portrait of a stylish man in a black suit, captured from behind with his head turned over his shoulder, giving a sharp, intense look toward the camera. Short textured hair with subtle highlights, well-groomed beard. Dramatic spotlight from above creating a warm golden halo effect on his hair and face, fading into a dark background. Strong chiaroscuro lighting with deep shadows and soft highlights."
}
JSON
IM
图像
Photography nano-banana-2

1. 宏观风格与媒介 - 核心媒介: Photography - 美学流派: Traditional Chinese b...

1. 宏观风格与媒介 - 核心媒介: Photography - 美学流派: Traditional Chinese bridal portrait 2. 主体与IP身份 - 核心主体: Woman with updo hairstyle adorned with red paper-cut flowers and butterflies, wearing red traditional attire and pearl jewelry - IP/名人锁定: None 3. 世界逻辑与物理 - 物理法则: Realistic human proportion - 空间构成: Eye-level perspective, close-up portrait with paper-cut decorative foreground 4. 数据与信息层 - 文本提取: None - 品牌与符号: None 5. 材质与纹理 - 核心材质: Red satin cheongsam, red paper-cut ornaments, white glossy pearls, small white pearl earring - 触感细节: Smooth satin texture, delicate paper-cut texture, glossy pearl surface 6. 光影与氛围 - 光照模型: Soft side lighting, soft shadows - 整体氛围: Warm, elegant, traditional Chinese festive atmosphere 7. 技术参数 - 镜头与渲染: 50mm lens - 构图指令: --ar 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": "1. 宏观风格与媒介 - 核心媒介: Photography - 美学流派: Traditional Chinese bridal portrait 2. 主体与IP身份 - 核心主体: Woman with updo hairstyle adorned with red paper-cut flowers and butterflies, wearing red traditional attire and pearl jewelry - IP/名人锁定: None 3. 世界逻辑与物理 - 物理法则: Realistic human proportion - 空间构成: Eye-level perspective, close-up portrait with paper-cut decorative foreground 4. 数据与信息层 - 文本提取: None - 品牌与符号: None 5. 材质与纹理 - 核心材质: Red satin cheongsam, red paper-cut ornaments, white glossy pearls, small white pearl earring - 触感细节: Smooth satin texture, delicate paper-cut texture, glossy pearl surface 6. 光影与氛围 - 光照模型: Soft side lighting, soft shadows - 整体氛围: Warm, elegant, traditional Chinese festive atmosphere 7. 技术参数 - 镜头与渲染: 50mm lens - 构图指令: --ar 4:5"
}
JSON
IM
图像
Photography nano-banana-2

ROLE & AESTHETIC: You are a world-class editorial portrait p...

ROLE & AESTHETIC: You are a world-class editorial portrait photographer specializing in dramatic, colorful studio lighting. Your task is to create a powerful, dynamic portrait with a “heroic” feel. IDENTITY ANCHOR (CRITICAL STRICT CONSTRAINT): Source: Use the person from the ATTACHED REFERENCE PHOTO. Preservation: You must keep their exact facial features, skin tone, hairstyle, and natural likeness perfectly unchanged. Universal Application: Apply the lighting and angle to the subject regardless of gender. WARDROBE & STYLING: Attire: A premium Black Pique Polo Shirt Texture: Visible cotton pique mesh texture Fit: Fitted and sharp Color: Deep matte black (to contrast with the bright background) Expression: Serious, intense, focused. The subject is looking off-camera into the space above, not directly at the lens. SCENE & COMPOSITION: Background: A vibrant, solid orange-red backdrop. It should feature smooth, intense color gradients without any patterns, creating a “hot” atmosphere. Camera Angle (CRITICAL): Low-angle shot (looking up at the subject). This perspective should make the subject look powerful and dominant. Framing: Medium close-up (focus on face and shoulders). LIGHTING (DRAMATIC & COLORFUL): Palette: Dominated by vibrant orange and deep red hues. Key Light: Strong, directional lighting that casts deep, dramatic shadows on the face (chiaroscuro effect), emphasizing facial structure. Rim Light: A strong, dramatic edge light (or color cast) that separates the subject’s shoulders and head from the intensely lit background. Mood: Mysterious, intense, high-contrast studio aesthetic. TECHNICAL QUALITY: Style: Photorealistic, highly detailed. Texture: Sharp focus on the face, contrasting with the smooth gradients of the background. Skin: Retain natural pores and texture.

查看 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": "ROLE & AESTHETIC: You are a world-class editorial portrait photographer specializing in dramatic, colorful studio lighting. Your task is to create a powerful, dynamic portrait with a “heroic” feel. IDENTITY ANCHOR (CRITICAL STRICT CONSTRAINT): Source: Use the person from the ATTACHED REFERENCE PHOTO. Preservation: You must keep their exact facial features, skin tone, hairstyle, and natural likeness perfectly unchanged. Universal Application: Apply the lighting and angle to the subject regardless of gender. WARDROBE & STYLING: Attire: A premium Black Pique Polo Shirt Texture: Visible cotton pique mesh texture Fit: Fitted and sharp Color: Deep matte black (to contrast with the bright background) Expression: Serious, intense, focused. The subject is looking off-camera into the space above, not directly at the lens. SCENE & COMPOSITION: Background: A vibrant, solid orange-red backdrop. It should feature smooth, intense color gradients without any patterns, creating a “hot” atmosphere. Camera Angle (CRITICAL): Low-angle shot (looking up at the subject). This perspective should make the subject look powerful and dominant. Framing: Medium close-up (focus on face and shoulders). LIGHTING (DRAMATIC & COLORFUL): Palette: Dominated by vibrant orange and deep red hues. Key Light: Strong, directional lighting that casts deep, dramatic shadows on the face (chiaroscuro effect), emphasizing facial structure. Rim Light: A strong, dramatic edge light (or color cast) that separates the subject’s shoulders and head from the intensely lit background. Mood: Mysterious, intense, high-contrast studio aesthetic. TECHNICAL QUALITY: Style: Photorealistic, highly detailed. Texture: Sharp focus on the face, contrasting with the smooth gradients of the background. Skin: Retain natural pores and texture."
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "Use the uploaded reference image STRICTLY to...

{ "prompt": "Use the uploaded reference image STRICTLY to preserve the same woman’s face, identity, facial structure, proportions, and natural expression with 100% accuracy. No facial alteration, beautification, or identity change.\n\nCreate an ultra-realistic black-and-white soft editorial fashion portrait of an elegant woman in a minimalist setting. The composition feels intimate, calm, and timeless, inspired by classic Vogue and Harper’s Bazaar monochrome editorials.\n\nPose & Expression:\nShe stands or leans gently against a neutral textured wall, body slightly angled. Posture is relaxed yet poised. Her expression is serene, introspective, and confident — soft eyes, relaxed lips, no exaggerated emotion. She may gaze slightly away from the camera or directly into the lens with quiet intensity.\n\nOutfit & Styling:\nShe wears a refined, minimal outfit — a softly tailored white or ivory shirt/blouse with clean lines, paired with elegant neutral trousers or a flowing skirt. Fabric textures remain visible and natural, emphasizing realism. No logos, no loud fashion statements — pure quiet luxury.\n\nHair & Makeup:\nHair is styled naturally — loose soft waves, a low bun, or a simple pulled-back look with realistic texture. Makeup is minimal editorial: natural skin, subtle highlights, light contour, soft lashes, and neutral lips. No glamour, no heavy styling.\n\nLighting & Mood:\nSoft directional lighting creates gentle highlights and smooth shadows across the face and clothing. Contrast is controlled and elegant, preserving fine skin texture and fabric detail. Lighting feels organic, editorial, and emotionally calm.\n\nBlack & White Treatment:\nClassic monochrome grading with rich blacks, soft whites, and smooth mid-tones. Film-inspired tonal range with subtle grain for authenticity. No harsh contrast, no crushed shadows.\n\nVisual Style:\nHigh-end fashion editorial photography, timeless black-and-white aesthetic, understated luxury, emotional softness, and artistic restraint.\n\nCamera & Quality:\nProfessional editorial photography, shallow depth of field, cinematic framing, ultra-realistic 8K resolution, sharp subject focus with soft background separation.\n\nOverall Feel:\nQuiet confidence, feminine strength, timeless elegance — a refined black-and-white editorial portrait.", "style": "black-and-white soft editorial, cinematic realism", "lighting": "soft directional light, gentle shadows", "color_grade": "classic monochrome, film-inspired tones", "background": "minimal neutral textured wall", "quality": "ultra-realistic, 8K, editorial detail", "camera": "professional fashion photography, shallow depth of field", "mood": "calm, timeless, elegant, introspective" }

查看 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\": \"Use the uploaded reference image STRICTLY to preserve the same woman’s face, identity, facial structure, proportions, and natural expression with 100% accuracy. No facial alteration, beautification, or identity change.\\n\\nCreate an ultra-realistic black-and-white soft editorial fashion portrait of an elegant woman in a minimalist setting. The composition feels intimate, calm, and timeless, inspired by classic Vogue and Harper’s Bazaar monochrome editorials.\\n\\nPose & Expression:\\nShe stands or leans gently against a neutral textured wall, body slightly angled. Posture is relaxed yet poised. Her expression is serene, introspective, and confident — soft eyes, relaxed lips, no exaggerated emotion. She may gaze slightly away from the camera or directly into the lens with quiet intensity.\\n\\nOutfit & Styling:\\nShe wears a refined, minimal outfit — a softly tailored white or ivory shirt/blouse with clean lines, paired with elegant neutral trousers or a flowing skirt. Fabric textures remain visible and natural, emphasizing realism. No logos, no loud fashion statements — pure quiet luxury.\\n\\nHair & Makeup:\\nHair is styled naturally — loose soft waves, a low bun, or a simple pulled-back look with realistic texture. Makeup is minimal editorial: natural skin, subtle highlights, light contour, soft lashes, and neutral lips. No glamour, no heavy styling.\\n\\nLighting & Mood:\\nSoft directional lighting creates gentle highlights and smooth shadows across the face and clothing. Contrast is controlled and elegant, preserving fine skin texture and fabric detail. Lighting feels organic, editorial, and emotionally calm.\\n\\nBlack & White Treatment:\\nClassic monochrome grading with rich blacks, soft whites, and smooth mid-tones. Film-inspired tonal range with subtle grain for authenticity. No harsh contrast, no crushed shadows.\\n\\nVisual Style:\\nHigh-end fashion editorial photography, timeless black-and-white aesthetic, understated luxury, emotional softness, and artistic restraint.\\n\\nCamera & Quality:\\nProfessional editorial photography, shallow depth of field, cinematic framing, ultra-realistic 8K resolution, sharp subject focus with soft background separation.\\n\\nOverall Feel:\\nQuiet confidence, feminine strength, timeless elegance — a refined black-and-white editorial portrait.\", \"style\": \"black-and-white soft editorial, cinematic realism\", \"lighting\": \"soft directional light, gentle shadows\", \"color_grade\": \"classic monochrome, film-inspired tones\", \"background\": \"minimal neutral textured wall\", \"quality\": \"ultra-realistic, 8K, editorial detail\", \"camera\": \"professional fashion photography, shallow depth of field\", \"mood\": \"calm, timeless, elegant, introspective\" }"
}
JSON
IM
图像
Photography nano-banana-2

A creative surreal image of a woman sitting on the ground, w...

A creative surreal image of a woman sitting on the ground, wearing a dark yellow hoodie, gray pants, and yellow shoes, surrounded by several miniature versions of himself. Multiple smaller versions stand on his hands, shoulders, and around him on the ground, interacting playfully with the larger version. The background is a clean, simple light gray to dark gray tone. The lighting is soft and cinematic, with realistic shadows and depth of field.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A creative surreal image of a woman sitting on the ground, wearing a dark yellow hoodie, gray pants, and yellow shoes, surrounded by several miniature versions of himself. Multiple smaller versions stand on his hands, shoulders, and around him on the ground, interacting playfully with the larger version. The background is a clean, simple light gray to dark gray tone. The lighting is soft and cinematic, with realistic shadows and depth of field."
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt_configuration": { "type": "Ultra Photorealis...

{ "prompt_configuration": { "type": "Ultra Photorealistic Editorial Portrait", "aspect_ratio": "3:4", "style_model": "Raw Flash Photography" }, "prompt_structure": { "subject_description": { "identity": "Exceptionally beautiful young woman, early 20s, magnetic screen presence, effortless confidence.", "hair": "Long, thick dark brown hair with soft volume, slightly tousled, framing the face and falling forward over both shoulders.", "face": "Striking symmetrical face, large expressive eyes with intense eye contact, relaxed brows, soft glossy lips slightly parted, natural confident smile.", "pose": "Standing very close to the camera with a subtle forward lean from the waist. Shoulders gently rolled back and chest naturally lifted. Chin slightly lowered while eyes look straight into the lens for strong intimacy. Right hand raised near cheek level, clearly holding an ornate Venetian masquerade mask angled outward and fully visible. Left hand resting at the hip to accentuate curves." }, "attire_and_accessories": { "outfit": "Silver sequin dress with thin straps and a deep, elegant neckline that naturally frames cleavage without exaggeration. Fabric catches flash light with intense sparkle.", "accessories": [ "Ornate silver-and-black Venetian masquerade mask with detailed filigree, held in the right hand.", "Minimal diamond necklace sitting just above the neckline." ] }, "environment_and_atmosphere": { "setting": "Luxury rooftop or balcony at night.", "background": "Very dark, softly blurred city lights with no distractions.", "lighting": "Direct flash placed slightly above eye level, sculpting the eyes, cheekbones, collarbones, neckline, and mask with crisp highlights and clean shadows." }, "technical_specifications": { "image_quality": "8K UHD, ultra-photorealistic, raw fashion photography.", "camera_style": "35mm editorial lens, paparazzi flash aesthetic, cinematic realism.", "focus": "Tack-sharp focus on eyes and mask, shallow depth of field.", "texture": "Natural skin texture with realistic pores, high-detail sequin reflections, sharply defined mask details, natural hair strands." } } }

查看 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_configuration\": { \"type\": \"Ultra Photorealistic Editorial Portrait\", \"aspect_ratio\": \"3:4\", \"style_model\": \"Raw Flash Photography\" }, \"prompt_structure\": { \"subject_description\": { \"identity\": \"Exceptionally beautiful young woman, early 20s, magnetic screen presence, effortless confidence.\", \"hair\": \"Long, thick dark brown hair with soft volume, slightly tousled, framing the face and falling forward over both shoulders.\", \"face\": \"Striking symmetrical face, large expressive eyes with intense eye contact, relaxed brows, soft glossy lips slightly parted, natural confident smile.\", \"pose\": \"Standing very close to the camera with a subtle forward lean from the waist. Shoulders gently rolled back and chest naturally lifted. Chin slightly lowered while eyes look straight into the lens for strong intimacy. Right hand raised near cheek level, clearly holding an ornate Venetian masquerade mask angled outward and fully visible. Left hand resting at the hip to accentuate curves.\" }, \"attire_and_accessories\": { \"outfit\": \"Silver sequin dress with thin straps and a deep, elegant neckline that naturally frames cleavage without exaggeration. Fabric catches flash light with intense sparkle.\", \"accessories\": [ \"Ornate silver-and-black Venetian masquerade mask with detailed filigree, held in the right hand.\", \"Minimal diamond necklace sitting just above the neckline.\" ] }, \"environment_and_atmosphere\": { \"setting\": \"Luxury rooftop or balcony at night.\", \"background\": \"Very dark, softly blurred city lights with no distractions.\", \"lighting\": \"Direct flash placed slightly above eye level, sculpting the eyes, cheekbones, collarbones, neckline, and mask with crisp highlights and clean shadows.\" }, \"technical_specifications\": { \"image_quality\": \"8K UHD, ultra-photorealistic, raw fashion photography.\", \"camera_style\": \"35mm editorial lens, paparazzi flash aesthetic, cinematic realism.\", \"focus\": \"Tack-sharp focus on eyes and mask, shallow depth of field.\", \"texture\": \"Natural skin texture with realistic pores, high-detail sequin reflections, sharply defined mask details, natural hair strands.\" } } }"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic, moody photograph of a young woman sitting insid...

A cinematic, moody photograph of a young woman sitting inside a café at night, seen through a rain-covered window. Raindrops and condensation blur the glass, creating a dreamy, nostalgic atmosphere. She has soft features, dark hair with bangs, and is holding a small white ceramic mug close to her face, sipping a warm drink. Warm interior light contrasts with cool teal and blue city lights outside. Shallow depth of field, soft focus, film grain, muted colors, melancholic mood, intimate composition, reflective glass, bokeh lights in the background, realistic photography, 35mm film look, low light, cinematic 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": "A cinematic, moody photograph of a young woman sitting inside a café at night, seen through a rain-covered window. Raindrops and condensation blur the glass, creating a dreamy, nostalgic atmosphere. She has soft features, dark hair with bangs, and is holding a small white ceramic mug close to her face, sipping a warm drink. Warm interior light contrasts with cool teal and blue city lights outside. Shallow depth of field, soft focus, film grain, muted colors, melancholic mood, intimate composition, reflective glass, bokeh lights in the background, realistic photography, 35mm film look, low light, cinematic color grading."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic football poster in the style of el...

Ultra-realistic cinematic football poster in the style of elite Premier League key featuring me with intense competitive energy, using a dramatic dual-composition layout where a large ultra-detailed hero close-up of the player's face appears in the background with mouth open in a powerful shout, veins slightly visible, sweat on skin, realistic pores and sharp facial definition, keare slightly turned and syres focused forward with aggressive determination, while in the foreground the same player appears full body in dynamic football action such as striking the ball, sprinting or preparing a pass, with athletic posture, natural movement, realistic muscle tension and subtle motion blur on the limbs, both portraits matching perfectly in identity, face and proportions. The player's uniComi must be of manchester united, respecting the exact style palette, thop- edities, elements and posture with hyper-realistic football kit texture.

查看 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 football poster in the style of elite Premier League key featuring me with intense competitive energy, using a dramatic dual-composition layout where a large ultra-detailed hero close-up of the player's face appears in the background with mouth open in a powerful shout, veins slightly visible, sweat on skin, realistic pores and sharp facial definition, keare slightly turned and syres focused forward with aggressive determination, while in the foreground the same player appears full body in dynamic football action such as striking the ball, sprinting or preparing a pass, with athletic posture, natural movement, realistic muscle tension and subtle motion blur on the limbs, both portraits matching perfectly in identity, face and proportions. The player's uniComi must be of manchester united, respecting the exact style palette, thop- edities, elements and posture with hyper-realistic football kit texture."
}
JSON
IM
图像
Photography nano-banana-2

A hyper-realistic, cinematic close-up portrait of a battle-h...

A hyper-realistic, cinematic close-up portrait of a battle-hardened, elderly medieval warrior, facing slightly downward but locking eyes with the camera through piercing, cold steel-blue eyes full of intensity and defiance. His weathered, deeply wrinkled, sun-damaged skin shows countless scars, cuts, and dried blood stains, including a fresh stitched wound in an X shape on his forehead. His thick, unruly, salt-and-pepper beard and mustache frame his square, rugged jawline; his short, coarse grey hair is matted with sweat and dirt. Every pore, wrinkle, and skin imperfection is rendered with extreme detail. His nose is strong and slightly crooked, ears scarred and weathered from countless battles. His expression is stern, menacing, full of wisdom and pain, with furrowed brows and tightly compressed lips. His body is wrapped in a distressed, heavy brown wool cloak with frayed edges, partially covering dark medieval chainmail armor with metallic textures reflecting subtle highlights. The background is dark and moody, pure black with a soft atmospheric haze to isolate the subject. Cinematic studio lighting: single soft key light from the upper camera-left casting dramatic shadows across the face, subtle fill light from below to slightly illuminate the lower facial structure, creating extreme contrast and depth. Slight rim light touches the shoulders and beard edges for separation. Shot with a Canon EOS R5 + RF 85mm f/1.2 lens at f/1.2 for ultra-shallow depth of field, sharp razor focus only on the eyes, soft fall-off on beard and shoulders. ISO 100, shutter speed 1/250s. Color palette: desaturated earth tones, deep browns, muted greys, blood reds, steel blacks. Cinematic color grading: teal and orange tones balanced for dramatic mood, heavy filmic shadows, with subtle fine-grain texture for realism. The image feels raw, emotional, like a poster frame from an epic dark fantasy film. --ar 3:4 --v 6.1 --style raw-quality 2 --stylize 50

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic, cinematic close-up portrait of a battle-hardened, elderly medieval warrior, facing slightly downward but locking eyes with the camera through piercing, cold steel-blue eyes full of intensity and defiance. His weathered, deeply wrinkled, sun-damaged skin shows countless scars, cuts, and dried blood stains, including a fresh stitched wound in an X shape on his forehead. His thick, unruly, salt-and-pepper beard and mustache frame his square, rugged jawline; his short, coarse grey hair is matted with sweat and dirt. Every pore, wrinkle, and skin imperfection is rendered with extreme detail. His nose is strong and slightly crooked, ears scarred and weathered from countless battles. His expression is stern, menacing, full of wisdom and pain, with furrowed brows and tightly compressed lips. His body is wrapped in a distressed, heavy brown wool cloak with frayed edges, partially covering dark medieval chainmail armor with metallic textures reflecting subtle highlights. The background is dark and moody, pure black with a soft atmospheric haze to isolate the subject. Cinematic studio lighting: single soft key light from the upper camera-left casting dramatic shadows across the face, subtle fill light from below to slightly illuminate the lower facial structure, creating extreme contrast and depth. Slight rim light touches the shoulders and beard edges for separation. Shot with a Canon EOS R5 + RF 85mm f/1.2 lens at f/1.2 for ultra-shallow depth of field, sharp razor focus only on the eyes, soft fall-off on beard and shoulders. ISO 100, shutter speed 1/250s. Color palette: desaturated earth tones, deep browns, muted greys, blood reds, steel blacks. Cinematic color grading: teal and orange tones balanced for dramatic mood, heavy filmic shadows, with subtle fine-grain texture for realism. The image feels raw, emotional, like a poster frame from an epic dark fantasy film. --ar 3:4 --v 6.1 --style raw-quality 2 --stylize 50"
}
JSON
IM
图像
Photography nano-banana-2

A dramatic black and white studio portrait of a thoughtful m...

A dramatic black and white studio portrait of a thoughtful man with short styled hair, light stubble beard, and round eyeglasses, wearing a simple black sweater and a metal wristwatch, holding a pencil near his face, looking slightly upward and to the side, soft Rembrandt lighting from the left, deep shadows, high contrast, dark background, shallow depth of field, cinematic mood, ultra detailed, sharp focus, 85mm lens, f/1.8, professional photography, editorial portrait, minimalistic, moody, fine art 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 dramatic black and white studio portrait of a thoughtful man with short styled hair, light stubble beard, and round eyeglasses, wearing a simple black sweater and a metal wristwatch, holding a pencil near his face, looking slightly upward and to the side, soft Rembrandt lighting from the left, deep shadows, high contrast, dark background, shallow depth of field, cinematic mood, ultra detailed, sharp focus, 85mm lens, f/1.8, professional photography, editorial portrait, minimalistic, moody, fine art photography"
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。