模型 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 portrait of a handsome man with a short styled h...

A cinematic portrait of a handsome man with a short styled haircut and trimmed beard, wearing a plain brown t-shirt and round black sunglasses, standing in side profile against a textured concrete wall, warm golden-hour sunlight, shallow depth of field, muted earthy tones, natural light, sharp focus, modern fashion photography, 35mm lens, high detail, 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": "A cinematic portrait of a handsome man with a short styled haircut and trimmed beard, wearing a plain brown t-shirt and round black sunglasses, standing in side profile against a textured concrete wall, warm golden-hour sunlight, shallow depth of field, muted earthy tones, natural light, sharp focus, modern fashion photography, 35mm lens, high detail, realistic."
}
JSON
IM
图像
Photography nano-banana-2

{ "lighting": { "mood": "Candid, slightly harsh evenin...

{ "lighting": { "mood": "Candid, slightly harsh evening lighting", "type": "On-camera flash", "shadows": "Strong shadows visible, especially on the woman's neck and behind the subjects", "direction": "Frontal lighting", "intensity": "Harsh, creating highlights on faces and the dress" }, "background": { "setting": "Likely an indoor evening event or party", "elements": "Faint, indistinct shapes of other people or objects in the distance", "description": "Extremely dark and underexposed due to flash", "depth_of_field": "Shallow, background is completely blurred" }, "typography": { "details": "No visible text or logos", "present": "None" }, "composition": { "angle": "Slightly from the right, eye-level", "focus": "Sharp focus on the two subjects, particularly their faces", "framing": "Tight framing on the couple", "shot_type": "Medium shot", "orientation": "Portrait", "positioning": "Woman on the left, man on the right, standing closely together" }, "color_profile": { "palette": "Dark suit, bright red tie, silver sparkling dress, warm skin tones, dark background", "contrast": "High contrast due to flash", "saturation": "Moderate saturation", "color_grading": "Typical 1990s flash photography, slightly warm hues", "dominant_colors": [ "#000000", "#FFFFFF", "#C0C0C0", "#FF0000" ] }, "technical_specs": { "grain": "Visible film grain", "source": "Photograph, likely film from the 1990s", "sharpness": "Relatively sharp on subjects, background is blurry and dark", "resolution": "Medium resolution scan", "aspect_ratio": "Approx. 9:16 (square)" }, "subject_analysis": { "man": { "hair": "Blonde, brushed back", "attire": "Dark navy suit, white collared shirt, bright red tie", "identity": "Donald Trump (younger)", "position": "Right side of the frame", "expression": "Mouth open, possibly speaking or grimacing" }, "woman": { "hair": "Shoulder-length blonde hair", "attire": "Silver, sparkling, spaghetti-strap dress", "jewelry": "Small earring visible on left ear", "identity": "Blonde woman (possibly Kara Young)", "position": "Left side of the frame", "expression": "Looking directly at camera, slightly open mouth" } }, "artistic_elements": { "mood": "Slightly awkward, caught-in-the-moment", "style": "Candid celebrity snapshot", "texture": "Prominent texture of the woman's sparkling silver dress", "expression": "Man is speaking or grimacing, woman is looking directly at the camera with a slightly open mouth", "compositional_balance": "Balanced, with the two subjects occupying the majority of the frame" }, "generation_parameters": { "prompt": "A candid photograph from the 1990s of Donald Trump in a dark suit and red tie, standing next to a blonde woman in a silver sparkling dress. Both are looking at the camera, with Trump's mouth open. The image is taken with an on-camera flash at an evening event, with a very dark background.", "style_tags": [ "1990s photography", "flash photography", "candid snapshot", "celebrity photo" ], "negative_prompt": "modern photography, digital look, bright background, perfectly posed, studio lighting" } }

查看 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": "{ \"lighting\": { \"mood\": \"Candid, slightly harsh evening lighting\", \"type\": \"On-camera flash\", \"shadows\": \"Strong shadows visible, especially on the woman's neck and behind the subjects\", \"direction\": \"Frontal lighting\", \"intensity\": \"Harsh, creating highlights on faces and the dress\" }, \"background\": { \"setting\": \"Likely an indoor evening event or party\", \"elements\": \"Faint, indistinct shapes of other people or objects in the distance\", \"description\": \"Extremely dark and underexposed due to flash\", \"depth_of_field\": \"Shallow, background is completely blurred\" }, \"typography\": { \"details\": \"No visible text or logos\", \"present\": \"None\" }, \"composition\": { \"angle\": \"Slightly from the right, eye-level\", \"focus\": \"Sharp focus on the two subjects, particularly their faces\", \"framing\": \"Tight framing on the couple\", \"shot_type\": \"Medium shot\", \"orientation\": \"Portrait\", \"positioning\": \"Woman on the left, man on the right, standing closely together\" }, \"color_profile\": { \"palette\": \"Dark suit, bright red tie, silver sparkling dress, warm skin tones, dark background\", \"contrast\": \"High contrast due to flash\", \"saturation\": \"Moderate saturation\", \"color_grading\": \"Typical 1990s flash photography, slightly warm hues\", \"dominant_colors\": [ \"#000000\", \"#FFFFFF\", \"#C0C0C0\", \"#FF0000\" ] }, \"technical_specs\": { \"grain\": \"Visible film grain\", \"source\": \"Photograph, likely film from the 1990s\", \"sharpness\": \"Relatively sharp on subjects, background is blurry and dark\", \"resolution\": \"Medium resolution scan\", \"aspect_ratio\": \"Approx. 9:16 (square)\" }, \"subject_analysis\": { \"man\": { \"hair\": \"Blonde, brushed back\", \"attire\": \"Dark navy suit, white collared shirt, bright red tie\", \"identity\": \"Donald Trump (younger)\", \"position\": \"Right side of the frame\", \"expression\": \"Mouth open, possibly speaking or grimacing\" }, \"woman\": { \"hair\": \"Shoulder-length blonde hair\", \"attire\": \"Silver, sparkling, spaghetti-strap dress\", \"jewelry\": \"Small earring visible on left ear\", \"identity\": \"Blonde woman (possibly Kara Young)\", \"position\": \"Left side of the frame\", \"expression\": \"Looking directly at camera, slightly open mouth\" } }, \"artistic_elements\": { \"mood\": \"Slightly awkward, caught-in-the-moment\", \"style\": \"Candid celebrity snapshot\", \"texture\": \"Prominent texture of the woman's sparkling silver dress\", \"expression\": \"Man is speaking or grimacing, woman is looking directly at the camera with a slightly open mouth\", \"compositional_balance\": \"Balanced, with the two subjects occupying the majority of the frame\" }, \"generation_parameters\": { \"prompt\": \"A candid photograph from the 1990s of Donald Trump in a dark suit and red tie, standing next to a blonde woman in a silver sparkling dress. Both are looking at the camera, with Trump's mouth open. The image is taken with an on-camera flash at an evening event, with a very dark background.\", \"style_tags\": [ \"1990s photography\", \"flash photography\", \"candid snapshot\", \"celebrity photo\" ], \"negative_prompt\": \"modern photography, digital look, bright background, perfectly posed, studio lighting\" } }"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic close-up portrait of a young woman with fair...

Ultra-realistic close-up portrait of a young woman with fair skin and subtle freckles, green eyes, and natural full lips, dark straight hair tucked behind the ear, wearing small gold hoop earrings. Dramatic split lighting across the face — one half illuminated with soft natural light, the other half in deep shadow with cool blue tones. High detail skin texture, sharp focus on eyes and eyelashes, minimal makeup, cinematic lighting, moody atmosphere, shallow depth of field, 85mm lens, f/1.8, photorealistic, editorial beauty 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 close-up portrait of a young woman with fair skin and subtle freckles, green eyes, and natural full lips, dark straight hair tucked behind the ear, wearing small gold hoop earrings. Dramatic split lighting across the face — one half illuminated with soft natural light, the other half in deep shadow with cool blue tones. High detail skin texture, sharp focus on eyes and eyelashes, minimal makeup, cinematic lighting, moody atmosphere, shallow depth of field, 85mm lens, f/1.8, photorealistic, editorial beauty photography."
}
JSON
IM
图像
Photography nano-banana-2

Create an ultra-realistic, high-end lifestyle portrait of on...

Create an ultra-realistic, high-end lifestyle portrait of one adult subject, captured in a calm, elegant, modern café environment. The subject is seated casually inside a circular wooden frame embedded with warm LED rim lighting, surrounded by lush green foliage and soft floral decor. The pose is relaxed and natural: one leg crossed over the other, body slightly angled, shoulders relaxed, hands resting naturally while holding a small bouquet of fresh flowers. Overall mood is warm, clean, elegant, youthful, and approachable — pure realism only. No stylization, no fantasy, no cinematic exaggeration. Maintain 100% facial accuracy: exact bone structure, eye shape, eyelid fold, eyebrow shape, nose bridge and tip, lip shape, jawline, chin, cheek volume, hairline, and facial proportions Identity must remain perfectly consistent from all angles (front, 3/4, side, seated pose, slight head tilt) No face blending, no beautification, no symmetry correction No AI face drift Preserve real skin texture: pores, fine lines, natural imperfections Expression: soft, natural smile, relaxed and genuine Soft pastel long-sleeve knit top (dusty pink / muted rose tone) High-waisted, straight-fit beige or cream trousers Clean white chunky sneakers Minimal accessories only (simple earrings, smartwatch or minimal wrist accessory) Hair neatly styled, natural, pulled back or softly tied Natural makeup: realistic skin tones, no heavy retouching Modern café or lifestyle studio interior Circular wooden structure with embedded warm LED light ring Green plants and floral arrangements integrated into the frame Soft bokeh background with warm ambient lighting Clean, uncluttered setting with depth and realism Full-body or 3/4 body vertical portrait Eye-level camera angle 50mm–85mm lens look Natural perspective, no distortion Subject centered within the circular frame Shallow depth of field, background softly blurred Soft, warm, diffused lighting LED rim light gently outlining the circular frame Even facial illumination with natural shadow falloff No harsh highlights, no blown whites Realistic skin reflections and depth Negative prompt: No stylization No cinematic color grading No beauty filters No smooth or plastic skin No exaggerated proportions No painterly or illustrated look No artificial glow No face morphing or identity shift Ultra-photorealistic Editorial lifestyle photography quality Natural colors, true-to-life skin tones Identity remains unchanged and accurate from every angle

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create an ultra-realistic, high-end lifestyle portrait of one adult subject, captured in a calm, elegant, modern café environment. The subject is seated casually inside a circular wooden frame embedded with warm LED rim lighting, surrounded by lush green foliage and soft floral decor. The pose is relaxed and natural: one leg crossed over the other, body slightly angled, shoulders relaxed, hands resting naturally while holding a small bouquet of fresh flowers. Overall mood is warm, clean, elegant, youthful, and approachable — pure realism only. No stylization, no fantasy, no cinematic exaggeration. Maintain 100% facial accuracy: exact bone structure, eye shape, eyelid fold, eyebrow shape, nose bridge and tip, lip shape, jawline, chin, cheek volume, hairline, and facial proportions Identity must remain perfectly consistent from all angles (front, 3/4, side, seated pose, slight head tilt) No face blending, no beautification, no symmetry correction No AI face drift Preserve real skin texture: pores, fine lines, natural imperfections Expression: soft, natural smile, relaxed and genuine Soft pastel long-sleeve knit top (dusty pink / muted rose tone) High-waisted, straight-fit beige or cream trousers Clean white chunky sneakers Minimal accessories only (simple earrings, smartwatch or minimal wrist accessory) Hair neatly styled, natural, pulled back or softly tied Natural makeup: realistic skin tones, no heavy retouching Modern café or lifestyle studio interior Circular wooden structure with embedded warm LED light ring Green plants and floral arrangements integrated into the frame Soft bokeh background with warm ambient lighting Clean, uncluttered setting with depth and realism Full-body or 3/4 body vertical portrait Eye-level camera angle 50mm–85mm lens look Natural perspective, no distortion Subject centered within the circular frame Shallow depth of field, background softly blurred Soft, warm, diffused lighting LED rim light gently outlining the circular frame Even facial illumination with natural shadow falloff No harsh highlights, no blown whites Realistic skin reflections and depth Negative prompt: No stylization No cinematic color grading No beauty filters No smooth or plastic skin No exaggerated proportions No painterly or illustrated look No artificial glow No face morphing or identity shift Ultra-photorealistic Editorial lifestyle photography quality Natural colors, true-to-life skin tones Identity remains unchanged and accurate from every angle"
}
JSON
IM
图像
Photography nano-banana-2

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

{ "generation_request": { "meta_data": { "tool": "NanoBanana Pro", "task_type": "photoreal_fashion_editorial_window_pose", "version": "v1.0_YELLOW_HOUSE_WINDOW_GIRL_WHITE_SATIN", "priority": "highest" }, "references": { "reference_image_1": { "source": "UPLOAD_REFERENCE_IMAGE", "purpose": "POSE_AND_COMPOSITION_LOCK", "strict_lock": true, "match_reference_priority": "MAX", "preserve_window_frame": true, "preserve_leg_position": true, "preserve_body_angle": true, "preserve_camera_distance": true, "no_style_drift": true }, "reference_image_2": { "source": "UPLOAD_FACE_REFERENCE (OPTIONAL)", "purpose": "FACE_IDENTITY_LOCK", "strict_lock": true, "face_similarity_priority": "MAX", "no_identity_blending": true, "no_beautify": true, "no_age_shift": true, "preserve_skin_texture": true, "preserve_facial_proportions": true } }, "creative_direction": { "concept": "A playful, editorial fashion moment: a young woman sitting casually inside an open window of a yellow house, one leg lifted outward, captured as a clean, modern lifestyle photograph.", "mood": "fresh, carefree, stylish, youthful", "style_keywords": "European street style, playful femininity, minimal editorial" }, "scene": { "location": "residential exterior", "architecture": { "house_color": "soft warm yellow facade", "window": "simple rectangular window with white interior walls", "background": "clean, uncluttered, sunlit wall" }, "time": "midday", "lighting": "direct natural sunlight, crisp shadows" }, "subject": { "gender": "female", "pose": { "position": "sitting inside the window frame", "legs": "one leg extended outward and raised, the other relaxed", "arms": "one arm hanging freely outside the window" }, "expression": "neutral to calm, relaxed confidence", "gaze": "looking forward or slightly to the side" }, "wardrobe": { "dress": { "type": "white satin slip dress", "style": "thin straps, minimal, fluid fabric", "length": "midi", "finish": "soft satin sheen" }, "headphones": { "type": "over-ear", "color": "pure white", "style": "clean, modern, minimal" }, "shoes": { "type": "flat or low-heel shoes", "color": "white", "style": "simple, elegant" } }, "accessories": { "flowers": { "type": "fresh yellow flowers", "placement": "held loosely in one hand", "look": "natural, slightly wild bouquet" } }, "photography": { "camera_style": "fashion editorial street photography", "lens": "35mm", "framing": "centered subject, full body within window frame", "depth_of_field": "moderate, background sharp", "color_grade": "warm yellows, clean whites, natural skin tones" }, "output_settings": { "aspect_ratio": "4:5", "orientation": "portrait", "resolution_target": "ultra_high_res", "render_style": "ultra_photoreal_editorial", "sharpness": "clean_and_crisp", "dynamic_range": "natural_not_hdr", "no_text": true, "no_watermark": true, "no_logo": true }, "quality_controls": { "anatomy": { "no_deformed_limbs": true, "no_extra_fingers": true }, "fabric": { "satin_reads_real": true }, "coherence": { "wardrobe_consistent": true, "pose_identical_to_reference": true } }, "negative_prompt": [ "patterned dress", "dark or black clothing", "headphones not white", "boots or dark shoes", "busy background", "cartoon, illustration, anime", "HDR, oversharpening", "text, watermark, logo", "deformed anatomy" ] } }

查看 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_fashion_editorial_window_pose\", \"version\": \"v1.0_YELLOW_HOUSE_WINDOW_GIRL_WHITE_SATIN\", \"priority\": \"highest\" }, \"references\": { \"reference_image_1\": { \"source\": \"UPLOAD_REFERENCE_IMAGE\", \"purpose\": \"POSE_AND_COMPOSITION_LOCK\", \"strict_lock\": true, \"match_reference_priority\": \"MAX\", \"preserve_window_frame\": true, \"preserve_leg_position\": true, \"preserve_body_angle\": true, \"preserve_camera_distance\": true, \"no_style_drift\": true }, \"reference_image_2\": { \"source\": \"UPLOAD_FACE_REFERENCE (OPTIONAL)\", \"purpose\": \"FACE_IDENTITY_LOCK\", \"strict_lock\": true, \"face_similarity_priority\": \"MAX\", \"no_identity_blending\": true, \"no_beautify\": true, \"no_age_shift\": true, \"preserve_skin_texture\": true, \"preserve_facial_proportions\": true } }, \"creative_direction\": { \"concept\": \"A playful, editorial fashion moment: a young woman sitting casually inside an open window of a yellow house, one leg lifted outward, captured as a clean, modern lifestyle photograph.\", \"mood\": \"fresh, carefree, stylish, youthful\", \"style_keywords\": \"European street style, playful femininity, minimal editorial\" }, \"scene\": { \"location\": \"residential exterior\", \"architecture\": { \"house_color\": \"soft warm yellow facade\", \"window\": \"simple rectangular window with white interior walls\", \"background\": \"clean, uncluttered, sunlit wall\" }, \"time\": \"midday\", \"lighting\": \"direct natural sunlight, crisp shadows\" }, \"subject\": { \"gender\": \"female\", \"pose\": { \"position\": \"sitting inside the window frame\", \"legs\": \"one leg extended outward and raised, the other relaxed\", \"arms\": \"one arm hanging freely outside the window\" }, \"expression\": \"neutral to calm, relaxed confidence\", \"gaze\": \"looking forward or slightly to the side\" }, \"wardrobe\": { \"dress\": { \"type\": \"white satin slip dress\", \"style\": \"thin straps, minimal, fluid fabric\", \"length\": \"midi\", \"finish\": \"soft satin sheen\" }, \"headphones\": { \"type\": \"over-ear\", \"color\": \"pure white\", \"style\": \"clean, modern, minimal\" }, \"shoes\": { \"type\": \"flat or low-heel shoes\", \"color\": \"white\", \"style\": \"simple, elegant\" } }, \"accessories\": { \"flowers\": { \"type\": \"fresh yellow flowers\", \"placement\": \"held loosely in one hand\", \"look\": \"natural, slightly wild bouquet\" } }, \"photography\": { \"camera_style\": \"fashion editorial street photography\", \"lens\": \"35mm\", \"framing\": \"centered subject, full body within window frame\", \"depth_of_field\": \"moderate, background sharp\", \"color_grade\": \"warm yellows, clean whites, natural skin tones\" }, \"output_settings\": { \"aspect_ratio\": \"4:5\", \"orientation\": \"portrait\", \"resolution_target\": \"ultra_high_res\", \"render_style\": \"ultra_photoreal_editorial\", \"sharpness\": \"clean_and_crisp\", \"dynamic_range\": \"natural_not_hdr\", \"no_text\": true, \"no_watermark\": true, \"no_logo\": true }, \"quality_controls\": { \"anatomy\": { \"no_deformed_limbs\": true, \"no_extra_fingers\": true }, \"fabric\": { \"satin_reads_real\": true }, \"coherence\": { \"wardrobe_consistent\": true, \"pose_identical_to_reference\": true } }, \"negative_prompt\": [ \"patterned dress\", \"dark or black clothing\", \"headphones not white\", \"boots or dark shoes\", \"busy background\", \"cartoon, illustration, anime\", \"HDR, oversharpening\", \"text, watermark, logo\", \"deformed anatomy\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

A striking editorial portrait photograph of a person wearing...

A striking editorial portrait photograph of a person wearing a red blazer, shot against a soft light pink studio background. The left half of the face and body is partially obscured by multiple overlapping vertical strips of tall narrow reeded ribbed frosted glass panels, creating a realistic distortion and refraction effect where the features appear blurred, shifted, and fragmented behind the glass. The right side of the face is clearly visible with sharp detail. Dramatic cool-toned studio lighting with a blue-purple color grade overall. The glass strips run vertically from top to bottom of the frame, covering approximately the left 40 to 50 percent of the image. Serious neutral facial expression. High-fashion editorial style, photorealistic, no text, no watermark, no overlays, clean composition. Vertical portrait orientation, 3:4 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 striking editorial portrait photograph of a person wearing a red blazer, shot against a soft light pink studio background. The left half of the face and body is partially obscured by multiple overlapping vertical strips of tall narrow reeded ribbed frosted glass panels, creating a realistic distortion and refraction effect where the features appear blurred, shifted, and fragmented behind the glass. The right side of the face is clearly visible with sharp detail. Dramatic cool-toned studio lighting with a blue-purple color grade overall. The glass strips run vertically from top to bottom of the frame, covering approximately the left 40 to 50 percent of the image. Serious neutral facial expression. High-fashion editorial style, photorealistic, no text, no watermark, no overlays, clean composition. Vertical portrait orientation, 3:4 ratio."
}
JSON
IM
图像
Photography nano-banana-2

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

{ "generation_request": { "meta_data": { "task_type": "black_and_white_photobooth_expression_grid_4x4", "language": "en", "priority": "highest", "version": "v1.0_BW_PHOTOBOOTH_EXPRESSIONS_4X4" }, "input": { "mode": "image_to_image", "reference_image_usage": "very_high", "preserve_identity": true, "preserve_facial_features": true, "preserve_hairstyle": true, "notes": "Use the reference as the primary anchor. Create a black-and-white photobooth-style expression grid. Keep the same young man identity and hair. Each panel should show a different facial expression. Minimal background, direct photobooth flash look, natural skin texture." }, "output": { "aspect_ratio": "1:1", "resolution": "ultra_high", "num_images": 1, "layout": { "type": "grid", "rows": 4, "cols": 4, "gutter": "thin", "panel_consistency": "high" }, "sharpness": "crisp_photobooth", "grain": "subtle_analog_bw" }, "scene": { "concept": "classic photobooth contact sheet with expressive faces", "environment": "plain neutral backdrop, no props", "lighting": { "style": "direct photobooth flash", "key_light": "front flash, slightly hard but flattering", "shadows": "soft short shadows behind subject", "avoid": "cinematic side light, dramatic backgrounds" }, "camera": { "lens": "50mm", "distance": "tight head-and-shoulders framing", "focus": "eyes sharp in every panel" } }, "subject": { "type": "young man", "wardrobe": "simple casual photobooth look, plain t shirt or hoodie with no logos", "hair": "keep same hairstyle across all panels", "facial_hair": "natural if present, keep consistent", "anatomy_rules": "correct facial proportions, no warped eyes or mouth" }, "expression_set": { "panel_01": "scrunched smile, eyes squeezed slightly", "panel_02": "intense stare with fingers framing eyes", "panel_03": "big laugh, mouth open, joyful", "panel_04": "bored unimpressed face, chin resting in hands", "panel_05": "sad pout, emotional expression", "panel_06": "goofy face with both hands making small horns above head", "panel_07": "playful tongue out with cheeky grin", "panel_08": "angry glare with eyebrows down", "panel_09": "confident playful look, hand touching cheek", "panel_10": "surprised wide eyes, mouth slightly open", "panel_11": "fake scream excited shout, hands near face", "panel_12": "mischievous grin with claw-like hand pose", "panel_13": "confused frown with lips pressed", "panel_14": "dramatic frustrated expression, hands on head", "panel_15": "tongue out with eyes closed, playful mood", "panel_16": "duck face with small devil horns gesture" }, "style": { "color": "pure black and white", "contrast": "medium_high", "background": "flat gray", "finish": "slight photobooth grain, clean edges" }, "quality_control": { "identity_lock": "strict", "hands_priority": "high", "avoid": [ "extra fingers", "missing fingers", "deformed hands", "warped face", "uneven eyes", "melted mouth", "plastic skin", "text", "watermark", "logo" ] }, "negative_prompt": [ "color", "sepia", "overly cinematic lighting", "beauty retouch plastic skin", "low resolution", "blur", "distorted anatomy" ] } }

查看 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\": \"black_and_white_photobooth_expression_grid_4x4\", \"language\": \"en\", \"priority\": \"highest\", \"version\": \"v1.0_BW_PHOTOBOOTH_EXPRESSIONS_4X4\" }, \"input\": { \"mode\": \"image_to_image\", \"reference_image_usage\": \"very_high\", \"preserve_identity\": true, \"preserve_facial_features\": true, \"preserve_hairstyle\": true, \"notes\": \"Use the reference as the primary anchor. Create a black-and-white photobooth-style expression grid. Keep the same young man identity and hair. Each panel should show a different facial expression. Minimal background, direct photobooth flash look, natural skin texture.\" }, \"output\": { \"aspect_ratio\": \"1:1\", \"resolution\": \"ultra_high\", \"num_images\": 1, \"layout\": { \"type\": \"grid\", \"rows\": 4, \"cols\": 4, \"gutter\": \"thin\", \"panel_consistency\": \"high\" }, \"sharpness\": \"crisp_photobooth\", \"grain\": \"subtle_analog_bw\" }, \"scene\": { \"concept\": \"classic photobooth contact sheet with expressive faces\", \"environment\": \"plain neutral backdrop, no props\", \"lighting\": { \"style\": \"direct photobooth flash\", \"key_light\": \"front flash, slightly hard but flattering\", \"shadows\": \"soft short shadows behind subject\", \"avoid\": \"cinematic side light, dramatic backgrounds\" }, \"camera\": { \"lens\": \"50mm\", \"distance\": \"tight head-and-shoulders framing\", \"focus\": \"eyes sharp in every panel\" } }, \"subject\": { \"type\": \"young man\", \"wardrobe\": \"simple casual photobooth look, plain t shirt or hoodie with no logos\", \"hair\": \"keep same hairstyle across all panels\", \"facial_hair\": \"natural if present, keep consistent\", \"anatomy_rules\": \"correct facial proportions, no warped eyes or mouth\" }, \"expression_set\": { \"panel_01\": \"scrunched smile, eyes squeezed slightly\", \"panel_02\": \"intense stare with fingers framing eyes\", \"panel_03\": \"big laugh, mouth open, joyful\", \"panel_04\": \"bored unimpressed face, chin resting in hands\", \"panel_05\": \"sad pout, emotional expression\", \"panel_06\": \"goofy face with both hands making small horns above head\", \"panel_07\": \"playful tongue out with cheeky grin\", \"panel_08\": \"angry glare with eyebrows down\", \"panel_09\": \"confident playful look, hand touching cheek\", \"panel_10\": \"surprised wide eyes, mouth slightly open\", \"panel_11\": \"fake scream excited shout, hands near face\", \"panel_12\": \"mischievous grin with claw-like hand pose\", \"panel_13\": \"confused frown with lips pressed\", \"panel_14\": \"dramatic frustrated expression, hands on head\", \"panel_15\": \"tongue out with eyes closed, playful mood\", \"panel_16\": \"duck face with small devil horns gesture\" }, \"style\": { \"color\": \"pure black and white\", \"contrast\": \"medium_high\", \"background\": \"flat gray\", \"finish\": \"slight photobooth grain, clean edges\" }, \"quality_control\": { \"identity_lock\": \"strict\", \"hands_priority\": \"high\", \"avoid\": [ \"extra fingers\", \"missing fingers\", \"deformed hands\", \"warped face\", \"uneven eyes\", \"melted mouth\", \"plastic skin\", \"text\", \"watermark\", \"logo\" ] }, \"negative_prompt\": [ \"color\", \"sepia\", \"overly cinematic lighting\", \"beauty retouch plastic skin\", \"low resolution\", \"blur\", \"distorted anatomy\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "Using the uploaded reference image of a 30-ye...

{ "prompt": "Using the uploaded reference image of a 30-year-old adult, generate a highly realistic cinematic fashion editorial photoshoot. The person is leaning casually against a beige textured wall, body slightly angled, one shoulder resting on the wall, conveying relaxed confidence.\n\nOutfit: a loose pastel blue button-down shirt with casually rolled-up sleeves, tailored white relaxed-fit trousers, and clean minimalist white or blue-white sneakers. Styling is modern, elegant, and effortless.\n\nPose & expression: stylish adult pose with natural posture — one hand in pocket, the other holding a small white daisy flower. Facial expression is calm, confident, and self-assured, with a soft editorial gaze.\n\nLighting & atmosphere: warm natural sunlight streaming from the side, creating soft highlights and gentle shadows on the wall and face. Sunlit, airy mood with cinematic depth.\n\nVisual style: high-end fashion editorial aesthetic, natural skin texture, crisp fabric details, refined neutral color palette.\n\nCamera & quality: professional fashion photography, shallow depth of field, cinematic framing, ultra-realistic 8K quality.\n\nOverall feel: modern, minimal, sunlit lifestyle fashion campaign.", "style": "cinematic, high-end adult fashion editorial", "lighting": "warm natural sunlight, soft shadows", "background": "minimal beige wall, sunlit texture", "quality": "ultra-realistic, 8K, ultra-sharp", "camera": "professional fashion photography, shallow depth of field", "mood": "clean, modern, confident, relaxed" }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"prompt\": \"Using the uploaded reference image of a 30-year-old adult, generate a highly realistic cinematic fashion editorial photoshoot. The person is leaning casually against a beige textured wall, body slightly angled, one shoulder resting on the wall, conveying relaxed confidence.\\n\\nOutfit: a loose pastel blue button-down shirt with casually rolled-up sleeves, tailored white relaxed-fit trousers, and clean minimalist white or blue-white sneakers. Styling is modern, elegant, and effortless.\\n\\nPose & expression: stylish adult pose with natural posture — one hand in pocket, the other holding a small white daisy flower. Facial expression is calm, confident, and self-assured, with a soft editorial gaze.\\n\\nLighting & atmosphere: warm natural sunlight streaming from the side, creating soft highlights and gentle shadows on the wall and face. Sunlit, airy mood with cinematic depth.\\n\\nVisual style: high-end fashion editorial aesthetic, natural skin texture, crisp fabric details, refined neutral color palette.\\n\\nCamera & quality: professional fashion photography, shallow depth of field, cinematic framing, ultra-realistic 8K quality.\\n\\nOverall feel: modern, minimal, sunlit lifestyle fashion campaign.\", \"style\": \"cinematic, high-end adult fashion editorial\", \"lighting\": \"warm natural sunlight, soft shadows\", \"background\": \"minimal beige wall, sunlit texture\", \"quality\": \"ultra-realistic, 8K, ultra-sharp\", \"camera\": \"professional fashion photography, shallow depth of field\", \"mood\": \"clean, modern, confident, relaxed\" }"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic 1970s-inspired fashion portrait of a young woman...

A cinematic 1970s-inspired fashion portrait of a young woman seated on worn stone steps outside a cozy street café. She holds a deep-green ceramic coffee cup with gold rim accents, resting it gently in her hands, gazing softly at the camera with calm, timeless confidence. Her hair falls in natural waves with loose strands framing her face, styled with vintage 1970s elegance. Makeup is classic: matte crimson lips, subtle winged eyeliner, warm blush, and softly defined brows. She wears a relaxed forest-green knitted sweater paired with a flowing black tulle skirt, complemented by a warm plaid scarf in earthy tones. A dark-green leather crossbody bag with gold details sits beside her. The background shows an autumn street scene with fallen leaves, amber-lit café windows, and a quiet, serene urban atmosphere. Shot with an 85mm lens at f/1.8, the image features shallow depth of field, warm analog film grain, muted earthy colors, and a dreamy, cinematic fashion editorial feel inspired by 1970s film aesthetics.

查看 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 1970s-inspired fashion portrait of a young woman seated on worn stone steps outside a cozy street café. She holds a deep-green ceramic coffee cup with gold rim accents, resting it gently in her hands, gazing softly at the camera with calm, timeless confidence. Her hair falls in natural waves with loose strands framing her face, styled with vintage 1970s elegance. Makeup is classic: matte crimson lips, subtle winged eyeliner, warm blush, and softly defined brows. She wears a relaxed forest-green knitted sweater paired with a flowing black tulle skirt, complemented by a warm plaid scarf in earthy tones. A dark-green leather crossbody bag with gold details sits beside her. The background shows an autumn street scene with fallen leaves, amber-lit café windows, and a quiet, serene urban atmosphere. Shot with an 85mm lens at f/1.8, the image features shallow depth of field, warm analog film grain, muted earthy colors, and a dreamy, cinematic fashion editorial feel inspired by 1970s film aesthetics."
}
JSON
IM
图像
Photography nano-banana-2

A warm, cozy, and high-quality portrait of a young woman wit...

A warm, cozy, and high-quality portrait of a young woman with long, wavy blonde-brown hair, captured in a soft side profile. She is smiling gently and looking downward, her left hand delicately adjusting the brim of a classic brown wool baker boy cap. The cap features a thick, felted texture with a small button nub on top. She is wearing an oversized, chunky knit V-neck cardigan with a bold argyle-style diamond pattern in cream and a muted, deep red. The cardigan features large, visible buttons and a thick ribbed texture along the neckline and cuffs. The background is a soft-focus, neutral beige wall with the blurred green leaves of a plant visible on the far left edge. The lighting is soft and natural, coming from the side to highlight the delicate features of her face and the intricate textures of the knitwear and wool hat. The overall aesthetic is autumnal, serene, and tactile.

查看 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 warm, cozy, and high-quality portrait of a young woman with long, wavy blonde-brown hair, captured in a soft side profile. She is smiling gently and looking downward, her left hand delicately adjusting the brim of a classic brown wool baker boy cap. The cap features a thick, felted texture with a small button nub on top. She is wearing an oversized, chunky knit V-neck cardigan with a bold argyle-style diamond pattern in cream and a muted, deep red. The cardigan features large, visible buttons and a thick ribbed texture along the neckline and cuffs. The background is a soft-focus, neutral beige wall with the blurred green leaves of a plant visible on the far left edge. The lighting is soft and natural, coming from the side to highlight the delicate features of her face and the intricate textures of the knitwear and wool hat. The overall aesthetic is autumnal, serene, and tactile."
}
JSON
IM
图像
Photography nano-banana-2

Close-up portrait of a woman (Same face as reference image)l...

Close-up portrait of a woman (Same face as reference image)looking directly at the camera. Her face and neck are mostly obscured by deep shadow. A single, narrow horizontal band of light cuts across her face, illuminating only her eyes and the bridge of his nose. He has a strong, defined jawline and short, textured hair. She is wearing a simple black shirt. The background is a plain, overcast grayish-blue sky. Dramatic, high-contrast lighting creates a moody, cinematic atmosphere.

查看 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": "Close-up portrait of a woman (Same face as reference image)looking directly at the camera. Her face and neck are mostly obscured by deep shadow. A single, narrow horizontal band of light cuts across her face, illuminating only her eyes and the bridge of his nose. He has a strong, defined jawline and short, textured hair. She is wearing a simple black shirt. The background is a plain, overcast grayish-blue sky. Dramatic, high-contrast lighting creates a moody, cinematic atmosphere."
}
JSON
IM
图像
Photography nano-banana-2

A hyper-detailed cinematic portrait of a human face use sele...

A hyper-detailed cinematic portrait of a human face use selected image for face reference in side profile, looking upward with a calm and powerful expression, the entire subject illuminated in deep electric blue light, water splashes and liquid energy wrapping around the head and shoulders, high contrast, dramatic lighting, ultra-realistic skin texture, fine pores visible, sharp focus, 8K resolution, volumetric lighting, dark blue background, futuristic, ethereal, emotional, digital art, photorealism, 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": "A hyper-detailed cinematic portrait of a human face use selected image for face reference in side profile, looking upward with a calm and powerful expression, the entire subject illuminated in deep electric blue light, water splashes and liquid energy wrapping around the head and shoulders, high contrast, dramatic lighting, ultra-realistic skin texture, fine pores visible, sharp focus, 8K resolution, volumetric lighting, dark blue background, futuristic, ethereal, emotional, digital art, photorealism, high detail."
}
JSON
IM
图像
Photography nano-banana-2

A cinematic black-and-white street portrait of a young woman...

A cinematic black-and-white street portrait of a young woman photographer standing in a city street, holding a mirrorless camera with both hands. She has soft natural makeup, sharp expressive eyes, and loosely tied dark hair with wisps framing her face. She wears a black turtleneck sweater and a camera strap around her neck. The background is an urban street with blurred pedestrians and lights creating creamy bokeh. Shallow depth of field, 85mm lens look, natural soft light, high contrast monochrome tones, realistic skin texture, candid moment, moody documentary photography style, ultra-detailed, film grain, timeless 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": "A cinematic black-and-white street portrait of a young woman photographer standing in a city street, holding a mirrorless camera with both hands. She has soft natural makeup, sharp expressive eyes, and loosely tied dark hair with wisps framing her face. She wears a black turtleneck sweater and a camera strap around her neck. The background is an urban street with blurred pedestrians and lights creating creamy bokeh. Shallow depth of field, 85mm lens look, natural soft light, high contrast monochrome tones, realistic skin texture, candid moment, moody documentary photography style, ultra-detailed, film grain, timeless aesthetic."
}
JSON
IM
图像
Photography nano-banana-2

captured in a dark studio environment with a strong minimali...

captured in a dark studio environment with a strong minimalist and futuristic aesthetic. The subject is posed in three-quarter profile, wearing dark clothing such as a black turtleneck and metallic accessories, with reflective sunglasses that catch the ambient light. A circular neon light positioned directly behind the subject creates a luminous halo effect, producing precise rim highlights along the head and shoulders. The lighting is cool and monochromatic, primarily in icy blue tones (-6500K), casting subtle reflections and soft gradients across the matte tex-tures. The background is a deep black (approx. HEX #020509), allowing the neon ring's cyan glow (approx.

查看 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": "captured in a dark studio environment with a strong minimalist and futuristic aesthetic. The subject is posed in three-quarter profile, wearing dark clothing such as a black turtleneck and metallic accessories, with reflective sunglasses that catch the ambient light. A circular neon light positioned directly behind the subject creates a luminous halo effect, producing precise rim highlights along the head and shoulders. The lighting is cool and monochromatic, primarily in icy blue tones (-6500K), casting subtle reflections and soft gradients across the matte tex-tures. The background is a deep black (approx. HEX #020509), allowing the neon ring's cyan glow (approx."
}
JSON
IM
图像
Photography nano-banana-2

A panning studio portrait of a mysterious female figure capt...

A panning studio portrait of a mysterious female figure captured in side profile, her head subtly turned forward as motion blur streaks softly through her hair and jawline. She wears a matte charcoal wool coat with softened edges, standing against a solid Pantone 137 C orange background that fills the frame entirely. The image features intentional horizontal motion blur from a slow shutter pan, preserving facial structure while allowing peripheral smearing. Soft studio lighting with diffused highlights, low contrast, and lifted blacks creates a faded analog film look with fine grain and muted saturation. Shot on a full-frame camera using a 50mm lens at f/2.8, ISO 200, shutter speed 1/15s, vertical orientation, tight portrait framing, shallow depth of field. The mood is cinematic, introspective, and modern editorial visual language aligned with 032c and A24 aesthetics.

查看 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 panning studio portrait of a mysterious female figure captured in side profile, her head subtly turned forward as motion blur streaks softly through her hair and jawline. She wears a matte charcoal wool coat with softened edges, standing against a solid Pantone 137 C orange background that fills the frame entirely. The image features intentional horizontal motion blur from a slow shutter pan, preserving facial structure while allowing peripheral smearing. Soft studio lighting with diffused highlights, low contrast, and lifted blacks creates a faded analog film look with fine grain and muted saturation. Shot on a full-frame camera using a 50mm lens at f/2.8, ISO 200, shutter speed 1/15s, vertical orientation, tight portrait framing, shallow depth of field. The mood is cinematic, introspective, and modern editorial visual language aligned with 032c and A24 aesthetics."
}
JSON
IM
图像
Photography nano-banana-2

Cinematic photo of a young woman sitting alone in a cozy Par...

Cinematic photo of a young woman sitting alone in a cozy Parisian café on a rainy day, holding a cup of coffee and looking out a large window with raindrops on the glass. Warm vintage café interior with wooden walls, hanging Edison bulbs, marble table, croissants and coffee machine visible in the background. A chalkboard menu reading “Café du Soir, Croissants, Vin Rouge.” Soft natural window light mixed with warm indoor lighting, shallow depth of field, street with umbrellas and classic European buildings outside. Moody, cozy atmosphere, realistic photography, 50mm lens, high detail, cinematic color grading, lifestyle photography, ultra-realistic, 4k.

查看 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 photo of a young woman sitting alone in a cozy Parisian café on a rainy day, holding a cup of coffee and looking out a large window with raindrops on the glass. Warm vintage café interior with wooden walls, hanging Edison bulbs, marble table, croissants and coffee machine visible in the background. A chalkboard menu reading “Café du Soir, Croissants, Vin Rouge.” Soft natural window light mixed with warm indoor lighting, shallow depth of field, street with umbrellas and classic European buildings outside. Moody, cozy atmosphere, realistic photography, 50mm lens, high detail, cinematic color grading, lifestyle photography, ultra-realistic, 4k."
}
JSON
IM
图像
Photography nano-banana-2

A man with short curly hair and light facial hair sitting on...

A man with short curly hair and light facial hair sitting on a tall black stool, centered composition, wearing a monochrome beige outfit with gloves and the number "64" on the chest, minimalist futuristic fashion, dramatic studio lighting, huge glowing orange sun behind him, warm orange gradient background, cinematic atmosphere, soft fog around the floor, symmetrical framing, editorial fashion photography, ultra detailed, sharp focus, volumetric lighting, studio shot, 85mm lens, high contrast, modern album cover style

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A man with short curly hair and light facial hair sitting on a tall black stool, centered composition, wearing a monochrome beige outfit with gloves and the number \"64\" on the chest, minimalist futuristic fashion, dramatic studio lighting, huge glowing orange sun behind him, warm orange gradient background, cinematic atmosphere, soft fog around the floor, symmetrical framing, editorial fashion photography, ultra detailed, sharp focus, volumetric lighting, studio shot, 85mm lens, high contrast, modern album cover style"
}
JSON
IM
图像
Photography nano-banana-2

Using the uploaded image as the only reference. create an ul...

Using the uploaded image as the only reference. create an ultra-photorealistic cinematic close-up portrait of a young woman with vivid red hair and piercing blue-green eyes. Her hair is slightly wet and blown across her face, with delicate braids woven through the strands. Tiny water droplets and natural skin texture glisten across her freckles and cheeks, illuminated by warm dramatic lighting against a dark background.She looks slightly upward with a calm, intense expression, capturing a moment of quiet strength. Emphasize hyper-real skin detail, freckles, wet hair strands, reflective water droplets, and luminous eyes. Shallow depth of field, dramatic contrast, moody cinematic lighting, intimate portrait composition, ultra-detailed textures, 8k photorealism.

查看 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 uploaded image as the only reference. create an ultra-photorealistic cinematic close-up portrait of a young woman with vivid red hair and piercing blue-green eyes. Her hair is slightly wet and blown across her face, with delicate braids woven through the strands. Tiny water droplets and natural skin texture glisten across her freckles and cheeks, illuminated by warm dramatic lighting against a dark background.She looks slightly upward with a calm, intense expression, capturing a moment of quiet strength. Emphasize hyper-real skin detail, freckles, wet hair strands, reflective water droplets, and luminous eyes. Shallow depth of field, dramatic contrast, moody cinematic lighting, intimate portrait composition, ultra-detailed textures, 8k photorealism."
}
JSON
IM
图像
Photography nano-banana-2

{   "render_goal": "High-fashion cinematic motion shot",...

{ "render_goal": "High-fashion cinematic motion shot", "focus": "fabric movement", "wardrobe": { "outfit": "long flowing garment", "motion": "fabric spreading dramatically in wind" }, "environment": { "location": "open elevated space (rooftop, bridge, cliff)" }, "lighting": "directional cinematic light", "camera": "freeze motion, sharp subject, soft background" }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"render_goal\": \"High-fashion cinematic motion shot\", \"focus\": \"fabric movement\", \"wardrobe\": { \"outfit\": \"long flowing garment\", \"motion\": \"fabric spreading dramatically in wind\" }, \"environment\": { \"location\": \"open elevated space (rooftop, bridge, cliff)\" }, \"lighting\": \"directional cinematic light\", \"camera\": \"freeze motion, sharp subject, soft background\" }"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic 3×3 grid of film-still frames featuring the same...

A cinematic 3×3 grid of film-still frames featuring the same couple during a quiet countryside road stop at dusk. A young woman with short dark hair wearing a light patterned blouse stands beside a cream vintage convertible on a rural dirt road, open fields and rolling hills stretching into the distance. Each frame here shows a distinct cinematic angle: extreme close-up of her face with natural skin texture, intimate medium shot of the couple leaning on the car, back view of the woman facing the landscape, wide establishing shot with the car in tall grass, high-angle top-down shot of the couple beside the convertible, dramatic low-angle portrait against the sky, clean side profile close-up, three-quarter rear view of the couple near the car, and a full back view of them walking away hand in hand down the road. Soft natural dusk lighting, muted earthy tones, realistic colors, shallow depth of field, subtle film grain, consistent facial features across all frames, emotional cinematic mood, professional cinematography reference sheet style, ultra-realistic 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 cinematic 3×3 grid of film-still frames featuring the same couple during a quiet countryside road stop at dusk. A young woman with short dark hair wearing a light patterned blouse stands beside a cream vintage convertible on a rural dirt road, open fields and rolling hills stretching into the distance. Each frame here shows a distinct cinematic angle: extreme close-up of her face with natural skin texture, intimate medium shot of the couple leaning on the car, back view of the woman facing the landscape, wide establishing shot with the car in tall grass, high-angle top-down shot of the couple beside the convertible, dramatic low-angle portrait against the sky, clean side profile close-up, three-quarter rear view of the couple near the car, and a full back view of them walking away hand in hand down the road. Soft natural dusk lighting, muted earthy tones, realistic colors, shallow depth of field, subtle film grain, consistent facial features across all frames, emotional cinematic mood, professional cinematography reference sheet style, ultra-realistic photography."
}
JSON
IM
图像
Photography nano-banana-2

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

{ "image_generation_prompt": { "subject": { "description": "Stylish woman", "expression": "calm and confident", "pose": "standing still, hands in pockets", "attire": { "top": "loose sage-green button-up shirt, tucked in", "bottom": "high-waisted dark trousers" } }, "scene_dynamics": { "action": "vintage cars rushing past at high speed", "effect": "dramatic motion blur trails, long-exposure photography effect, dynamic motion contrast" }, "environment": { "setting": "Street portrait", "atmosphere": "nostalgic, busy but focused" }, "lighting_and_color": { "lighting": "warm golden-hour lighting", "color_palette": "muted retro palette", "accents": "reds, teals, and yellows streaking across the frame" }, "technical_specifications": { "focus": "strong subject isolation, sharp focus on the woman, shallow depth of field", "style": "cinematic realism, editorial fashion mood, nostalgic 1970s film look", "texture": "soft grain, ultra-detailed", "resolution": "high 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": "{ \"image_generation_prompt\": { \"subject\": { \"description\": \"Stylish woman\", \"expression\": \"calm and confident\", \"pose\": \"standing still, hands in pockets\", \"attire\": { \"top\": \"loose sage-green button-up shirt, tucked in\", \"bottom\": \"high-waisted dark trousers\" } }, \"scene_dynamics\": { \"action\": \"vintage cars rushing past at high speed\", \"effect\": \"dramatic motion blur trails, long-exposure photography effect, dynamic motion contrast\" }, \"environment\": { \"setting\": \"Street portrait\", \"atmosphere\": \"nostalgic, busy but focused\" }, \"lighting_and_color\": { \"lighting\": \"warm golden-hour lighting\", \"color_palette\": \"muted retro palette\", \"accents\": \"reds, teals, and yellows streaking across the frame\" }, \"technical_specifications\": { \"focus\": \"strong subject isolation, sharp focus on the woman, shallow depth of field\", \"style\": \"cinematic realism, editorial fashion mood, nostalgic 1970s film look\", \"texture\": \"soft grain, ultra-detailed\", \"resolution\": \"high resolution\" } } }"
}
JSON
IM
图像
Photography nano-banana-2

A high-fashion editorial portrait of a young woman standing...

A high-fashion editorial portrait of a young woman standing by a large, rustic wooden window. She is captured in a candid, over-the-shoulder gaze, looking directly into the camera with a soft, natural expression. One hand is gently resting on the window frame. ​Lighting & Atmosphere: The scene is defined by golden hour sunlight streaming through the window, creating a dramatic "blind shadow" or shutter-effect across her face and blouse. The lighting is warm and high-contrast, with a hazy, ethereal atmosphere that emphasizes a quiet, "Film Noir" mood in a modern setting. ​Wardrobe & Style: She is wearing a translucent, pleated silk chiffon blouse in a muted champagne tone. The fabric is light and airy, catching the backlighting to create a soft glow. Her hair is styled in a tousled, effortless bob with natural texture. ​Technical Specifications: ​Lens: Shot on 85mm f/1.4 for a shallow depth of field. ​Focus: Sharp focus on the eyes with a creamy, soft bokeh background featuring indoor plants and warm interior tones. ​Quality: 8K resolution, cinematic color grading, fine grain, professional 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 high-fashion editorial portrait of a young woman standing by a large, rustic wooden window. She is captured in a candid, over-the-shoulder gaze, looking directly into the camera with a soft, natural expression. One hand is gently resting on the window frame. ​Lighting & Atmosphere: The scene is defined by golden hour sunlight streaming through the window, creating a dramatic \"blind shadow\" or shutter-effect across her face and blouse. The lighting is warm and high-contrast, with a hazy, ethereal atmosphere that emphasizes a quiet, \"Film Noir\" mood in a modern setting. ​Wardrobe & Style: She is wearing a translucent, pleated silk chiffon blouse in a muted champagne tone. The fabric is light and airy, catching the backlighting to create a soft glow. Her hair is styled in a tousled, effortless bob with natural texture. ​Technical Specifications: ​Lens: Shot on 85mm f/1.4 for a shallow depth of field. ​Focus: Sharp focus on the eyes with a creamy, soft bokeh background featuring indoor plants and warm interior tones. ​Quality: 8K resolution, cinematic color grading, fine grain, professional photography."
}
JSON
IM
图像
Photography nano-banana-2

{ "type": "image_generation_prompt", "style": "ultra-rea...

{ "type": "image_generation_prompt", "style": "ultra-realistic editorial fashion photography, Vogue-style", "resolution": "8K HDR", "aspect_ratio": "3:1", "composition": { "layout": "3x1 horizontal grid", "description": "three-panel editorial portrait composition featuring the same person in different artistic styles", "symmetry": "balanced spacing and clean alignment across all panels" }, "identity_preservation": { "gender": "female", "use_reference_image": true, "strict_identity_lock": true, "notes": "Maintain the exact facial features, skin tone, hair type, and natural proportions from the uploaded reference photo." }, "panels": [ { "position": "left", "style": "studio portrait", "environment": { "background": "neutral minimalist studio backdrop" }, "lighting": "soft studio lighting with cinematic face illumination", "clothing": "minimalist black or neutral turtleneck", "expression": "calm and confident", "focus": "sharp focus on the face with shallow depth of field", "color_grading": "magazine-quality tones" }, { "position": "center", "style": "black and white artistic portrait", "environment": { "location": "outdoor setting", "background": "tree shadows and natural light patterns" }, "camera_angle": "dynamic upward angle", "lighting": "natural sunlight creating dramatic contrast", "expression": "elegant and dramatic", "color_mode": "monochrome black and white", "focus": "high detail on facial structure and hair" }, { "position": "right", "style": "fashion close-up", "environment": { "background": "soft warm-toned backdrop" }, "accessories": [ "wide fashionable hat or elegant scarf" ], "lighting": "soft warm lighting enhancing facial features", "details": "delicate fabric textures and sharp detail on eyes and skin", "expression": "stylish, confident, slightly intense" } ], "visual_style": { "aesthetic": "high-end fashion editorial", "lighting": "cinematic lighting across panels", "depth_of_field": "shallow", "textures": "photorealistic skin and fabric textures", "color_transition": "smooth transitions between frames", "finish": "glossy magazine look" }, "constraints": [ "no facial alterations", "no cartoon style", "no distortions", "no watermark", "no text overlays" ], "output_goal": "Create a cohesive 3x1 editorial portrait grid of the same woman in three distinct fashion photography styles with ultra-realistic detail and cinematic lighting." }

查看 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\", \"style\": \"ultra-realistic editorial fashion photography, Vogue-style\", \"resolution\": \"8K HDR\", \"aspect_ratio\": \"3:1\", \"composition\": { \"layout\": \"3x1 horizontal grid\", \"description\": \"three-panel editorial portrait composition featuring the same person in different artistic styles\", \"symmetry\": \"balanced spacing and clean alignment across all panels\" }, \"identity_preservation\": { \"gender\": \"female\", \"use_reference_image\": true, \"strict_identity_lock\": true, \"notes\": \"Maintain the exact facial features, skin tone, hair type, and natural proportions from the uploaded reference photo.\" }, \"panels\": [ { \"position\": \"left\", \"style\": \"studio portrait\", \"environment\": { \"background\": \"neutral minimalist studio backdrop\" }, \"lighting\": \"soft studio lighting with cinematic face illumination\", \"clothing\": \"minimalist black or neutral turtleneck\", \"expression\": \"calm and confident\", \"focus\": \"sharp focus on the face with shallow depth of field\", \"color_grading\": \"magazine-quality tones\" }, { \"position\": \"center\", \"style\": \"black and white artistic portrait\", \"environment\": { \"location\": \"outdoor setting\", \"background\": \"tree shadows and natural light patterns\" }, \"camera_angle\": \"dynamic upward angle\", \"lighting\": \"natural sunlight creating dramatic contrast\", \"expression\": \"elegant and dramatic\", \"color_mode\": \"monochrome black and white\", \"focus\": \"high detail on facial structure and hair\" }, { \"position\": \"right\", \"style\": \"fashion close-up\", \"environment\": { \"background\": \"soft warm-toned backdrop\" }, \"accessories\": [ \"wide fashionable hat or elegant scarf\" ], \"lighting\": \"soft warm lighting enhancing facial features\", \"details\": \"delicate fabric textures and sharp detail on eyes and skin\", \"expression\": \"stylish, confident, slightly intense\" } ], \"visual_style\": { \"aesthetic\": \"high-end fashion editorial\", \"lighting\": \"cinematic lighting across panels\", \"depth_of_field\": \"shallow\", \"textures\": \"photorealistic skin and fabric textures\", \"color_transition\": \"smooth transitions between frames\", \"finish\": \"glossy magazine look\" }, \"constraints\": [ \"no facial alterations\", \"no cartoon style\", \"no distortions\", \"no watermark\", \"no text overlays\" ], \"output_goal\": \"Create a cohesive 3x1 editorial portrait grid of the same woman in three distinct fashion photography styles with ultra-realistic detail and cinematic lighting.\" }"
}
JSON
IM
图像
Photography nano-banana-2

studio fashion collage, 3x3 grid layout, same subject repeat...

studio fashion collage, 3x3 grid layout, same subject repeated in different poses across all panels, clean seamless white background, soft diffused studio lighting, minimalist aesthetic, playful editorial storytelling subject styled in smart casual outfit (navy sweater, relaxed denim, glasses, polished shoes), holding and interacting with a structured luxury handbag as the central prop, quirky narrative scenes in each frame: top row — crouching and interacting with a white cat beside handbag, tossing playing cards mid-air while holding bag, standing holding a bunch of white balloons middle row — pushing a shopping cart filled with bright tennis balls, close-up portrait using a magnifying glass toward camera, sitting on stacked vintage suitcases holding handbag with a tennis ball bottom row — standing with cat draped over shoulders holding bag, sitting backwards on a wooden chair with tennis ball under chair, standing pose with cat sitting inside handbag consistent styling across all frames, balanced composition, symmetrical spacing, editorial grid layout, subtle humor and surreal elements, crisp sharp focus, high fashion campaign vibe, photorealistic, ultra clean shadows, 50mm lens look, f2.0

查看 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": "studio fashion collage, 3x3 grid layout, same subject repeated in different poses across all panels, clean seamless white background, soft diffused studio lighting, minimalist aesthetic, playful editorial storytelling subject styled in smart casual outfit (navy sweater, relaxed denim, glasses, polished shoes), holding and interacting with a structured luxury handbag as the central prop, quirky narrative scenes in each frame: top row — crouching and interacting with a white cat beside handbag, tossing playing cards mid-air while holding bag, standing holding a bunch of white balloons middle row — pushing a shopping cart filled with bright tennis balls, close-up portrait using a magnifying glass toward camera, sitting on stacked vintage suitcases holding handbag with a tennis ball bottom row — standing with cat draped over shoulders holding bag, sitting backwards on a wooden chair with tennis ball under chair, standing pose with cat sitting inside handbag consistent styling across all frames, balanced composition, symmetrical spacing, editorial grid layout, subtle humor and surreal elements, crisp sharp focus, high fashion campaign vibe, photorealistic, ultra clean shadows, 50mm lens look, f2.0"
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。