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

Full body cinematic shot of the person in the uploaded image...

Full body cinematic shot of the person in the uploaded image as a hitman in a tailored black suit and tie standing in an empty studio space beside a muscular Doberman dog on a leash. The man has a bruised face with blood marks, messy shoulder-length hair, and a calm but intense expression. He is holding a pistol in one hand. Behind them is a vintage black muscle car with chrome rims partially visible in soft shadow. Minimalist grey background, dramatic studio lighting from above creating soft reflections on the glossy floor. Ultra realistic skin texture, cinematic depth of field, sharp focus, subtle fog in the background, moody atmosphere, 85mm lens look, volumetric light, film still from a neo-noir action movie, high dynamic range, photorealistic, 8k, symmetrical composition. 3:4 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": "Full body cinematic shot of the person in the uploaded image as a hitman in a tailored black suit and tie standing in an empty studio space beside a muscular Doberman dog on a leash. The man has a bruised face with blood marks, messy shoulder-length hair, and a calm but intense expression. He is holding a pistol in one hand. Behind them is a vintage black muscle car with chrome rims partially visible in soft shadow. Minimalist grey background, dramatic studio lighting from above creating soft reflections on the glossy floor. Ultra realistic skin texture, cinematic depth of field, sharp focus, subtle fog in the background, moody atmosphere, 85mm lens look, volumetric light, film still from a neo-noir action movie, high dynamic range, photorealistic, 8k, symmetrical composition. 3:4 aspect ratio."
}
JSON
IM
图像
Photography nano-banana-2

{ "generation_request": { "meta_data": { "task_t...

{ "generation_request": { "meta_data": { "task_type": "photoreal_editorial_spotlight_disk_fashion_portrait", "language": "en", "priority": "highest", "version": "v1.0_RED_BACKDROP_CIRCLE_SPOTLIGHT_KATANA_EDITORIAL" }, "output": { "aspect_ratio": "4:5", "resolution": "high", "num_images": 4 }, "scene": { "concept": "minimal graphic studio portrait with a circular spotlight disk and crisp shadow silhouette", "environment": "deep red seamless background, no props, no clutter", "composition": "3/4 body or full-body, side profile; subject placed slightly right of center; large circular spotlight disk behind subject" }, "subject": { "person": "adult woman", "wardrobe": { "dress": "fitted black cheongsam-inspired dress, high slit, lace-up side detailing, matte fabric with subtle texture" }, "hair_makeup": { "hair": "messy low bun, a few loose strands framing face", "makeup": "soft glam, defined eyeliner, natural lips, realistic skin texture" }, "details": { "tattoos": "subtle small tattoos on upper arm, realistic ink" }, "pose": "side profile stance, shoulders relaxed, one hand resting near hip, holding a katana angled downward in a safe, non-aggressive pose", "expression": "calm, composed, editorial" }, "props": { "katana": { "style": "realistic katana with correct proportions, simple handle wrap, subtle metal sheen", "handling_notes": "safe grip, blade angled down, no threatening gesture" } }, "lighting": { "style": "single hard key light + spotlight gobo/disk", "notes": "create a large circular warm spotlight disk (cream/peach) on the red background; crisp hard-edged shadow silhouette of subject visible on the disk; high contrast; minimal fill" }, "camera": { "shot": "editorial studio fashion portrait", "lens_mm": 50, "aperture": 2.8, "focus": "sharp on face, dress texture, and sword handle; background smooth", "quality_tags": "ultra-detailed, clean edges, subtle film grain" }, "color_grade": { "palette": "deep red background + warm cream spotlight disk + neutral skin + black wardrobe", "contrast": "high", "tone": "cinematic editorial, smooth highlight rolloff" }, "negative_prompt": "text, logo, watermark, frame, border, clutter, softbox lighting, flat lighting, blur, lowres, plastic skin, over-smoothing, extra fingers, deformed hands, incorrect katana geometry, gore, blood, violence" } }

查看 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": "{ \"generation_request\": { \"meta_data\": { \"task_type\": \"photoreal_editorial_spotlight_disk_fashion_portrait\", \"language\": \"en\", \"priority\": \"highest\", \"version\": \"v1.0_RED_BACKDROP_CIRCLE_SPOTLIGHT_KATANA_EDITORIAL\" }, \"output\": { \"aspect_ratio\": \"4:5\", \"resolution\": \"high\", \"num_images\": 4 }, \"scene\": { \"concept\": \"minimal graphic studio portrait with a circular spotlight disk and crisp shadow silhouette\", \"environment\": \"deep red seamless background, no props, no clutter\", \"composition\": \"3/4 body or full-body, side profile; subject placed slightly right of center; large circular spotlight disk behind subject\" }, \"subject\": { \"person\": \"adult woman\", \"wardrobe\": { \"dress\": \"fitted black cheongsam-inspired dress, high slit, lace-up side detailing, matte fabric with subtle texture\" }, \"hair_makeup\": { \"hair\": \"messy low bun, a few loose strands framing face\", \"makeup\": \"soft glam, defined eyeliner, natural lips, realistic skin texture\" }, \"details\": { \"tattoos\": \"subtle small tattoos on upper arm, realistic ink\" }, \"pose\": \"side profile stance, shoulders relaxed, one hand resting near hip, holding a katana angled downward in a safe, non-aggressive pose\", \"expression\": \"calm, composed, editorial\" }, \"props\": { \"katana\": { \"style\": \"realistic katana with correct proportions, simple handle wrap, subtle metal sheen\", \"handling_notes\": \"safe grip, blade angled down, no threatening gesture\" } }, \"lighting\": { \"style\": \"single hard key light + spotlight gobo/disk\", \"notes\": \"create a large circular warm spotlight disk (cream/peach) on the red background; crisp hard-edged shadow silhouette of subject visible on the disk; high contrast; minimal fill\" }, \"camera\": { \"shot\": \"editorial studio fashion portrait\", \"lens_mm\": 50, \"aperture\": 2.8, \"focus\": \"sharp on face, dress texture, and sword handle; background smooth\", \"quality_tags\": \"ultra-detailed, clean edges, subtle film grain\" }, \"color_grade\": { \"palette\": \"deep red background + warm cream spotlight disk + neutral skin + black wardrobe\", \"contrast\": \"high\", \"tone\": \"cinematic editorial, smooth highlight rolloff\" }, \"negative_prompt\": \"text, logo, watermark, frame, border, clutter, softbox lighting, flat lighting, blur, lowres, plastic skin, over-smoothing, extra fingers, deformed hands, incorrect katana geometry, gore, blood, violence\" } }"
}
JSON
IM
图像
Photography nano-banana-2

Luxury fashion editorial portrait of a woman standing beside...

Luxury fashion editorial portrait of a woman standing beside a majestic dragon, her forehead gently resting against its scaled head. She wears an elaborate ice-gray couture gown with intricate embroidery, crystal embellishments, and structured shoulders, evoking regal power and quiet intimacy. Hair styled in a sleek braided updo, adorned with refined statement jewelry. Cinematic fantasy realism, emotional stillness, mythic elegance. Cold, muted color palette of silver, stone, and ash tones. Soft natural overcast light, subtle highlights on textures of fabric and dragon scales. Shallow depth of field, ultra-detailed realism, high-end editorial aesthetic, epic yet intimate mood, medium format photography look, Vogue-level fantasy couture, no text.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Luxury fashion editorial portrait of a woman standing beside a majestic dragon, her forehead gently resting against its scaled head. She wears an elaborate ice-gray couture gown with intricate embroidery, crystal embellishments, and structured shoulders, evoking regal power and quiet intimacy. Hair styled in a sleek braided updo, adorned with refined statement jewelry. Cinematic fantasy realism, emotional stillness, mythic elegance. Cold, muted color palette of silver, stone, and ash tones. Soft natural overcast light, subtle highlights on textures of fabric and dragon scales. Shallow depth of field, ultra-detailed realism, high-end editorial aesthetic, epic yet intimate mood, medium format photography look, Vogue-level fantasy couture, no text."
}
JSON
IM
图像
Photography nano-banana-2

{ "generation_request": { "meta_data": { "tool":...

{ "generation_request": { "meta_data": { "tool": "NanoBanana Pro", "task_type": "photoreal_cinematic_fashion_contact_sheet", "version": "v1.0_RED_DRESS_INTIMATE_EDITORIAL_3x3_NO_TEXT", "priority": "highest" }, "references": { "reference_image_1": { "source": "UPLOAD_REFERENCE_IMAGE (OPTIONAL)", "purpose": "FACE_IDENTITY_LOCK", "strict_lock": true, "face_similarity_priority": "MAX", "no_identity_blending": true, "no_beautify": true, "preserve_skin_texture": true, "preserve_facial_proportions": true } }, "output_settings": { "aspect_ratio": "1:1", "resolution_target": "ultra_high_res", "render_style": "cinematic_fashion_editorial", "sharpness": "soft_cinematic_focus", "film_grain": "subtle_analog_35mm", "dynamic_range": "natural_not_hdr", "color_grade": "muted_warm_reds_dark_neutrals", "skin_rendering": "real_skin_microtexture_no_plastic" }, "layout": { "type": "contact_sheet", "grid": "3x3", "spacing": "thin_clean_dividers", "panel_consistency": "same_subject_same_outfit_same_scene", "no_text_overlay": true }, "camera": { "camera_type": "full_frame_cinema_camera", "lens": "50mm_and_85mm_mix", "aperture": "f1.8", "depth_of_field": "shallow", "focus_behavior": "eyes_priority_some_frames_soft_motion", "processing": "no_ai_sharpening_no_hdr" }, "lighting": { "type": "low_key_cinematic_indoor_light", "source": "window_light_side_falloff", "contrast": "medium_to_low", "shadows": "soft_deep", "highlights": "controlled_skin_specular" }, "wardrobe_and_styling": { "dress": "deep_red_silk_satin_slip_dress", "fabric_behavior": "fluid_realistic_drape_soft_specular", "straps": "thin_delicate", "overall_style": "intimate_high_fashion_editorial" }, "hair_and_makeup": { "hair": "natural_loose_with_soft_bangs", "movement": "subtle_natural_motion", "makeup_style": "soft_editorial", "eyes": "natural_smoky_low_contrast", "lips": "muted_rose_nude", "skin_finish": "natural_luminous_real" }, "posing_and_storytelling": { "poses": [ "close_up_shoulder_touch", "mid_body_turning_away", "full_body_walking_away", "leaning_against_wall", "head_tilted_back_emotional", "eyes_closed_intimate", "soft_motion_blur_moment", "hands_touching_face", "dress_detail_closeup" ], "emotion": "introspective_sensual_vulnerable", "movement": "slow_natural_unposed" }, "background": { "environment": "dark_interior_gallery_or_room", "colors": [ "deep_red", "charcoal_gray", "dark_green" ], "texture": "matte_walls_soft_reflections", "distractions": "none" }, "creative_prompt": { "scene_summary": "A cinematic 3x3 fashion contact sheet capturing an intimate, emotional editorial story of a woman in a deep red satin dress. Each frame feels like a quiet moment from an arthouse film — soft focus, natural movement, emotional restraint, and sensual minimalism.", "aesthetic": "arthouse_fashion_editorial", "mood": "quiet_intimate_cinematic" }, "negative_prompt": [ "text", "typography", "logo", "brand_name", "watermark", "poster_design", "magazine_layout", "beauty_filter", "plastic_skin", "over_smoothing", "cgi", "anime", "cartoon", "ai_artifacts", "extra_people", "distorted_body", "bad_hands", "extra_fingers", "over_sharpened" ] } }

查看 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": "{ \"generation_request\": { \"meta_data\": { \"tool\": \"NanoBanana Pro\", \"task_type\": \"photoreal_cinematic_fashion_contact_sheet\", \"version\": \"v1.0_RED_DRESS_INTIMATE_EDITORIAL_3x3_NO_TEXT\", \"priority\": \"highest\" }, \"references\": { \"reference_image_1\": { \"source\": \"UPLOAD_REFERENCE_IMAGE (OPTIONAL)\", \"purpose\": \"FACE_IDENTITY_LOCK\", \"strict_lock\": true, \"face_similarity_priority\": \"MAX\", \"no_identity_blending\": true, \"no_beautify\": true, \"preserve_skin_texture\": true, \"preserve_facial_proportions\": true } }, \"output_settings\": { \"aspect_ratio\": \"1:1\", \"resolution_target\": \"ultra_high_res\", \"render_style\": \"cinematic_fashion_editorial\", \"sharpness\": \"soft_cinematic_focus\", \"film_grain\": \"subtle_analog_35mm\", \"dynamic_range\": \"natural_not_hdr\", \"color_grade\": \"muted_warm_reds_dark_neutrals\", \"skin_rendering\": \"real_skin_microtexture_no_plastic\" }, \"layout\": { \"type\": \"contact_sheet\", \"grid\": \"3x3\", \"spacing\": \"thin_clean_dividers\", \"panel_consistency\": \"same_subject_same_outfit_same_scene\", \"no_text_overlay\": true }, \"camera\": { \"camera_type\": \"full_frame_cinema_camera\", \"lens\": \"50mm_and_85mm_mix\", \"aperture\": \"f1.8\", \"depth_of_field\": \"shallow\", \"focus_behavior\": \"eyes_priority_some_frames_soft_motion\", \"processing\": \"no_ai_sharpening_no_hdr\" }, \"lighting\": { \"type\": \"low_key_cinematic_indoor_light\", \"source\": \"window_light_side_falloff\", \"contrast\": \"medium_to_low\", \"shadows\": \"soft_deep\", \"highlights\": \"controlled_skin_specular\" }, \"wardrobe_and_styling\": { \"dress\": \"deep_red_silk_satin_slip_dress\", \"fabric_behavior\": \"fluid_realistic_drape_soft_specular\", \"straps\": \"thin_delicate\", \"overall_style\": \"intimate_high_fashion_editorial\" }, \"hair_and_makeup\": { \"hair\": \"natural_loose_with_soft_bangs\", \"movement\": \"subtle_natural_motion\", \"makeup_style\": \"soft_editorial\", \"eyes\": \"natural_smoky_low_contrast\", \"lips\": \"muted_rose_nude\", \"skin_finish\": \"natural_luminous_real\" }, \"posing_and_storytelling\": { \"poses\": [ \"close_up_shoulder_touch\", \"mid_body_turning_away\", \"full_body_walking_away\", \"leaning_against_wall\", \"head_tilted_back_emotional\", \"eyes_closed_intimate\", \"soft_motion_blur_moment\", \"hands_touching_face\", \"dress_detail_closeup\" ], \"emotion\": \"introspective_sensual_vulnerable\", \"movement\": \"slow_natural_unposed\" }, \"background\": { \"environment\": \"dark_interior_gallery_or_room\", \"colors\": [ \"deep_red\", \"charcoal_gray\", \"dark_green\" ], \"texture\": \"matte_walls_soft_reflections\", \"distractions\": \"none\" }, \"creative_prompt\": { \"scene_summary\": \"A cinematic 3x3 fashion contact sheet capturing an intimate, emotional editorial story of a woman in a deep red satin dress. Each frame feels like a quiet moment from an arthouse film — soft focus, natural movement, emotional restraint, and sensual minimalism.\", \"aesthetic\": \"arthouse_fashion_editorial\", \"mood\": \"quiet_intimate_cinematic\" }, \"negative_prompt\": [ \"text\", \"typography\", \"logo\", \"brand_name\", \"watermark\", \"poster_design\", \"magazine_layout\", \"beauty_filter\", \"plastic_skin\", \"over_smoothing\", \"cgi\", \"anime\", \"cartoon\", \"ai_artifacts\", \"extra_people\", \"distorted_body\", \"bad_hands\", \"extra_fingers\", \"over_sharpened\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

Cinematic portrait of a handsome young man with short styled...

Cinematic portrait of a handsome young man with short styled hair and a trimmed beard, wearing thin metal aviator glasses, softly illuminated by a glowing golden circular halo behind his head. Warm amber lighting, dramatic low-key background, shallow depth of field, hyper-realistic skin texture, subtle reflections in the glasses, moody and futuristic aesthetic, studio photography, 85mm lens look, ultra-detailed, high contrast, dark minimal background, symmetrical composition, elegant and modern tone.

查看 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 handsome young man with short styled hair and a trimmed beard, wearing thin metal aviator glasses, softly illuminated by a glowing golden circular halo behind his head. Warm amber lighting, dramatic low-key background, shallow depth of field, hyper-realistic skin texture, subtle reflections in the glasses, moody and futuristic aesthetic, studio photography, 85mm lens look, ultra-detailed, high contrast, dark minimal background, symmetrical composition, elegant and modern tone."
}
JSON
IM
图像
Photography nano-banana-2

Shot on a Hasselblad 907X 50C with an XCD 90mm f/2.5 lens, a...

Shot on a Hasselblad 907X 50C with an XCD 90mm f/2.5 lens, aperture f/2.8 shallow depth of field emphasizes the precision fit of the suit while the background dissolves into painterly color patches; captured in 16-bit RAW with high dynamic range and soft film grain to preserve wool texture and the glow of colored light without "harsh" digital sharpness. Frame a tight portrait cropped to mid-chest, at eye level, with a slight three-quarter turn; the model is offset from center so the stained-glass pattern reads in the negative space. The pose is calm and composed: shoulders open, posture confident but without tension; one hand neatly adjusts the tie knot or collar line, the other is in the trouser pocket, slightly opening the jacket and revealing the layered styling. Expression restrained and thoughtful; the gaze passes just past the lens, as if distant music is playing. Outfit a man in a suit with a retro accent: a structured double-breasted wool blazer with sharp lapels, high-waisted pleated trousers, a white shirt and narrow tie, polished Oxfords, and a minimal pocket square. Location a retro Art Deco hall with dark wood, brass, and a tall stained-glass window projecting jewel-like geometry onto the suit and background. Light warm practical fill from one side and colored stained-glass light from the other, cinematic contrast, "stained-glass" shadows. Result -retro editorial: graphic, refined, expensive, and timeless

查看 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": "Shot on a Hasselblad 907X 50C with an XCD 90mm f/2.5 lens, aperture f/2.8 shallow depth of field emphasizes the precision fit of the suit while the background dissolves into painterly color patches; captured in 16-bit RAW with high dynamic range and soft film grain to preserve wool texture and the glow of colored light without \"harsh\" digital sharpness. Frame a tight portrait cropped to mid-chest, at eye level, with a slight three-quarter turn; the model is offset from center so the stained-glass pattern reads in the negative space. The pose is calm and composed: shoulders open, posture confident but without tension; one hand neatly adjusts the tie knot or collar line, the other is in the trouser pocket, slightly opening the jacket and revealing the layered styling. Expression restrained and thoughtful; the gaze passes just past the lens, as if distant music is playing. Outfit a man in a suit with a retro accent: a structured double-breasted wool blazer with sharp lapels, high-waisted pleated trousers, a white shirt and narrow tie, polished Oxfords, and a minimal pocket square. Location a retro Art Deco hall with dark wood, brass, and a tall stained-glass window projecting jewel-like geometry onto the suit and background. Light warm practical fill from one side and colored stained-glass light from the other, cinematic contrast, \"stained-glass\" shadows. Result -retro editorial: graphic, refined, expensive, and timeless"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic candid medium shot portrait of a man and a woman...

A cinematic candid medium shot portrait of a man and a woman walking side by side along a bright urban walkway, framed from the waist up. They move closely together, their shoulders nearly aligned, creating an intimate yet understated connection. The woman wears a fitted black dress, holding a jacket loosely over her arm, her posture relaxed and elegant. The man walks beside her in a tailored suit, his head slightly turned toward her with a soft, attentive expression, while she looks ahead with a calm and composed demeanor, a faint hint of a smile forming. The moment feels natural and unspoken, filled with quiet tension and subtle attraction. Strong midday sunlight casts sharp highlights and deep shadows across their faces and clothing, creating a high-contrast, slightly overexposed look. The background features a softly blurred urban corridor with repeating columns and architectural lines. The image has a strong analog film aesthetic with visible grain, slight blur, color distortion, and nostalgic texture. Colors feel slightly faded with warm, muted tones. Imperfect framing, subtle motion softness, and natural light flare create the feeling of a fleeting moment captured on 35mm film. Cinematic film still, dreamy and poetic mood, intimate and quiet romantic energy, vintage street photography, lo-fi aesthetic, high detail, hd 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 candid medium shot portrait of a man and a woman walking side by side along a bright urban walkway, framed from the waist up. They move closely together, their shoulders nearly aligned, creating an intimate yet understated connection. The woman wears a fitted black dress, holding a jacket loosely over her arm, her posture relaxed and elegant. The man walks beside her in a tailored suit, his head slightly turned toward her with a soft, attentive expression, while she looks ahead with a calm and composed demeanor, a faint hint of a smile forming. The moment feels natural and unspoken, filled with quiet tension and subtle attraction. Strong midday sunlight casts sharp highlights and deep shadows across their faces and clothing, creating a high-contrast, slightly overexposed look. The background features a softly blurred urban corridor with repeating columns and architectural lines. The image has a strong analog film aesthetic with visible grain, slight blur, color distortion, and nostalgic texture. Colors feel slightly faded with warm, muted tones. Imperfect framing, subtle motion softness, and natural light flare create the feeling of a fleeting moment captured on 35mm film. Cinematic film still, dreamy and poetic mood, intimate and quiet romantic energy, vintage street photography, lo-fi aesthetic, high detail, hd quality."
}
JSON
IM
图像
Photography nano-banana-2

A cinematic golden-hour photograph of a young woman standing...

A cinematic golden-hour photograph of a young woman standing on a wooden viewpoint balcony overlooking a city, leaning casually against the railing. She wears an oversized grey knitted sweater, a long brown skirt, and brown ankle boots, with a small leather crossbody bag. A white folding bicycle rests beside her, and an orange cat sleeps peacefully on the wooden railing next to her. In the background, soft-focus hills with a tall communication tower rise above the city. Warm sunset light, pastel sky with gentle clouds, shallow depth of field, calm and dreamy mood, realistic photography, high detail, natural colors, 35mm lens, soft bokeh.

查看 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 photograph of a young woman standing on a wooden viewpoint balcony overlooking a city, leaning casually against the railing. She wears an oversized grey knitted sweater, a long brown skirt, and brown ankle boots, with a small leather crossbody bag. A white folding bicycle rests beside her, and an orange cat sleeps peacefully on the wooden railing next to her. In the background, soft-focus hills with a tall communication tower rise above the city. Warm sunset light, pastel sky with gentle clouds, shallow depth of field, calm and dreamy mood, realistic photography, high detail, natural colors, 35mm lens, soft bokeh."
}
JSON
IM
图像
Photography nano-banana-2

Create a highly cinematic and realistic photo of a person us...

Create a highly cinematic and realistic photo of a person using the face from the uploaded image. The person is sitting inside a car at night, looking out through a rain-covered window. The camera is positioned outside the car, capturing the person through the wet glass. Raindrops and streaks of water are clearly visible on the window, with reflections of city lights, neon signs, and passing cars blending into the glass. The person’s face is softly lit by ambient street lights and subtle interior car lighting, creating a moody and emotional expression. The background outside is blurred with colorful bokeh lights (red, blue, yellow), giving a deep cinematic feel. The person is wearing a modern outfit like a hoodie or jacket. The mood feels introspective and film-like. Ultra realistic photography, shallow depth of field, dramatic lighting, reflections, rain texture, Hollywood movie scene composition, high detail.

查看 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 highly cinematic and realistic photo of a person using the face from the uploaded image. The person is sitting inside a car at night, looking out through a rain-covered window. The camera is positioned outside the car, capturing the person through the wet glass. Raindrops and streaks of water are clearly visible on the window, with reflections of city lights, neon signs, and passing cars blending into the glass. The person’s face is softly lit by ambient street lights and subtle interior car lighting, creating a moody and emotional expression. The background outside is blurred with colorful bokeh lights (red, blue, yellow), giving a deep cinematic feel. The person is wearing a modern outfit like a hoodie or jacket. The mood feels introspective and film-like. Ultra realistic photography, shallow depth of field, dramatic lighting, reflections, rain texture, Hollywood movie scene composition, high detail."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic lifestyle beverage advertisement featuring a...

Ultra-realistic lifestyle beverage advertisement featuring a chilled bottle of “UNIK – Jaggery & Natural Tigernut Drink.” The bottle stands on a clean marble or gym countertop surrounded by natural ingredients such as tigernuts, almonds, coconut slices, and dates. A smooth splash of creamy tigernut milk flows upward behind the bottle while ice cubes scatter around it. The bottle is covered with condensation droplets indicating cold freshness. The background features a bright modern fitness studio with soft natural lighting and blurred gym equipment. The composition communicates energy, health, and natural nutrition. High-end commercial beverage photography, macro details, shallow depth of field, ultra-realistic textures, photorealistic lighting, clean advertising style, 8K resolution.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic lifestyle beverage advertisement featuring a chilled bottle of “UNIK – Jaggery & Natural Tigernut Drink.” The bottle stands on a clean marble or gym countertop surrounded by natural ingredients such as tigernuts, almonds, coconut slices, and dates. A smooth splash of creamy tigernut milk flows upward behind the bottle while ice cubes scatter around it. The bottle is covered with condensation droplets indicating cold freshness. The background features a bright modern fitness studio with soft natural lighting and blurred gym equipment. The composition communicates energy, health, and natural nutrition. High-end commercial beverage photography, macro details, shallow depth of field, ultra-realistic textures, photorealistic lighting, clean advertising style, 8K resolution."
}
JSON
IM
图像
Photography nano-banana-2

A minimalist black and white cinematic portrait featuring tw...

A minimalist black and white cinematic portrait featuring two individuals (male and female) in strict side profile, both facing the same direction with calm, introspective expressions, wearing elegant black turtlenecks. The scene is set against a pure black background with dramatic rim lighting outlining their facial contours and hair strands. High contrast lighting creates deep shadows and soft highlights, emphasizing sharp facial structure and texture. Fine art editorial photography style, ultra-realistic, clean composition, subtle film grain, 8K resolution.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A minimalist black and white cinematic portrait featuring two individuals (male and female) in strict side profile, both facing the same direction with calm, introspective expressions, wearing elegant black turtlenecks. The scene is set against a pure black background with dramatic rim lighting outlining their facial contours and hair strands. High contrast lighting creates deep shadows and soft highlights, emphasizing sharp facial structure and texture. Fine art editorial photography style, ultra-realistic, clean composition, subtle film grain, 8K resolution."
}
JSON
IM
图像
Photography nano-banana-2

Create a hyper-realistic winter scene in a vertical 3:4 aspe...

Create a hyper-realistic winter scene in a vertical 3:4 aspect ratio with cinematic realism and natural detail. The foreground features compacted snow with subtle ice sparkle, cool blue shadows, and cold ambient light. A smartphone is placed perfectly horizontally across black ski boots, stable and centered, with visible smudges, micro-reflections, edge highlights, and slight screen glare. The iPhone camera Ul is clearly visible, including icons and the shutter button, reinforcing an authentic, unedited iPhone capture. On the phone screen, Subject 1 and Subject 2 are seated closely together on the snow, framed from a low angle so only their upper bodies are visible, creating an intimate mirror-selfie-style composition. Subject 2 sits slightly forward, holding the phone at arm's length with the phone back visible, wearing a glossy pink puffer jacket with realistic quilting, natural folds, helmet, and goggles; her face is fully clear and visible with a relaxed, confident expression. Subject 1 sits directly beside her, shoulders nearly touching, wearing a neutral ski jacket with light snow dusting, a helmet, and dark sunglasses reflecting the snowy environment: his face is also fully clear and visible, with a calm, relaxed posture. The background within the screen shows a snowy slope and distant ski-area elements softened by realistic depth and atmospheric haze. Lighting blends cool winter tones with warm sunlight reflections, producing natural shadows, lifelike highlights, and subtle imperfections. The final image must feel HD, realistic, candid, and cinematic, with both subjects facial features preserved exactly and remaining 1000% identical to the uploaded images.

查看 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 winter scene in a vertical 3:4 aspect ratio with cinematic realism and natural detail. The foreground features compacted snow with subtle ice sparkle, cool blue shadows, and cold ambient light. A smartphone is placed perfectly horizontally across black ski boots, stable and centered, with visible smudges, micro-reflections, edge highlights, and slight screen glare. The iPhone camera Ul is clearly visible, including icons and the shutter button, reinforcing an authentic, unedited iPhone capture. On the phone screen, Subject 1 and Subject 2 are seated closely together on the snow, framed from a low angle so only their upper bodies are visible, creating an intimate mirror-selfie-style composition. Subject 2 sits slightly forward, holding the phone at arm's length with the phone back visible, wearing a glossy pink puffer jacket with realistic quilting, natural folds, helmet, and goggles; her face is fully clear and visible with a relaxed, confident expression. Subject 1 sits directly beside her, shoulders nearly touching, wearing a neutral ski jacket with light snow dusting, a helmet, and dark sunglasses reflecting the snowy environment: his face is also fully clear and visible, with a calm, relaxed posture. The background within the screen shows a snowy slope and distant ski-area elements softened by realistic depth and atmospheric haze. Lighting blends cool winter tones with warm sunlight reflections, producing natural shadows, lifelike highlights, and subtle imperfections. The final image must feel HD, realistic, candid, and cinematic, with both subjects facial features preserved exactly and remaining 1000% identical to the uploaded images."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic studio scene of a woman supervisin...

Ultra-realistic cinematic studio scene of a woman supervising a miniature behind-the-scenes film set starring her tiny self. She checks a miniature monitor while the small figure stands near scaled lighting rigs. Both versions share identical facial features, body language, and clothing. Mini director chairs, cables, clapperboards, and lenses fill the studio space. Low-key cinematic lighting emphasizes realism and 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": "Ultra-realistic cinematic studio scene of a woman supervising a miniature behind-the-scenes film set starring her tiny self. She checks a miniature monitor while the small figure stands near scaled lighting rigs. Both versions share identical facial features, body language, and clothing. Mini director chairs, cables, clapperboards, and lenses fill the studio space. Low-key cinematic lighting emphasizes realism and depth."
}
JSON
IM
图像
Photography nano-banana-2

{ "image_prompt": { "main_description": "Poetic cinema...

{ "image_prompt": { "main_description": "Poetic cinematic close-up portrait of a young woman partially obscured by soft pink blossoms and petals in the foreground.", "subject_details": { "appearance": "Young woman, expressive green eyes, calm introspective expression, natural beauty", "skin_texture": "Ultra-realistic skin texture", "apparel": "Shimmering rose-gold high-neck dress that catches warm sunlight" }, "composition_and_framing": { "framing": "Close-up, face in sharp focus through gaps in the flowers", "foreground": "Soft pink blossoms and petals, soft blur", "background": "Deep blue sky, creamy bokeh", "depth": "Shallow depth of field" }, "lighting_and_color": { "lighting_source": "Golden-hour lighting", "effects": "Delicate shadows of petals across skin, dress catching sunlight", "palette": "Pastel pinks, warm peach tones, rose-gold, deep blue" }, "atmosphere_and_style": { "mood": "Romantic spring atmosphere, ethereal, poetic", "style": "Editorial fashion photography", "grading": "Cinematic color grading" }, "technical_specs": { "quality": "8K resolution, high detail", "visuals": "Ultra-realistic" } } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"image_prompt\": { \"main_description\": \"Poetic cinematic close-up portrait of a young woman partially obscured by soft pink blossoms and petals in the foreground.\", \"subject_details\": { \"appearance\": \"Young woman, expressive green eyes, calm introspective expression, natural beauty\", \"skin_texture\": \"Ultra-realistic skin texture\", \"apparel\": \"Shimmering rose-gold high-neck dress that catches warm sunlight\" }, \"composition_and_framing\": { \"framing\": \"Close-up, face in sharp focus through gaps in the flowers\", \"foreground\": \"Soft pink blossoms and petals, soft blur\", \"background\": \"Deep blue sky, creamy bokeh\", \"depth\": \"Shallow depth of field\" }, \"lighting_and_color\": { \"lighting_source\": \"Golden-hour lighting\", \"effects\": \"Delicate shadows of petals across skin, dress catching sunlight\", \"palette\": \"Pastel pinks, warm peach tones, rose-gold, deep blue\" }, \"atmosphere_and_style\": { \"mood\": \"Romantic spring atmosphere, ethereal, poetic\", \"style\": \"Editorial fashion photography\", \"grading\": \"Cinematic color grading\" }, \"technical_specs\": { \"quality\": \"8K resolution, high detail\", \"visuals\": \"Ultra-realistic\" } } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "type": "image_generation_prompt", "language": "Englis...

{ "type": "image_generation_prompt", "language": "English", "aspect_ratio": "9:16", "style": "cinematic, ultra-realistic, high-speed action photography", "identity_preservation": { "use_reference_image": true, "strict_identity_lock": true, "notes": "Do not change face, hair, or facial features. Preserve the exact facial identity, hairstyle, proportions, and expression from the reference image." }, "subject": { "gender": "female", "position_in_frame": "foreground, right side", "pose": { "seating": "sitting in a small folding camping chair on top of a sand dune", "legs": "crossed casually", "posture": "leaning back comfortably" }, "expression": "confident, playful, relaxed with a subtle smile", "appearance": { "outfit": { "clothing": "black outfit (top and pants)", "boots": "brown boots", "headwear": "dark baseball cap", "accessories": [ "sunglasses", "headset microphone" ] } } }, "secondary_subject": { "vehicle": { "type": "powerful off-road pickup truck", "style_reference": "Ford Raptor–style", "action": "driving aggressively at full speed over the sand dune", "motion_state": "slightly airborne", "effects": [ "dramatic explosion of sand and dust", "visible motion blur emphasizing speed" ], "position_in_frame": "background, slightly left and centered" } }, "environment": { "location": "desert sand dunes", "time_of_day": "golden hour", "atmosphere": "warm, cinematic, dramatic contrast between calm and chaos" }, "lighting": { "type": "natural golden hour sunlight", "quality": "soft and warm", "effects": [ "gentle highlights on flying sand particles", "soft shadows", "cinematic teal and orange color balance" ] }, "camera": { "angle": "low, cinematic angle", "lens": "telephoto ~85mm", "depth_of_field": "shallow", "focus": { "foreground": "woman in sharp focus", "background": "truck slightly motion-blurred" } }, "color_grading": { "palette": [ "warm beige sand", "muted sky tones", "subtle teal and orange accents" ], "style": "filmic, natural, HDR" }, "quality": { "resolution": "8K", "detail_level": "ultra-high", "texture": "realistic sand, fabric, skin, and dust textures", "grain": "subtle film grain", "rendering": "photorealistic, no CGI look" }, "constraints": [ "No cartoon or illustrated style", "No artificial sharpening", "No exaggerated effects", "Maintain natural skin tones", "Do not alter facial identity" ], "output_goal": "Create a cinematic, ultra-realistic desert action image featuring a calm, confident woman seated in the foreground while a powerful off-road truck explodes through the dunes behind her, emphasizing contrast, motion, and cinematic storytelling." }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"type\": \"image_generation_prompt\", \"language\": \"English\", \"aspect_ratio\": \"9:16\", \"style\": \"cinematic, ultra-realistic, high-speed action photography\", \"identity_preservation\": { \"use_reference_image\": true, \"strict_identity_lock\": true, \"notes\": \"Do not change face, hair, or facial features. Preserve the exact facial identity, hairstyle, proportions, and expression from the reference image.\" }, \"subject\": { \"gender\": \"female\", \"position_in_frame\": \"foreground, right side\", \"pose\": { \"seating\": \"sitting in a small folding camping chair on top of a sand dune\", \"legs\": \"crossed casually\", \"posture\": \"leaning back comfortably\" }, \"expression\": \"confident, playful, relaxed with a subtle smile\", \"appearance\": { \"outfit\": { \"clothing\": \"black outfit (top and pants)\", \"boots\": \"brown boots\", \"headwear\": \"dark baseball cap\", \"accessories\": [ \"sunglasses\", \"headset microphone\" ] } } }, \"secondary_subject\": { \"vehicle\": { \"type\": \"powerful off-road pickup truck\", \"style_reference\": \"Ford Raptor–style\", \"action\": \"driving aggressively at full speed over the sand dune\", \"motion_state\": \"slightly airborne\", \"effects\": [ \"dramatic explosion of sand and dust\", \"visible motion blur emphasizing speed\" ], \"position_in_frame\": \"background, slightly left and centered\" } }, \"environment\": { \"location\": \"desert sand dunes\", \"time_of_day\": \"golden hour\", \"atmosphere\": \"warm, cinematic, dramatic contrast between calm and chaos\" }, \"lighting\": { \"type\": \"natural golden hour sunlight\", \"quality\": \"soft and warm\", \"effects\": [ \"gentle highlights on flying sand particles\", \"soft shadows\", \"cinematic teal and orange color balance\" ] }, \"camera\": { \"angle\": \"low, cinematic angle\", \"lens\": \"telephoto ~85mm\", \"depth_of_field\": \"shallow\", \"focus\": { \"foreground\": \"woman in sharp focus\", \"background\": \"truck slightly motion-blurred\" } }, \"color_grading\": { \"palette\": [ \"warm beige sand\", \"muted sky tones\", \"subtle teal and orange accents\" ], \"style\": \"filmic, natural, HDR\" }, \"quality\": { \"resolution\": \"8K\", \"detail_level\": \"ultra-high\", \"texture\": \"realistic sand, fabric, skin, and dust textures\", \"grain\": \"subtle film grain\", \"rendering\": \"photorealistic, no CGI look\" }, \"constraints\": [ \"No cartoon or illustrated style\", \"No artificial sharpening\", \"No exaggerated effects\", \"Maintain natural skin tones\", \"Do not alter facial identity\" ], \"output_goal\": \"Create a cinematic, ultra-realistic desert action image featuring a calm, confident woman seated in the foreground while a powerful off-road truck explodes through the dunes behind her, emphasizing contrast, motion, and cinematic storytelling.\" }"
}
JSON
IM
图像
Photography nano-banana-2

"scene_description": { "location": "Urban rooftop or h...

"scene_description": { "location": "Urban rooftop or high vantage point with a backdrop of towering glass skyscrapers and sleek modern architecture", "vibe": "Energetic, youthful, urban streetwear, dynamic and slightly distorted perspective", "lighting": "Bright daylight, harsh sunlight creating a sunburst/lens flare in the upper left, high contrast shadows on the sleek surfaces, vibrant colors", "camera_settings": "Ultra-wide angle or Fisheye lens (approx 8mm-12mm), extreme low angle (worm's-eye view), forced perspective, deep depth of field, sharp focus from shoe sole to skyline, close up full body shot of the woman" }, "primary_subjects": [ { "character": "Young woman with shoulder-length brown hair", "role": "Streetwear model / Urban explorer", "action": "Sitting casually on the corner of a modern minimalist ledge or platform, looking down at the camera with a confident, relaxed expression. One leg is extended forward towards the lens creating extreme foreshortening, maintaining the same pose as before", "details": "Bright red track jacket with white stripes on sleeves, Bright Red fitted leggings, massive white chunky platform sneakers with a distinct red tread pattern on the sole (shoe is the dominant foreground element)" } ], "environment_details": { "crowd": "None", "architecture": "Curved modern glass skyscrapers surrounding the subject, smooth light concrete or metallic ledge in the foreground instead of a red brick wall, clean modern textures", "fidelity": "High-resolution photography, realistic texture on the sneaker leather and modern materials, lens distortion effect on the buildings" } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "\"scene_description\": { \"location\": \"Urban rooftop or high vantage point with a backdrop of towering glass skyscrapers and sleek modern architecture\", \"vibe\": \"Energetic, youthful, urban streetwear, dynamic and slightly distorted perspective\", \"lighting\": \"Bright daylight, harsh sunlight creating a sunburst/lens flare in the upper left, high contrast shadows on the sleek surfaces, vibrant colors\", \"camera_settings\": \"Ultra-wide angle or Fisheye lens (approx 8mm-12mm), extreme low angle (worm's-eye view), forced perspective, deep depth of field, sharp focus from shoe sole to skyline, close up full body shot of the woman\" }, \"primary_subjects\": [ { \"character\": \"Young woman with shoulder-length brown hair\", \"role\": \"Streetwear model / Urban explorer\", \"action\": \"Sitting casually on the corner of a modern minimalist ledge or platform, looking down at the camera with a confident, relaxed expression. One leg is extended forward towards the lens creating extreme foreshortening, maintaining the same pose as before\", \"details\": \"Bright red track jacket with white stripes on sleeves, Bright Red fitted leggings, massive white chunky platform sneakers with a distinct red tread pattern on the sole (shoe is the dominant foreground element)\" } ], \"environment_details\": { \"crowd\": \"None\", \"architecture\": \"Curved modern glass skyscrapers surrounding the subject, smooth light concrete or metallic ledge in the foreground instead of a red brick wall, clean modern textures\", \"fidelity\": \"High-resolution photography, realistic texture on the sneaker leather and modern materials, lens distortion effect on the buildings\" } }"
}
JSON
IM
图像
Photography nano-banana-2

Use model (the person in the image) you create a dark orange...

Use model (the person in the image) you create a dark orange studio photo featuring a young man sitting casually on a metal folding chair with his legs cross. He's wearing a denim black baggy jeans, black t-shirt and black boots. The lightning is soft and minimal, producing sharp shadows and a moody atmosphere. His pose is relaxed, slightly leaning with one hand on the chair's backrest, his face turn to the side and modern aesthetic.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Use model (the person in the image) you create a dark orange studio photo featuring a young man sitting casually on a metal folding chair with his legs cross. He's wearing a denim black baggy jeans, black t-shirt and black boots. The lightning is soft and minimal, producing sharp shadows and a moody atmosphere. His pose is relaxed, slightly leaning with one hand on the chair's backrest, his face turn to the side and modern aesthetic."
}
JSON
IM
图像
Photography nano-banana-2

Use The Uploaded Reference Photo As The Model For The Face,...

Use The Uploaded Reference Photo As The Model For The Face, Hairstyle, And Beard, Keeping Them Exactly As In The Reference. Render A Cinematic Studio Portrait Of A Young Man With A Sporty Body Sitting Casually On A Futuristic, Minimalistic, Designer Chair, Legs Crossed. Outfit: Brown Suit (#483c32 Jacket And Pants), Black Shirt Under The Jacket, Dark Brown Loafers, Black Oneplus Watch 346mm On Left Wrist. Background: Solid #483c32 With A Large White Circle Behind The Head, Filled And Slightly Glowing. Lighting: Bright Soft Studio Light, Producing Sharp Shadows And Moody Atmosphere. Pose: Relaxed, Slightly Leaning, One Hand On The Chair's Backrest, Face Turned To The Side. Ultra-detailed, Photo Realistic, Cinematic Contrast, Fabric Texture Emphasized. Ensure The Hairstyle, Beard, And Face Remain Exactly As In The Uploaded Reference Photo.

查看 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 Reference Photo As The Model For The Face, Hairstyle, And Beard, Keeping Them Exactly As In The Reference. Render A Cinematic Studio Portrait Of A Young Man With A Sporty Body Sitting Casually On A Futuristic, Minimalistic, Designer Chair, Legs Crossed. Outfit: Brown Suit (#483c32 Jacket And Pants), Black Shirt Under The Jacket, Dark Brown Loafers, Black Oneplus Watch 346mm On Left Wrist. Background: Solid #483c32 With A Large White Circle Behind The Head, Filled And Slightly Glowing. Lighting: Bright Soft Studio Light, Producing Sharp Shadows And Moody Atmosphere. Pose: Relaxed, Slightly Leaning, One Hand On The Chair's Backrest, Face Turned To The Side. Ultra-detailed, Photo Realistic, Cinematic Contrast, Fabric Texture Emphasized. Ensure The Hairstyle, Beard, And Face Remain Exactly As In The Uploaded Reference Photo."
}
JSON
IM
图像
Photography nano-banana-2

Using the provided photos, create a highly detailed, profess...

Using the provided photos, create a highly detailed, professional, hyperrealistic art portrait, keeping the face intact. The woman sits elegantly on the floor, wearing a modern black top, soft, loose gray jeans, and chunky, fashionable gray sneakers. She has long, wavy, waist-length hair, half of which is braided. She has a laughing expression, and her gaze is directed upward. The background should be an artistic monochrome composition (black and white) depicting a soft close-up from the side of the same face in profile

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Using the provided photos, create a highly detailed, professional, hyperrealistic art portrait, keeping the face intact. The woman sits elegantly on the floor, wearing a modern black top, soft, loose gray jeans, and chunky, fashionable gray sneakers. She has long, wavy, waist-length hair, half of which is braided. She has a laughing expression, and her gaze is directed upward. The background should be an artistic monochrome composition (black and white) depicting a soft close-up from the side of the same face in profile"
}
JSON
IM
图像
Photography nano-banana-2

A gritty, intense portrait of a man, a friend of real lion,...

A gritty, intense portrait of a man, a friend of real lion, captured in a raw, hyper-realistic style. The background is a textured, neutral concrete wall, keeping the environment simple and industrial. Lighting is soft and diffuse, provided by a large octagon softbox, mimicking overcast daylight. The camera is a Canon EOS R5 with an 85mm f/1.2 lens. The subject, with the [face from reference image], is forehead-to-forehead with the lion, displaying a deep bond. He wears a distressed leather motorcycle jacket and a white t-shirt, embracing a classic rebel aesthetic. The 8K image captures the pores on his skin and the coarse individual hairs of the lion's mane. The HDR aesthetic ensures vibrant colors and deep shadows, making the image feel three-dimensional and alive.

查看 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 gritty, intense portrait of a man, a friend of real lion, captured in a raw, hyper-realistic style. The background is a textured, neutral concrete wall, keeping the environment simple and industrial. Lighting is soft and diffuse, provided by a large octagon softbox, mimicking overcast daylight. The camera is a Canon EOS R5 with an 85mm f/1.2 lens. The subject, with the [face from reference image], is forehead-to-forehead with the lion, displaying a deep bond. He wears a distressed leather motorcycle jacket and a white t-shirt, embracing a classic rebel aesthetic. The 8K image captures the pores on his skin and the coarse individual hairs of the lion's mane. The HDR aesthetic ensures vibrant colors and deep shadows, making the image feel three-dimensional and alive."
}
JSON
IM
图像
Photography nano-banana-2

Cinematic portrait of a confident football player sitting on...

Cinematic portrait of a confident football player sitting on a dark armchair, tropical jungle leaves surrounding him, dramatic low-key lighting, black background, moody atmosphere, wearing a cream Brazil football jersey with green accents, athletic build and trimmed beard, tattoos on arms, relaxed powerful pose with arms resting on chair, studio photography, ultra realistic, sharp focus, high contrast, depth of field, editorial sports photoshoot, 85mm lens, dark luxury aesthetic, 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 confident football player sitting on a dark armchair, tropical jungle leaves surrounding him, dramatic low-key lighting, black background, moody atmosphere, wearing a cream Brazil football jersey with green accents, athletic build and trimmed beard, tattoos on arms, relaxed powerful pose with arms resting on chair, studio photography, ultra realistic, sharp focus, high contrast, depth of field, editorial sports photoshoot, 85mm lens, dark luxury aesthetic, 8k."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic fashion beauty crop of a female model wearin...

Ultra-realistic fashion beauty crop of a female model wearing the reference red baseball cap and matching red hoodie. Framing: Tight portrait crop from nose to forehead, cap and eyes filling the frame. Focus: The embroidered logo perfectly centered above the model’s eyes, stitching detail and thread depth clearly visible. Pose: Model gripping the hoodie collar softly with both hands, creating subtle fabric folds. Lighting: Soft frontal studio light with faint shadow sculpting on cheekbones and under the cap. Background: Minimal warm studio backdrop, ivory-to-beige gradient. Mood: Bold, confident, fashion-house campaign energy. Finish: Ultra-sharp fabric detail, cinematic realism, shallow depth of field, no text, no branding overlays.

查看 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 fashion beauty crop of a female model wearing the reference red baseball cap and matching red hoodie. Framing: Tight portrait crop from nose to forehead, cap and eyes filling the frame. Focus: The embroidered logo perfectly centered above the model’s eyes, stitching detail and thread depth clearly visible. Pose: Model gripping the hoodie collar softly with both hands, creating subtle fabric folds. Lighting: Soft frontal studio light with faint shadow sculpting on cheekbones and under the cap. Background: Minimal warm studio backdrop, ivory-to-beige gradient. Mood: Bold, confident, fashion-house campaign energy. Finish: Ultra-sharp fabric detail, cinematic realism, shallow depth of field, no text, no branding overlays."
}
JSON
IM
图像
Photography nano-banana-2

{ "type": "image_generation_prompt", "format": "triptych...

{ "type": "image_generation_prompt", "format": "triptych", "aspect_ratio": "vertical, three stacked panels", "identity_preservation": { "use_original_image_reference": true, "strict_identity_lock": true, "face_changes_allowed": false, "clothing_changes_allowed": false, "notes": "Maintain 100% original facial structure, proportions, moles, eyes, nose, mouth, skin texture, hairstyle, and original clothing exactly as in the reference image." }, "subject": { "gender": "female", "appearance": { "hair": { "style": "dark, tousled hair", "details": "natural movement with a few strands lifted by breeze" }, "expression_style": "natural, candid, introspective" } }, "composition": { "layout": "three vertically stacked photographs (triptych)", "background": "bright, clear blue sky", "setting": "outdoor, rooftop-like environment" }, "panels": { "top_panel": { "camera_angle": "low angle", "pose": "looking down toward the camera", "expression": "direct, slightly pensive gaze", "lighting": "bright sunlight illuminating one side of face and shoulder with soft shadows" }, "middle_panel": { "camera_angle": "eye-level to slightly low", "pose": "head turned away, gazing to the right", "expression": "thoughtful, distant", "environment_detail": "small portion of brown columned roof visible in lower left", "composition_note": "subject slightly off-center emphasizing open sky" }, "bottom_panel": { "camera_angle": "close-up profile", "pose": "eyes closed, head slightly tilted back", "expression": "calm, reflective", "lighting": "sunlight accentuating facial and neck contours" } }, "camera": { "type": "35mm film camera aesthetic", "lens_aperture": "f/1.8–f/2.8", "focus": "sharp focus on face with shallow depth of field", "grain": "visible natural film grain" }, "lighting": { "source": "natural daylight", "time_of_day": "afternoon", "quality": "soft, diffused sunlight", "direction": "front and side lighting", "artificial_light": "none" }, "color_and_style": { "palette": [ "vivid blue sky", "warm natural skin tones" ], "style": "editorial portrait with analog film aesthetic", "atmosphere": "calm, airy, serene, nostalgic", "contrast": "subtle", "saturation": "natural with slight enhancement" }, "quality": { "realism": "high", "detail": "natural skin texture, realistic lighting", "imperfections": "preserved" }, "constraints": [ "No facial alterations", "No clothing changes", "No artificial lighting", "No digital beauty filters", "No CGI or illustration", "No text or watermarks" ], "output_goal": "Create a serene, film-like triptych portrait of the same woman against a clear blue sky, preserving her exact identity, clothing, and natural expressions with an airy editorial and analog aesthetic." }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"type\": \"image_generation_prompt\", \"format\": \"triptych\", \"aspect_ratio\": \"vertical, three stacked panels\", \"identity_preservation\": { \"use_original_image_reference\": true, \"strict_identity_lock\": true, \"face_changes_allowed\": false, \"clothing_changes_allowed\": false, \"notes\": \"Maintain 100% original facial structure, proportions, moles, eyes, nose, mouth, skin texture, hairstyle, and original clothing exactly as in the reference image.\" }, \"subject\": { \"gender\": \"female\", \"appearance\": { \"hair\": { \"style\": \"dark, tousled hair\", \"details\": \"natural movement with a few strands lifted by breeze\" }, \"expression_style\": \"natural, candid, introspective\" } }, \"composition\": { \"layout\": \"three vertically stacked photographs (triptych)\", \"background\": \"bright, clear blue sky\", \"setting\": \"outdoor, rooftop-like environment\" }, \"panels\": { \"top_panel\": { \"camera_angle\": \"low angle\", \"pose\": \"looking down toward the camera\", \"expression\": \"direct, slightly pensive gaze\", \"lighting\": \"bright sunlight illuminating one side of face and shoulder with soft shadows\" }, \"middle_panel\": { \"camera_angle\": \"eye-level to slightly low\", \"pose\": \"head turned away, gazing to the right\", \"expression\": \"thoughtful, distant\", \"environment_detail\": \"small portion of brown columned roof visible in lower left\", \"composition_note\": \"subject slightly off-center emphasizing open sky\" }, \"bottom_panel\": { \"camera_angle\": \"close-up profile\", \"pose\": \"eyes closed, head slightly tilted back\", \"expression\": \"calm, reflective\", \"lighting\": \"sunlight accentuating facial and neck contours\" } }, \"camera\": { \"type\": \"35mm film camera aesthetic\", \"lens_aperture\": \"f/1.8–f/2.8\", \"focus\": \"sharp focus on face with shallow depth of field\", \"grain\": \"visible natural film grain\" }, \"lighting\": { \"source\": \"natural daylight\", \"time_of_day\": \"afternoon\", \"quality\": \"soft, diffused sunlight\", \"direction\": \"front and side lighting\", \"artificial_light\": \"none\" }, \"color_and_style\": { \"palette\": [ \"vivid blue sky\", \"warm natural skin tones\" ], \"style\": \"editorial portrait with analog film aesthetic\", \"atmosphere\": \"calm, airy, serene, nostalgic\", \"contrast\": \"subtle\", \"saturation\": \"natural with slight enhancement\" }, \"quality\": { \"realism\": \"high\", \"detail\": \"natural skin texture, realistic lighting\", \"imperfections\": \"preserved\" }, \"constraints\": [ \"No facial alterations\", \"No clothing changes\", \"No artificial lighting\", \"No digital beauty filters\", \"No CGI or illustration\", \"No text or watermarks\" ], \"output_goal\": \"Create a serene, film-like triptych portrait of the same woman against a clear blue sky, preserving her exact identity, clothing, and natural expressions with an airy editorial and analog aesthetic.\" }"
}
JSON
IM
图像
Photography nano-banana-2

Nano Banana pro on Gemini app. Prompt: Three hands holding...

Nano Banana pro on Gemini app. Prompt: Three hands holding colorful glass soda bottles (lemon, grapefruit, lime) clinking together, bright sunny outdoor setting, soft beach/pool background blur, natural light, condensation on bottles, lifestyle photography, vibrant colors, shallow depth of field, candid joyful mood, commercial beverage ad, ultra-realistic, 8K. IMAGE 2 Three hands holding minimalist glass bottles labeled almond milk, pistachio milk, chocolate oat milk, clean neutral background, soft studio lighting, modern branding, centered composition, smooth shadows, aesthetic product photography, high detail, muted tones, premium look, 8K. IMAGE 3 Three hands holding iced coffee bottles (latte, mocha, oat milk), warm golden hour sunlight, cafe interior background, soft shadows of leaves on wall, cozy atmosphere, realistic reflections, lifestyle product shot, cinematic warm tones, shallow depth of field, 8K. IMAGE 4 Three hands holding glowing sports drink bottles stacked vertically, neon blue and red lighting, futuristic tunnel background, motion blur streaks, cyberpunk aesthetic, dramatic lighting, high contrast, dynamic composition, glossy bottles, ultra-realistic, 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": "Nano Banana pro on Gemini app. Prompt: Three hands holding colorful glass soda bottles (lemon, grapefruit, lime) clinking together, bright sunny outdoor setting, soft beach/pool background blur, natural light, condensation on bottles, lifestyle photography, vibrant colors, shallow depth of field, candid joyful mood, commercial beverage ad, ultra-realistic, 8K. IMAGE 2 Three hands holding minimalist glass bottles labeled almond milk, pistachio milk, chocolate oat milk, clean neutral background, soft studio lighting, modern branding, centered composition, smooth shadows, aesthetic product photography, high detail, muted tones, premium look, 8K. IMAGE 3 Three hands holding iced coffee bottles (latte, mocha, oat milk), warm golden hour sunlight, cafe interior background, soft shadows of leaves on wall, cozy atmosphere, realistic reflections, lifestyle product shot, cinematic warm tones, shallow depth of field, 8K. IMAGE 4 Three hands holding glowing sports drink bottles stacked vertically, neon blue and red lighting, futuristic tunnel background, motion blur streaks, cyberpunk aesthetic, dramatic lighting, high contrast, dynamic composition, glossy bottles, ultra-realistic, 8K."
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。