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

{ "image_request": { "subject": "Woman", "setting"...

{ "image_request": { "subject": "Woman", "setting": { "location": "Parking lot outside a party venue", "time_of_day": "Nighttime", "lighting": "Direct flash photography with slight motion blur" }, "woman_details": { "hair": { "description": "Maintains the original length, color, and volume exactly as shown in the reference image", "style": "Unchanged from the provided image" }, "facial_features": "Identical to the reference image with no modifications", "makeup": { "lips": "Subtle glossy finish", "general": "Clearly visible makeup" }, "pose": { "main_body": "Arms crossed, positioned very close to the camera", "hands": "One hand lifted near the face, suggesting an attempt to shield from the camera" }, "expression": "Unfocused and distracted" }, "attire": { "top": "White strapless lace corset featuring front hook or clasp closures", "bottom": "Light-wash denim low-rise skinny jeans", "accessories": { "bag": "White shoulder bag", "jewelry": [ "Necklace (kept on)", "Bracelet (kept on)" ] } }, "style_keywords": [ "Night-out party vibe", "Y2K aesthetic", "Trendy fashion" ], "camera_perspective": { "distance": "Extremely close range", "framing": "Tight close-up", "angle": "Straight-on, front-facing" }, "image_specifications": { "dimensions": "1200 x 1200 pixels" }, "additional_notes": "Image appears to be captured casually by a friend." } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"image_request\": { \"subject\": \"Woman\", \"setting\": { \"location\": \"Parking lot outside a party venue\", \"time_of_day\": \"Nighttime\", \"lighting\": \"Direct flash photography with slight motion blur\" }, \"woman_details\": { \"hair\": { \"description\": \"Maintains the original length, color, and volume exactly as shown in the reference image\", \"style\": \"Unchanged from the provided image\" }, \"facial_features\": \"Identical to the reference image with no modifications\", \"makeup\": { \"lips\": \"Subtle glossy finish\", \"general\": \"Clearly visible makeup\" }, \"pose\": { \"main_body\": \"Arms crossed, positioned very close to the camera\", \"hands\": \"One hand lifted near the face, suggesting an attempt to shield from the camera\" }, \"expression\": \"Unfocused and distracted\" }, \"attire\": { \"top\": \"White strapless lace corset featuring front hook or clasp closures\", \"bottom\": \"Light-wash denim low-rise skinny jeans\", \"accessories\": { \"bag\": \"White shoulder bag\", \"jewelry\": [ \"Necklace (kept on)\", \"Bracelet (kept on)\" ] } }, \"style_keywords\": [ \"Night-out party vibe\", \"Y2K aesthetic\", \"Trendy fashion\" ], \"camera_perspective\": { \"distance\": \"Extremely close range\", \"framing\": \"Tight close-up\", \"angle\": \"Straight-on, front-facing\" }, \"image_specifications\": { \"dimensions\": \"1200 x 1200 pixels\" }, \"additional_notes\": \"Image appears to be captured casually by a friend.\" } }"
}
JSON
IM
图像
Photography nano-banana-2

A raw, candid smartphone-style photo taken at night with a s...

A raw, candid smartphone-style photo taken at night with a soft bright, direct camera flash, use my face on this image, featuring a man with middle-parted dark hair and a soft, gentle expression looking affectionately at a large, fluffy white cat that he is holding in his arms. The man is wearing a plain black hoodie, and the cat is looking back at him, creating a heartwarming moment. The background consists of a metal chain-link fence with some dark green leafy plants visible behind it, all set against a pitch-black night sky. The lighting has a nostalgic, slightly grainy 2010s digital camera aesthetic with high contrast, sharp shadows, and a natural, unpolished vibe.

查看 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 raw, candid smartphone-style photo taken at night with a soft bright, direct camera flash, use my face on this image, featuring a man with middle-parted dark hair and a soft, gentle expression looking affectionately at a large, fluffy white cat that he is holding in his arms. The man is wearing a plain black hoodie, and the cat is looking back at him, creating a heartwarming moment. The background consists of a metal chain-link fence with some dark green leafy plants visible behind it, all set against a pitch-black night sky. The lighting has a nostalgic, slightly grainy 2010s digital camera aesthetic with high contrast, sharp shadows, and a natural, unpolished vibe."
}
JSON
IM
图像
Photography nano-banana-2

Create A deeply atmospheric and cinematic interior shot, cap...

Create A deeply atmospheric and cinematic interior shot, captured from a slightly low-angle perspective, looks forward from an empty seat in a dimly lit bus. The primary subject is this man seated a few rows ahead, looking directly back at the camera with a subtle, intense gaze. He wears a dark, puffy winter jacket and has the hood of a light blue-grey hoodie pulled up over his head, partially obscuring his face and casting his eyes in shadow, adding a sense of mystery. The overall color grading is cool and desaturated, dominated by deep teal, dark blues, and muted greens, lending a melancholic or introspective mood. The interior of the bus is sparsely lit, with artificial lights casting soft, localized glows and deep shadows. The seats in the foreground, upholstered in a faded teal fabric with abstract yellow patterns, are in soft focus, guiding the eye towards the subject. Through the windows, blurred reflections of the city lights and exterior environment are visible, creating a sense of movement and urban isolation. The man's skin tone (take reference from the image) is rendered with natural texture, visible through the cool-toned lighting. The lighting emphasizes the contours of his face and the folds of his clothing, creating a sense of depth and realism within the muted palette. This shot would likely use a relatively slow shutter speed (e.g., 1/60th or 1/30th of a second) and a moderately wide aperture (e.g., f/2.8-f/4) to capture the low light and atmospheric blur.

查看 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 deeply atmospheric and cinematic interior shot, captured from a slightly low-angle perspective, looks forward from an empty seat in a dimly lit bus. The primary subject is this man seated a few rows ahead, looking directly back at the camera with a subtle, intense gaze. He wears a dark, puffy winter jacket and has the hood of a light blue-grey hoodie pulled up over his head, partially obscuring his face and casting his eyes in shadow, adding a sense of mystery. The overall color grading is cool and desaturated, dominated by deep teal, dark blues, and muted greens, lending a melancholic or introspective mood. The interior of the bus is sparsely lit, with artificial lights casting soft, localized glows and deep shadows. The seats in the foreground, upholstered in a faded teal fabric with abstract yellow patterns, are in soft focus, guiding the eye towards the subject. Through the windows, blurred reflections of the city lights and exterior environment are visible, creating a sense of movement and urban isolation. The man's skin tone (take reference from the image) is rendered with natural texture, visible through the cool-toned lighting. The lighting emphasizes the contours of his face and the folds of his clothing, creating a sense of depth and realism within the muted palette. This shot would likely use a relatively slow shutter speed (e.g., 1/60th or 1/30th of a second) and a moderately wide aperture (e.g., f/2.8-f/4) to capture the low light and atmospheric blur."
}
JSON
IM
图像
Photography nano-banana-2

{ "Objective": "Create a minimalist fashion studio portrai...

{ "Objective": "Create a minimalist fashion studio portrait series with a calm, Scandinavian editorial mood", "PersonaDetails": { "Subject": { "Type": "Young woman", "Hair": "Short, softly waved dark-brown hair", "Accessories": "Thin round eyeglasses", "Expression": "Calm, introspective", "Skin": "Natural skin texture with minimal retouching" } }, "Wardrobe": { "Top": "Chunky camel-colored knit turtleneck sweater", "Bottom": "Beige trousers", "Style": "Timeless autumn fashion" }, "SceneDescription": { "Environment": "Minimalist studio", "Background": "Neutral off-white backdrop", "OverallFeel": "Clean, airy, understated" }, "PortraitSeries": { "SeriesType": "Four-image set", "Poses": [ { "Description": "Seated pose with hands gently clasped under the chin", "Mood": "Quiet, reflective" }, { "Description": "Front-facing portrait with eyes lowered", "Mood": "Soft, contemplative" }, { "Description": "Three-quarter side profile with arms crossed", "Mood": "Poised, thoughtful" }, { "Description": "Close-up portrait with sweater sleeve raised near the face", "Mood": "Intimate, tactile" } ] }, "Composition": { "Framing": "Varied framing from close-up to mid-length", "NegativeSpace": "Generous, balanced negative space", "DepthOfField": "Shallow depth of field for gentle separation" }, "LightingAndColor": { "Lighting": "Soft, diffused studio lighting", "Highlights": "Subtle, natural highlights", "ColorPalette": "Muted warm neutrals (camel, beige, off-white)" }, "ArtDirection": { "Style": "Scandinavian editorial photography", "Aesthetic": "Minimalist, timeless, understated luxury", "TextureEmphasis": "Knit fabric and natural skin detail" }, "PhotographyStyle": { "Genre": "Professional fashion studio photography", "RealismLevel": "High realism with restrained processing", "Finish": "Clean, modern, magazine-ready" }, "Mood": { "Tone": "Calm, introspective, serene", "SeasonalFeel": "Autumn warmth and quiet elegance" }, "NegativePrompt": [ "busy background", "harsh lighting", "bold colors", "heavy makeup", "over-retouching", "glossy fashion look", "street photography" ], "ResponseFormat": { "Type": "Portrait series", "ImageCount": 4, "Orientation": "Portrait", "AspectRatio": "2:3" } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"Objective\": \"Create a minimalist fashion studio portrait series with a calm, Scandinavian editorial mood\", \"PersonaDetails\": { \"Subject\": { \"Type\": \"Young woman\", \"Hair\": \"Short, softly waved dark-brown hair\", \"Accessories\": \"Thin round eyeglasses\", \"Expression\": \"Calm, introspective\", \"Skin\": \"Natural skin texture with minimal retouching\" } }, \"Wardrobe\": { \"Top\": \"Chunky camel-colored knit turtleneck sweater\", \"Bottom\": \"Beige trousers\", \"Style\": \"Timeless autumn fashion\" }, \"SceneDescription\": { \"Environment\": \"Minimalist studio\", \"Background\": \"Neutral off-white backdrop\", \"OverallFeel\": \"Clean, airy, understated\" }, \"PortraitSeries\": { \"SeriesType\": \"Four-image set\", \"Poses\": [ { \"Description\": \"Seated pose with hands gently clasped under the chin\", \"Mood\": \"Quiet, reflective\" }, { \"Description\": \"Front-facing portrait with eyes lowered\", \"Mood\": \"Soft, contemplative\" }, { \"Description\": \"Three-quarter side profile with arms crossed\", \"Mood\": \"Poised, thoughtful\" }, { \"Description\": \"Close-up portrait with sweater sleeve raised near the face\", \"Mood\": \"Intimate, tactile\" } ] }, \"Composition\": { \"Framing\": \"Varied framing from close-up to mid-length\", \"NegativeSpace\": \"Generous, balanced negative space\", \"DepthOfField\": \"Shallow depth of field for gentle separation\" }, \"LightingAndColor\": { \"Lighting\": \"Soft, diffused studio lighting\", \"Highlights\": \"Subtle, natural highlights\", \"ColorPalette\": \"Muted warm neutrals (camel, beige, off-white)\" }, \"ArtDirection\": { \"Style\": \"Scandinavian editorial photography\", \"Aesthetic\": \"Minimalist, timeless, understated luxury\", \"TextureEmphasis\": \"Knit fabric and natural skin detail\" }, \"PhotographyStyle\": { \"Genre\": \"Professional fashion studio photography\", \"RealismLevel\": \"High realism with restrained processing\", \"Finish\": \"Clean, modern, magazine-ready\" }, \"Mood\": { \"Tone\": \"Calm, introspective, serene\", \"SeasonalFeel\": \"Autumn warmth and quiet elegance\" }, \"NegativePrompt\": [ \"busy background\", \"harsh lighting\", \"bold colors\", \"heavy makeup\", \"over-retouching\", \"glossy fashion look\", \"street photography\" ], \"ResponseFormat\": { \"Type\": \"Portrait series\", \"ImageCount\": 4, \"Orientation\": \"Portrait\", \"AspectRatio\": \"2:3\" } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "image_generation_prompt": { "subject": { "mai...

{ "image_generation_prompt": { "subject": { "main": "young female musician bass guitarist performing live on an outdoor stage", "appearance": "long dark wavy layered hair blowing slightly in wind, fair skin, intense focused facial expression, natural makeup, silver hoop earrings", "pose": "standing confidently holding a bass guitar, fingers plucking strings, looking slightly off-camera to the left" }, "attire": { "top": "sleeveless dark grey acid-wash graphic crop top with vintage band aesthetic", "bottoms": "loose fit wide-leg blue denim carpenter jeans with large pockets", "accessories": "black leather belt with double row silver grommets, wide black guitar strap" }, "instrument": { "type": "modern electric bass guitar", "details": "deep blue burst finish with visible wood grain texture (quilted maple top), black hardware, long guitar neck, intricate fretboard details" }, "environment": { "setting": "daytime outdoor concert stage, open air festival vibe", "background_elements": "blurred stage truss structures, black bass amplifier stack with metal grille, microphone stand on the left, overcast bright sky" }, "technical_style": { "quality": "ultra realistic, 8k uhd, hdr, masterwork, sharp focus, high fidelity textures", "lighting": "natural diffuse daylight, soft shadows, cinematic lighting", "camera": "telephoto lens, depth of field, bokeh background, portrait photography" } }, "parameters": { "aspect_ratio": "9:16", "orientation": "vertical long", "resolution": "highest possible" } }

查看 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\": { \"main\": \"young female musician bass guitarist performing live on an outdoor stage\", \"appearance\": \"long dark wavy layered hair blowing slightly in wind, fair skin, intense focused facial expression, natural makeup, silver hoop earrings\", \"pose\": \"standing confidently holding a bass guitar, fingers plucking strings, looking slightly off-camera to the left\" }, \"attire\": { \"top\": \"sleeveless dark grey acid-wash graphic crop top with vintage band aesthetic\", \"bottoms\": \"loose fit wide-leg blue denim carpenter jeans with large pockets\", \"accessories\": \"black leather belt with double row silver grommets, wide black guitar strap\" }, \"instrument\": { \"type\": \"modern electric bass guitar\", \"details\": \"deep blue burst finish with visible wood grain texture (quilted maple top), black hardware, long guitar neck, intricate fretboard details\" }, \"environment\": { \"setting\": \"daytime outdoor concert stage, open air festival vibe\", \"background_elements\": \"blurred stage truss structures, black bass amplifier stack with metal grille, microphone stand on the left, overcast bright sky\" }, \"technical_style\": { \"quality\": \"ultra realistic, 8k uhd, hdr, masterwork, sharp focus, high fidelity textures\", \"lighting\": \"natural diffuse daylight, soft shadows, cinematic lighting\", \"camera\": \"telephoto lens, depth of field, bokeh background, portrait photography\" } }, \"parameters\": { \"aspect_ratio\": \"9:16\", \"orientation\": \"vertical long\", \"resolution\": \"highest possible\" } }"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic two-frame composition. In the top...

Ultra-realistic cinematic two-frame composition. In the top golden vintage frame, an elegant stylish woman wearing a beige blazer, white shirt, and black sunglasses smiles while pouring tea from an ornate engraved copper teapot outward from the frame. The tea flows smoothly out of the frame into the lower frame. In the bottom golden frame, the same woman tilts her head back slightly with a joyful expression, holding a traditional Turkish tea glass as the tea splashes dramatically into it mid-air. Nighttime city skyline with warm glowing lights and water reflections in the background, shallow depth of field, dramatic lighting, high detail, surreal perspective illusion where the liquid connects both frames, cinematic photography, 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": "Ultra-realistic cinematic two-frame composition. In the top golden vintage frame, an elegant stylish woman wearing a beige blazer, white shirt, and black sunglasses smiles while pouring tea from an ornate engraved copper teapot outward from the frame. The tea flows smoothly out of the frame into the lower frame. In the bottom golden frame, the same woman tilts her head back slightly with a joyful expression, holding a traditional Turkish tea glass as the tea splashes dramatically into it mid-air. Nighttime city skyline with warm glowing lights and water reflections in the background, shallow depth of field, dramatic lighting, high detail, surreal perspective illusion where the liquid connects both frames, cinematic photography, ultra realistic, 8k."
}
JSON
IM
图像
Photography nano-banana-2

Cinematic medium shot of a young man with a trimmed beard an...

Cinematic medium shot of a young man with a trimmed beard and short brown hair, standing upright in a lush meadow at twilight. He is captured in profile, looking toward the right, holding a professional black mirrorless camera with a long telephoto lens to his eye level. He wears an olive green corduroy button-down shirt over a plain white t-shirt. The man's chest below the area is hidden inside the grass. The foreground features tall, sharp blades of grass and soft, out-of-focus wheat stalks creating a natural frame. The foreground is filled with tall, deeply blurred wispy wild grasses, with one very prominent blade starting near the camera and arcing high above and across his head, creating a strong layer of depth. The background is a masterclass in bokeh: deep moody blues and greens of distant rolling hills and trees, with a soft motion blur effect on the foliage Large, warm golden bokeh light orbs glow softly in the distance near a blurred stone archway. High-end photography, 85mm lens, f/1.8, moody atmosphere, sharp focus on the subject with a creamy, cinematic background. ar 4:5

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Cinematic medium shot of a young man with a trimmed beard and short brown hair, standing upright in a lush meadow at twilight. He is captured in profile, looking toward the right, holding a professional black mirrorless camera with a long telephoto lens to his eye level. He wears an olive green corduroy button-down shirt over a plain white t-shirt. The man's chest below the area is hidden inside the grass. The foreground features tall, sharp blades of grass and soft, out-of-focus wheat stalks creating a natural frame. The foreground is filled with tall, deeply blurred wispy wild grasses, with one very prominent blade starting near the camera and arcing high above and across his head, creating a strong layer of depth. The background is a masterclass in bokeh: deep moody blues and greens of distant rolling hills and trees, with a soft motion blur effect on the foliage Large, warm golden bokeh light orbs glow softly in the distance near a blurred stone archway. High-end photography, 85mm lens, f/1.8, moody atmosphere, sharp focus on the subject with a creamy, cinematic background. ar 4:5"
}
JSON
IM
图像
Photography nano-banana-2

Full-body portrait of a stylish young man standing against a...

Full-body portrait of a stylish young man standing against a plain light gray background, wearing a fitted black button-up shirt with sleeves rolled up, dark gray slim-fit trousers, and black polished dress shoes. He is posing casually with one hand in his pocket and the other hand near his mouth, slightly lifting one leg. The lighting is soft and even, highlighting his natural features, with a clean minimalist studio aesthetic. Realistic proportions, high-detail, sharp focus, fashion photography 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": "Full-body portrait of a stylish young man standing against a plain light gray background, wearing a fitted black button-up shirt with sleeves rolled up, dark gray slim-fit trousers, and black polished dress shoes. He is posing casually with one hand in his pocket and the other hand near his mouth, slightly lifting one leg. The lighting is soft and even, highlighting his natural features, with a clean minimalist studio aesthetic. Realistic proportions, high-detail, sharp focus, fashion photography style."
}
JSON
IM
图像
Photography nano-banana-2

Use uploaded selfie as ONLY face reference; preserve exact l...

Use uploaded selfie as ONLY face reference; preserve exact likeness/age/hair and natural skin texture; no beautification, no face mixing. Ultra-realistic CCTV/security camera still frame in a building hallway: ceiling corner mount view (high angle 60-70° top-down), wide 2.8-3.6mm fisheye barrel distortion, edge warping. Subject centered under the camera, looking up directly into lens with a cool unbothered expression, one hand adjusting the waistband, the other holding a bag strap or hanging relaxed. Outfit (strict, unisex): oversized graphic print T-shirt (generic print, no readable text/logos), wide baggy jeans, Adidas Campus sneakers (recognizable silhouette), chunky chain necklace. CCTV look: low-light greenish/blue tint, interlaced scanlines, H.264 block compression, mild noise, slight motion smear on background only, timestamp/HUD present but blurred/unreadable (no readable text), vignetting, ceiling light glare. Face is the sharpest point. 3:4

查看 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 uploaded selfie as ONLY face reference; preserve exact likeness/age/hair and natural skin texture; no beautification, no face mixing. Ultra-realistic CCTV/security camera still frame in a building hallway: ceiling corner mount view (high angle 60-70° top-down), wide 2.8-3.6mm fisheye barrel distortion, edge warping. Subject centered under the camera, looking up directly into lens with a cool unbothered expression, one hand adjusting the waistband, the other holding a bag strap or hanging relaxed. Outfit (strict, unisex): oversized graphic print T-shirt (generic print, no readable text/logos), wide baggy jeans, Adidas Campus sneakers (recognizable silhouette), chunky chain necklace. CCTV look: low-light greenish/blue tint, interlaced scanlines, H.264 block compression, mild noise, slight motion smear on background only, timestamp/HUD present but blurred/unreadable (no readable text), vignetting, ceiling light glare. Face is the sharpest point. 3:4"
}
JSON
IM
图像
Photography nano-banana-2

A surreal cinematic portrait of a young man with oval sungla...

A surreal cinematic portrait of a young man with oval sunglasses, eyes closed, calm expression, standing against a dark firey moody background. The right side of his face is disintegrating into smoke, ash, and glowing embers, as if slowly burning away into the air. Fine particles, sparks, and debris float upward, blending seamlessly into thick swirling smoke above his head. Dramatic low-key lighting, high contrast, ultra-detailed skin texture, photorealistic, shallow depth of field, 85mm lens, dark teal and charcoal color palette, emotional and introspective mood, ultra high resolution, masterpiece, volumetric smoke, cinematic composition.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A surreal cinematic portrait of a young man with oval sunglasses, eyes closed, calm expression, standing against a dark firey moody background. The right side of his face is disintegrating into smoke, ash, and glowing embers, as if slowly burning away into the air. Fine particles, sparks, and debris float upward, blending seamlessly into thick swirling smoke above his head. Dramatic low-key lighting, high contrast, ultra-detailed skin texture, photorealistic, shallow depth of field, 85mm lens, dark teal and charcoal color palette, emotional and introspective mood, ultra high resolution, masterpiece, volumetric smoke, cinematic composition."
}
JSON
IM
图像
Photography nano-banana-2

Create an ultra-realistic, cinematic 8K image with high-cont...

Create an ultra-realistic, cinematic 8K image with high-contrast dramatic lighting and a photo-real digital painting aesthetic-use face reference exactly. The man is shown in a full-body side profile facing right, his face and hairstyle copied perfectly with no alterations He wears modern casual streetwear; a light grey crewneck t-shirt, light neutral cargo pants, light-colored high-top boots, and a watch on his left wrist. His posture is slightly slumped, head bowed, eyes looking downward, hands relaxed at his sides, conveying deep introspection and sorrow. Nearly half of his body is dissolving into extremely thick, cloud-like grey smoke filled with glowing yellow dust particles. His left arm, shoulder, torso, legs, and part of his hair become transparent as they break into luminous particles, suggesting active disintegration Behind and partially surrounding him is a massive glowing crescent (C-shaped) energy aura, emitting fiery golden-white plasma light. This aura acts as a powerful rim and backlight, highlighting the smoke, dust, and silhouette. The setting is minimal and stark: a concrete or desolate paved surface meeting a heavily overcast sky. The color palette is nearly monochrome greys and whites, contrasted by intense amber-gold glow, Shallow depth of field, glow/bloom lighting, particle dispersion, cinematic composition, emotional and dramatic 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": "Create an ultra-realistic, cinematic 8K image with high-contrast dramatic lighting and a photo-real digital painting aesthetic-use face reference exactly. The man is shown in a full-body side profile facing right, his face and hairstyle copied perfectly with no alterations He wears modern casual streetwear; a light grey crewneck t-shirt, light neutral cargo pants, light-colored high-top boots, and a watch on his left wrist. His posture is slightly slumped, head bowed, eyes looking downward, hands relaxed at his sides, conveying deep introspection and sorrow. Nearly half of his body is dissolving into extremely thick, cloud-like grey smoke filled with glowing yellow dust particles. His left arm, shoulder, torso, legs, and part of his hair become transparent as they break into luminous particles, suggesting active disintegration Behind and partially surrounding him is a massive glowing crescent (C-shaped) energy aura, emitting fiery golden-white plasma light. This aura acts as a powerful rim and backlight, highlighting the smoke, dust, and silhouette. The setting is minimal and stark: a concrete or desolate paved surface meeting a heavily overcast sky. The color palette is nearly monochrome greys and whites, contrasted by intense amber-gold glow, Shallow depth of field, glow/bloom lighting, particle dispersion, cinematic composition, emotional and dramatic atmosphere."
}
JSON
IM
图像
Photography nano-banana-2

A hyper-realistic 8k high-angle overhead shot, captured with...

A hyper-realistic 8k high-angle overhead shot, captured with a wide-angle lens, presents a romantic scene of a couple lying on a light-colored wooden floor. The lighting is soft and natural, possibly from a window, creating gentle highlights on the balloons and subtle shadows on the floor, contributing to a cinematic atmosphere. The female subject, uploaded face as reference, is positioned on her back, wearing a black crop top, light blue denim shorts, and a white unbuttoned shirt draped over her. Her left arm is bent with her hand near her head, and her right arm is gently extended towards the male. The male subject, uploaded face as reference, is also on his back, wearing a light grey t-shirt and light blue distressed denim jeans. His left arm is bent, hand near the female's head, and his right arm is relaxed. They are lying close together, heads touching, looking into each other's eyes with soft, affectionate smiles. The entire floor around and between them is densely decorated with a multitude of shiny red heart-shaped foil balloons of varying sizes, interspersed with several white round latex balloons, and countless small red and white rose petals, creating a highly detailed texture and vibrant color contrast against the light wood. The composition is a full-body shot, showcasing the couple and the extensive, immersive decorations.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic 8k high-angle overhead shot, captured with a wide-angle lens, presents a romantic scene of a couple lying on a light-colored wooden floor. The lighting is soft and natural, possibly from a window, creating gentle highlights on the balloons and subtle shadows on the floor, contributing to a cinematic atmosphere. The female subject, uploaded face as reference, is positioned on her back, wearing a black crop top, light blue denim shorts, and a white unbuttoned shirt draped over her. Her left arm is bent with her hand near her head, and her right arm is gently extended towards the male. The male subject, uploaded face as reference, is also on his back, wearing a light grey t-shirt and light blue distressed denim jeans. His left arm is bent, hand near the female's head, and his right arm is relaxed. They are lying close together, heads touching, looking into each other's eyes with soft, affectionate smiles. The entire floor around and between them is densely decorated with a multitude of shiny red heart-shaped foil balloons of varying sizes, interspersed with several white round latex balloons, and countless small red and white rose petals, creating a highly detailed texture and vibrant color contrast against the light wood. The composition is a full-body shot, showcasing the couple and the extensive, immersive decorations."
}
JSON
IM
图像
Photography nano-banana-2

Generate a highly detailed, photorealistic 8K streetwear fas...

Generate a highly detailed, photorealistic 8K streetwear fashion portrait of Rosé of Blackpink, who is dominating about 90% of the frame. The shot is taken from a low angle with a close-up perspective, using a wide-angle lens with heavy fisheye distortion to simulate a photo taken on a modern smartphone. She has her signature bleached blonde hair in thick pigtail braids, pale porcelain skin, and a confident expression. She is in a low, crouched squat position on the floor, balancing on the spiked high heels and both hands are placed flat on her thighs, leaning slightly forward, and looking directly at the camera. Cobalt-framed rectangular retro sunglasses slightly away from her eyes with both hands. She is wearing a cobalt blue cotton halter crop top, tight cobalt blue latex leggings, and cobalt blue high heels. Her accessories include a ruby bead necklace with a gold star pendant, silver hoop earrings, gold rings, and a cobalt blue bracelet with a raised texture. The outdoor setting features a vibrant, textured teal wall behind her with a graffiti written 'Alice' and a red metal grate above. The scene is lit by intense, direct daytime sunlight, creating hard shadows and high contrast. A small "yapper" watermark is in the bottom right corner. Aspect ratio 9:16.

查看 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": "Generate a highly detailed, photorealistic 8K streetwear fashion portrait of Rosé of Blackpink, who is dominating about 90% of the frame. The shot is taken from a low angle with a close-up perspective, using a wide-angle lens with heavy fisheye distortion to simulate a photo taken on a modern smartphone. She has her signature bleached blonde hair in thick pigtail braids, pale porcelain skin, and a confident expression. She is in a low, crouched squat position on the floor, balancing on the spiked high heels and both hands are placed flat on her thighs, leaning slightly forward, and looking directly at the camera. Cobalt-framed rectangular retro sunglasses slightly away from her eyes with both hands. She is wearing a cobalt blue cotton halter crop top, tight cobalt blue latex leggings, and cobalt blue high heels. Her accessories include a ruby bead necklace with a gold star pendant, silver hoop earrings, gold rings, and a cobalt blue bracelet with a raised texture. The outdoor setting features a vibrant, textured teal wall behind her with a graffiti written 'Alice' and a red metal grate above. The scene is lit by intense, direct daytime sunlight, creating hard shadows and high contrast. A small \"yapper\" watermark is in the bottom right corner. Aspect ratio 9:16."
}
JSON
IM
图像
Photography nano-banana-2

A hyper-realistic, 8k, high-fidelity photograph captured wit...

A hyper-realistic, 8k, high-fidelity photograph captured with a wide-angle lens and shallow depth of field, creating a dramatic forced perspective. The composition features a colossal human face and hand on the right side, filling the frame, with the hand extended palm-up towards the left. The giant person, with a full beard and mustache, has their mouth slightly agape in an expression of surprise or speech, looking down towards their palm. On the palm of this giant hand stands a miniature person, appearing tiny in comparison, wearing a black short-sleeved t-shirt and light khaki pants, with dark curly hair. This miniature figure is captured mid-action, with arms slightly bent and legs in a dynamic, running or reacting pose, also with an open mouth as if shouting or speaking. The background is an extremely blurred, warm-toned indoor setting, suggesting an office or study with hints of wooden shelves and a blue binder, providing a soft bokeh effect. Cinematic lighting illuminates the scene with soft, warm light, highlighting the highly detailed texture of the skin, hair, and clothing, while maintaining a natural, diffused quality. The character's face for both the giant and the miniature person is: uploaded face as reference.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic, 8k, high-fidelity photograph captured with a wide-angle lens and shallow depth of field, creating a dramatic forced perspective. The composition features a colossal human face and hand on the right side, filling the frame, with the hand extended palm-up towards the left. The giant person, with a full beard and mustache, has their mouth slightly agape in an expression of surprise or speech, looking down towards their palm. On the palm of this giant hand stands a miniature person, appearing tiny in comparison, wearing a black short-sleeved t-shirt and light khaki pants, with dark curly hair. This miniature figure is captured mid-action, with arms slightly bent and legs in a dynamic, running or reacting pose, also with an open mouth as if shouting or speaking. The background is an extremely blurred, warm-toned indoor setting, suggesting an office or study with hints of wooden shelves and a blue binder, providing a soft bokeh effect. Cinematic lighting illuminates the scene with soft, warm light, highlighting the highly detailed texture of the skin, hair, and clothing, while maintaining a natural, diffused quality. The character's face for both the giant and the miniature person is: uploaded face as reference."
}
JSON
IM
图像
Photography nano-banana-2

{ "Objective": "Create a dramatic black-and-white cinemati...

{ "Objective": "Create a dramatic black-and-white cinematic portrait with a classic film-noir mood and selective color emphasis", "PersonaDetails": { "Subject": { "Type": "Young man", "Hair": "Medium-length, naturally styled", "FacialHair": "Well-groomed beard", "Pose": "Thoughtful pose with one hand resting near the chin", "Expression": "Introspective, confident, composed", "Wardrobe": "Dark jacket", "Accessories": { "Sunglasses": { "Type": "Stylish aviator sunglasses", "LensColor": "Warm amber/yellow-tinted lenses", "SpecialTreatment": "Only colored element in an otherwise monochrome image" } } } }, "Composition": { "Framing": "Close-up to mid-close portrait", "Angle": "Eye-level, slightly cinematic framing", "DepthOfField": "Shallow depth of field", "Focus": "Sharp focus on facial features and sunglasses" }, "LightingAndAtmosphere": { "LightingStyle": "Strong cinematic backlighting", "Effects": [ "Glowing bokeh lights in the background", "Studio or stage-light appearance" ], "Contrast": "High contrast with deep blacks and bright highlights", "Mood": "Moody, dramatic, contemplative" }, "ArtDirection": { "Style": "Classic film-noir photography", "ColorTreatment": { "Base": "Black-and-white", "Accent": "Selective color on amber/yellow lenses" }, "TextureDetail": "Ultra-detailed skin, hair, and fabric textures", "Aesthetic": "Elegant, timeless, cinematic" }, "PhotographyStyle": { "Genre": "Professional cinematic portrait photography", "ImageQuality": "Ultra-high resolution, crisp detail", "Finish": "Refined, editorial, gallery-worthy" }, "Mood": { "Tone": "Serious, reflective, stylish", "EmotionalFeel": "Quiet intensity and classic masculinity" }, "NegativePrompt": [ "full color image", "flat lighting", "low contrast", "modern casual snapshot", "oversharpening", "plastic skin", "cartoon", "anime" ], "ResponseFormat": { "Type": "Single image", "Orientation": "Portrait", "AspectRatio": "2:3" } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"Objective\": \"Create a dramatic black-and-white cinematic portrait with a classic film-noir mood and selective color emphasis\", \"PersonaDetails\": { \"Subject\": { \"Type\": \"Young man\", \"Hair\": \"Medium-length, naturally styled\", \"FacialHair\": \"Well-groomed beard\", \"Pose\": \"Thoughtful pose with one hand resting near the chin\", \"Expression\": \"Introspective, confident, composed\", \"Wardrobe\": \"Dark jacket\", \"Accessories\": { \"Sunglasses\": { \"Type\": \"Stylish aviator sunglasses\", \"LensColor\": \"Warm amber/yellow-tinted lenses\", \"SpecialTreatment\": \"Only colored element in an otherwise monochrome image\" } } } }, \"Composition\": { \"Framing\": \"Close-up to mid-close portrait\", \"Angle\": \"Eye-level, slightly cinematic framing\", \"DepthOfField\": \"Shallow depth of field\", \"Focus\": \"Sharp focus on facial features and sunglasses\" }, \"LightingAndAtmosphere\": { \"LightingStyle\": \"Strong cinematic backlighting\", \"Effects\": [ \"Glowing bokeh lights in the background\", \"Studio or stage-light appearance\" ], \"Contrast\": \"High contrast with deep blacks and bright highlights\", \"Mood\": \"Moody, dramatic, contemplative\" }, \"ArtDirection\": { \"Style\": \"Classic film-noir photography\", \"ColorTreatment\": { \"Base\": \"Black-and-white\", \"Accent\": \"Selective color on amber/yellow lenses\" }, \"TextureDetail\": \"Ultra-detailed skin, hair, and fabric textures\", \"Aesthetic\": \"Elegant, timeless, cinematic\" }, \"PhotographyStyle\": { \"Genre\": \"Professional cinematic portrait photography\", \"ImageQuality\": \"Ultra-high resolution, crisp detail\", \"Finish\": \"Refined, editorial, gallery-worthy\" }, \"Mood\": { \"Tone\": \"Serious, reflective, stylish\", \"EmotionalFeel\": \"Quiet intensity and classic masculinity\" }, \"NegativePrompt\": [ \"full color image\", \"flat lighting\", \"low contrast\", \"modern casual snapshot\", \"oversharpening\", \"plastic skin\", \"cartoon\", \"anime\" ], \"ResponseFormat\": { \"Type\": \"Single image\", \"Orientation\": \"Portrait\", \"AspectRatio\": \"2:3\" } }"
}
JSON
IM
图像
Photography nano-banana-2

cinematic portrait of a young woman standing perfectly still...

cinematic portrait of a young woman standing perfectly still as the city around her spirals in circular motion blur, streaks of headlights and neon lights orbiting her body like gravity pulling the world inward, dramatic teal and orange cinematic color grading, wind moving strands of hair, calm expression contrasting chaotic motion, shallow depth of field, shot on a 50mm lens, realistic skin texture, atmospheric night lighting, vertical composition

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "cinematic portrait of a young woman standing perfectly still as the city around her spirals in circular motion blur, streaks of headlights and neon lights orbiting her body like gravity pulling the world inward, dramatic teal and orange cinematic color grading, wind moving strands of hair, calm expression contrasting chaotic motion, shallow depth of field, shot on a 50mm lens, realistic skin texture, atmospheric night lighting, vertical composition"
}
JSON
IM
图像
Photography nano-banana-2

{ "intent": { "summary": "Land-art photography of a wo...

{ "intent": { "summary": "Land-art photography of a woman connected to the sea via a specific water-filled trench in the sand, matching a provided schematic diagram.", "strategy": "Structural Precision: Defining the 'line' as a dug channel to prevent chaotic water flow." }, "frame": { "aspect_ratio": "3:2", "shot_size": "Wide Shot (WS)", "orientation": "Landscape", "composition_guide": "Diagrammatic Layout: Woman on left, Sea on right, connected by a sinuous line." }, "subject": { "subject_type": "Human", "identity_summary": "Female figure acting as the anchor for a sand-art installation.", "visual_signature": { "facial_signature": { "face_shape": "Soft", "eye_details": "Closed", "nose_details": "Natural", "lip_details": "Relaxed", "cheek_and_jaw": "Relaxed", "unique_features": "Wet hair" }, "body_signature": { "build": "Slender", "proportions": "Natural", "skin_tone_and_texture": "Natural, sand-dusted", "height_estimation_cm": 165, "unique_markings": "None" } }, "pose_and_action": { "description": "Lying in a tight fetal position inside a sand circle.", "body_position": "Curled on side, knees tucked high.", "limb_positions": "Arms tucked in, hugging knees.", "hand_gestures": "Hands folded near face/knees.", "facial_expression": "Peaceful, sleeping.", "gaze_direction": "Eyes closed." }, "inventory": { "wardrobe": "White dress, wet and clinging to the body.", "accessories": "None.", "held_objects": "None.", "hair_style": "Dark, wet, splayed out on the sand." } }, "environment": { "setting_type": "Outdoor", "location_description": "Flat sandy beach with specific sand-art markings.", "time_of_day": "Daytime", "weather_conditions": "Clear", "background_elements": "The beach features a deep, hand-dug trench snaking from the sea to the woman's belly. This trench is filled with sea water but distinct from the surrounding dry sand. A separate circular groove surrounds the woman." }, "lighting": { "global_illumination": "Natural Sunlight", "primary_source": "Sun", "direction": "Top-down", "shadow_quality": "Sharp shadows inside the dug sand trenches to emphasize depth.", "color_temperature": "Daylight (5500k)" }, "camera": { "angle": "Bird's Eye View", "lens_type": "35mm Wide Angle", "focal_length_mm": 35, "aperture": "f/8 (Deep focus to keep the entire sand drawing sharp)" }, "post_processing": { "art_medium": "Photography", "style_modifiers": "Land Art, Conceptual, National Geographic", "color_grade": "Natural tones, high contrast between water in the trench and the sand.", "rendering_engine": "N/A", "quality_boosters": "8k, sharp focus, hyper-realistic water texture" }, "negative": { "artifact_suppression": "waves washing over subject, messy water, flooding, broken lines, chaotic splash, surfing", "subject_excludes": "standing, dry sand, rocks" } }

查看 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": "{ \"intent\": { \"summary\": \"Land-art photography of a woman connected to the sea via a specific water-filled trench in the sand, matching a provided schematic diagram.\", \"strategy\": \"Structural Precision: Defining the 'line' as a dug channel to prevent chaotic water flow.\" }, \"frame\": { \"aspect_ratio\": \"3:2\", \"shot_size\": \"Wide Shot (WS)\", \"orientation\": \"Landscape\", \"composition_guide\": \"Diagrammatic Layout: Woman on left, Sea on right, connected by a sinuous line.\" }, \"subject\": { \"subject_type\": \"Human\", \"identity_summary\": \"Female figure acting as the anchor for a sand-art installation.\", \"visual_signature\": { \"facial_signature\": { \"face_shape\": \"Soft\", \"eye_details\": \"Closed\", \"nose_details\": \"Natural\", \"lip_details\": \"Relaxed\", \"cheek_and_jaw\": \"Relaxed\", \"unique_features\": \"Wet hair\" }, \"body_signature\": { \"build\": \"Slender\", \"proportions\": \"Natural\", \"skin_tone_and_texture\": \"Natural, sand-dusted\", \"height_estimation_cm\": 165, \"unique_markings\": \"None\" } }, \"pose_and_action\": { \"description\": \"Lying in a tight fetal position inside a sand circle.\", \"body_position\": \"Curled on side, knees tucked high.\", \"limb_positions\": \"Arms tucked in, hugging knees.\", \"hand_gestures\": \"Hands folded near face/knees.\", \"facial_expression\": \"Peaceful, sleeping.\", \"gaze_direction\": \"Eyes closed.\" }, \"inventory\": { \"wardrobe\": \"White dress, wet and clinging to the body.\", \"accessories\": \"None.\", \"held_objects\": \"None.\", \"hair_style\": \"Dark, wet, splayed out on the sand.\" } }, \"environment\": { \"setting_type\": \"Outdoor\", \"location_description\": \"Flat sandy beach with specific sand-art markings.\", \"time_of_day\": \"Daytime\", \"weather_conditions\": \"Clear\", \"background_elements\": \"The beach features a deep, hand-dug trench snaking from the sea to the woman's belly. This trench is filled with sea water but distinct from the surrounding dry sand. A separate circular groove surrounds the woman.\" }, \"lighting\": { \"global_illumination\": \"Natural Sunlight\", \"primary_source\": \"Sun\", \"direction\": \"Top-down\", \"shadow_quality\": \"Sharp shadows inside the dug sand trenches to emphasize depth.\", \"color_temperature\": \"Daylight (5500k)\" }, \"camera\": { \"angle\": \"Bird's Eye View\", \"lens_type\": \"35mm Wide Angle\", \"focal_length_mm\": 35, \"aperture\": \"f/8 (Deep focus to keep the entire sand drawing sharp)\" }, \"post_processing\": { \"art_medium\": \"Photography\", \"style_modifiers\": \"Land Art, Conceptual, National Geographic\", \"color_grade\": \"Natural tones, high contrast between water in the trench and the sand.\", \"rendering_engine\": \"N/A\", \"quality_boosters\": \"8k, sharp focus, hyper-realistic water texture\" }, \"negative\": { \"artifact_suppression\": \"waves washing over subject, messy water, flooding, broken lines, chaotic splash, surfing\", \"subject_excludes\": \"standing, dry sand, rocks\" } }"
}
JSON
IM
图像
Photography nano-banana-2

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

{ "generation_request": { "meta_data": { "tool": "NanoBanana Pro", "task_type": "fashion_variation_grid_9panel", "language": "en", "priority": "highest", "version": "v1.0_GOLDEN_GODDESS_JEWELRY_9GRID" }, "input": { "mode": "text_to_image", "notes": "Create a 3x3 high-fashion goddess editorial grid featuring the same elegant woman with luxurious gold body jewelry and draped styling." }, "output_settings": { "aspect_ratio": "4:5", "orientation": "portrait", "resolution_target": "ultra_high_res", "num_images": 1, "layout": { "type": "grid", "rows": 3, "cols": 3, "gutter": "thin", "outer_border": "none", "panel_consistency": "very_high" }, "render_style": "golden_goddess_editorial", "sharpness": "editorial_crisp", "grain": "subtle_clean" }, "scene": { "environment": "warm sand-toned luxury studio with subtle stone texture", "lighting": "golden diffused light with bronzed highlights on skin and jewelry", "mood": "divine, radiant, regal, sensual" }, "subject": { "description": "same elegant adult woman across all 9 panels", "face": "same identity in all panels, calm regal expression", "skin": "sunlit bronzed luminous skin texture", "hair": "soft dark hair styled loosely back with glowing face-framing strands", "makeup": "gold-bronze eyelids, subtle liner, luminous skin, glossy nude lips", "expression": "serene, elevated, goddess-like" }, "wardrobe": { "top": "soft ivory or sand draped wrap tops with goddess-inspired constructions", "bottom": "flowing low-rise draped bottoms", "accessories": "dramatic gold cuff bracelets, layered gold body chains, gold waist jewelry, delicate rings", "styling": "ancient goddess meets modern couture" }, "composition_rules": { "face_visibility": "mandatory in all 9 panels", "framing": "mid-length to upper-thigh framing", "identity_consistency": "same woman in every panel" }, "panel_design": { "panel_1": "front portrait with crossed halter drape and gold chest jewelry", "panel_2": "front portrait with bandeau drape and gold waist chain", "panel_3": "three-quarter portrait with one-shoulder drape and layered gold accessories", "panel_4": "front portrait with off-shoulder draped wrap and stacked gold cuffs", "panel_5": "front portrait with sculptural crossed neckline and gold body chain", "panel_6": "front portrait with elongated halter drape and arm jewelry", "panel_7": "three-quarter portrait with tied-front drape and ornate waist chain", "panel_8": "front portrait with diagonal wrapped bust and gold accents", "panel_9": "front portrait with bandeau and crisscross waist drape, hand touching collarbone" }, "camera": { "lens": "85mm portrait lens", "style": "luxury goddess fashion photography", "depth_of_field": "shallow", "angle": "eye-level" }, "quality_control": { "identity_consistency": "maximum", "panel_consistency": "very_high", "face_priority": "absolute", "anatomy_accuracy": "maximum", "hands_priority": "very_high", "jewelry_integrity": "very_high", "fabric_realism": "high" }, "negative_prompt": [ "cheap costume jewelry", "different woman", "extra fingers", "missing fingers", "warped anatomy", "plastic skin", "text", "watermark", "logo" ] } }

查看 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\": \"fashion_variation_grid_9panel\", \"language\": \"en\", \"priority\": \"highest\", \"version\": \"v1.0_GOLDEN_GODDESS_JEWELRY_9GRID\" }, \"input\": { \"mode\": \"text_to_image\", \"notes\": \"Create a 3x3 high-fashion goddess editorial grid featuring the same elegant woman with luxurious gold body jewelry and draped styling.\" }, \"output_settings\": { \"aspect_ratio\": \"4:5\", \"orientation\": \"portrait\", \"resolution_target\": \"ultra_high_res\", \"num_images\": 1, \"layout\": { \"type\": \"grid\", \"rows\": 3, \"cols\": 3, \"gutter\": \"thin\", \"outer_border\": \"none\", \"panel_consistency\": \"very_high\" }, \"render_style\": \"golden_goddess_editorial\", \"sharpness\": \"editorial_crisp\", \"grain\": \"subtle_clean\" }, \"scene\": { \"environment\": \"warm sand-toned luxury studio with subtle stone texture\", \"lighting\": \"golden diffused light with bronzed highlights on skin and jewelry\", \"mood\": \"divine, radiant, regal, sensual\" }, \"subject\": { \"description\": \"same elegant adult woman across all 9 panels\", \"face\": \"same identity in all panels, calm regal expression\", \"skin\": \"sunlit bronzed luminous skin texture\", \"hair\": \"soft dark hair styled loosely back with glowing face-framing strands\", \"makeup\": \"gold-bronze eyelids, subtle liner, luminous skin, glossy nude lips\", \"expression\": \"serene, elevated, goddess-like\" }, \"wardrobe\": { \"top\": \"soft ivory or sand draped wrap tops with goddess-inspired constructions\", \"bottom\": \"flowing low-rise draped bottoms\", \"accessories\": \"dramatic gold cuff bracelets, layered gold body chains, gold waist jewelry, delicate rings\", \"styling\": \"ancient goddess meets modern couture\" }, \"composition_rules\": { \"face_visibility\": \"mandatory in all 9 panels\", \"framing\": \"mid-length to upper-thigh framing\", \"identity_consistency\": \"same woman in every panel\" }, \"panel_design\": { \"panel_1\": \"front portrait with crossed halter drape and gold chest jewelry\", \"panel_2\": \"front portrait with bandeau drape and gold waist chain\", \"panel_3\": \"three-quarter portrait with one-shoulder drape and layered gold accessories\", \"panel_4\": \"front portrait with off-shoulder draped wrap and stacked gold cuffs\", \"panel_5\": \"front portrait with sculptural crossed neckline and gold body chain\", \"panel_6\": \"front portrait with elongated halter drape and arm jewelry\", \"panel_7\": \"three-quarter portrait with tied-front drape and ornate waist chain\", \"panel_8\": \"front portrait with diagonal wrapped bust and gold accents\", \"panel_9\": \"front portrait with bandeau and crisscross waist drape, hand touching collarbone\" }, \"camera\": { \"lens\": \"85mm portrait lens\", \"style\": \"luxury goddess fashion photography\", \"depth_of_field\": \"shallow\", \"angle\": \"eye-level\" }, \"quality_control\": { \"identity_consistency\": \"maximum\", \"panel_consistency\": \"very_high\", \"face_priority\": \"absolute\", \"anatomy_accuracy\": \"maximum\", \"hands_priority\": \"very_high\", \"jewelry_integrity\": \"very_high\", \"fabric_realism\": \"high\" }, \"negative_prompt\": [ \"cheap costume jewelry\", \"different woman\", \"extra fingers\", \"missing fingers\", \"warped anatomy\", \"plastic skin\", \"text\", \"watermark\", \"logo\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic fashion black and white portrait of a man wi...

Ultra-realistic fashion black and white portrait of a man with short light hair, wearing a dark tailored coat and a black turtleneck. They hold a cigarette between their lips as soft smoke curls around their face. Extremely detailed natural skin texture visible pores, fine lines, realistic contrast and tonal range. lifelike matte highlights. Subtle film grain, soft diffused lighting, minimalist background. High-fashion editorial mood, sharp details, expressive gaze, dramatic monochrome aesthetic, Hasselblad X2D, 30mm lens, strong contrast, daylight, fashion composition, architectural elements, editorial clarity medium format -p cz2pqao

查看 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 black and white portrait of a man with short light hair, wearing a dark tailored coat and a black turtleneck. They hold a cigarette between their lips as soft smoke curls around their face. Extremely detailed natural skin texture visible pores, fine lines, realistic contrast and tonal range. lifelike matte highlights. Subtle film grain, soft diffused lighting, minimalist background. High-fashion editorial mood, sharp details, expressive gaze, dramatic monochrome aesthetic, Hasselblad X2D, 30mm lens, strong contrast, daylight, fashion composition, architectural elements, editorial clarity medium format -p cz2pqao"
}
JSON
IM
图像
Photography nano-banana-2

A stylish male model sitting on a white cube in a minimalist...

A stylish male model sitting on a white cube in a minimalist studio with a vibrant orange background. He is wearing a fitted green knit sweater, black pants, and white sneakers, paired with black sunglasses for a modern, confident look. The model sits relaxed with hands resting together, facing the camera. Soft directional lighting creates subtle shadows on the floor and background, adding depth and a premium fashion editorial feel. Clean composition, centered framing, smooth backdrop, high contrast colors, sharp details, professional studio photography, 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": "A stylish male model sitting on a white cube in a minimalist studio with a vibrant orange background. He is wearing a fitted green knit sweater, black pants, and white sneakers, paired with black sunglasses for a modern, confident look. The model sits relaxed with hands resting together, facing the camera. Soft directional lighting creates subtle shadows on the floor and background, adding depth and a premium fashion editorial feel. Clean composition, centered framing, smooth backdrop, high contrast colors, sharp details, professional studio photography, ultra-realistic, 8K."
}
JSON
IM
图像
Photography nano-banana-2

Using the reference picture, create A stylish man sitting on...

Using the reference picture, create A stylish man sitting on a luxurious vintage red velvet sofa, wearing black silk shirt, sunglasses, confi-dently holding a cheetah adorned with cinematic lighting, dollars are spread on sofa too and there are two guards on back side in blur bg, luxury life-style, dramatic atmosphere." 100% Real Face 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": "Using the reference picture, create A stylish man sitting on a luxurious vintage red velvet sofa, wearing black silk shirt, sunglasses, confi-dently holding a cheetah adorned with cinematic lighting, dollars are spread on sofa too and there are two guards on back side in blur bg, luxury life-style, dramatic atmosphere.\" 100% Real Face 8K Resolution"
}
JSON
IM
图像
Photography nano-banana-2

A low-angle, cinematic close-up shot looking through a rain-...

A low-angle, cinematic close-up shot looking through a rain-slicked car window. Inside the car, a contemplative man with short dark hair and slight stubble is visible, looking out toward the city. The focus is sharp on the water droplets clinging to the glass, while the man and the background are slightly softer. ​Setting & Atmosphere: A bustling European city street at night during a rainstorm. The atmosphere is melancholic yet cozy. In the reflection of the car door and window, blurred city lights, glowing neon shop signs (blues and reds), and the outlines of historical architecture are visible. ​Lighting & Color: * Lighting: Naturalistic night lighting provided by street lamps and neon signs, creating a cool blue and teal base with warm orange and red highlights. ​Reflections: Complex reflections of wet pavement and passing cars on the dark metallic surface of the vehicle. ​Technical Specs: 35mm lens, f/1.8 aperture for shallow depth of field, high contrast, moody film grain, hyper-realistic textures, shot on Sony A7R IV 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 low-angle, cinematic close-up shot looking through a rain-slicked car window. Inside the car, a contemplative man with short dark hair and slight stubble is visible, looking out toward the city. The focus is sharp on the water droplets clinging to the glass, while the man and the background are slightly softer. ​Setting & Atmosphere: A bustling European city street at night during a rainstorm. The atmosphere is melancholic yet cozy. In the reflection of the car door and window, blurred city lights, glowing neon shop signs (blues and reds), and the outlines of historical architecture are visible. ​Lighting & Color: * Lighting: Naturalistic night lighting provided by street lamps and neon signs, creating a cool blue and teal base with warm orange and red highlights. ​Reflections: Complex reflections of wet pavement and passing cars on the dark metallic surface of the vehicle. ​Technical Specs: 35mm lens, f/1.8 aperture for shallow depth of field, high contrast, moody film grain, hyper-realistic textures, shot on Sony A7R IV style."
}
JSON
IM
图像
Photography nano-banana-2

A cinematic night-time urban portrait of a confident, handso...

A cinematic night-time urban portrait of a confident, handsome man leaning against a black luxury SUV on a modern city highway. He is wearing a black blazer over a white unbuttoned dress shirt and light blue tailored trousers, one hand in his pocket, the other resting on the car. Clean haircut, light stubble, sharp masculine features. Skyscrapers with glowing windows in the background, streetlights creating bokeh, long light trails from passing traffic. Moody, high-contrast lighting, shallow depth of field, professional fashion photography, ultra-realistic, 85mm lens, f/1.8, cinematic color grading, luxury lifestyle 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 night-time urban portrait of a confident, handsome man leaning against a black luxury SUV on a modern city highway. He is wearing a black blazer over a white unbuttoned dress shirt and light blue tailored trousers, one hand in his pocket, the other resting on the car. Clean haircut, light stubble, sharp masculine features. Skyscrapers with glowing windows in the background, streetlights creating bokeh, long light trails from passing traffic. Moody, high-contrast lighting, shallow depth of field, professional fashion photography, ultra-realistic, 85mm lens, f/1.8, cinematic color grading, luxury lifestyle aesthetic."
}
JSON
IM
图像
Photography nano-banana-2

Using the uploaded picture as the only reference and without...

Using the uploaded picture as the only reference and without changing the face, create a fashion editorial portrait of a woman sitting confidently in a plush oversized pink faux-fur armchair against a soft pastel pink background; she wears a fluffy pink jacket, white trousers and white lace-up boots, seated with legs crossed and a calm confident expression; surrounded symmetrically by multiple fluffy long-haired cats in cream, gray and white tones perched on the chair arms, backrest and floor around her; highly stylized monochromatic pink aesthetic, soft studio lighting, clean background, luxurious textures in fur fabric and cat fur, centered composition, fashion magazine style, high detail, shallow depth of field, ultra-sharp textures, high dynamic range, 8k ultra-photorealism, masterpiece 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": "Using the uploaded picture as the only reference and without changing the face, create a fashion editorial portrait of a woman sitting confidently in a plush oversized pink faux-fur armchair against a soft pastel pink background; she wears a fluffy pink jacket, white trousers and white lace-up boots, seated with legs crossed and a calm confident expression; surrounded symmetrically by multiple fluffy long-haired cats in cream, gray and white tones perched on the chair arms, backrest and floor around her; highly stylized monochromatic pink aesthetic, soft studio lighting, clean background, luxurious textures in fur fabric and cat fur, centered composition, fashion magazine style, high detail, shallow depth of field, ultra-sharp textures, high dynamic range, 8k ultra-photorealism, masterpiece quality."
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。