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

Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME...

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]”

查看 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 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
IM
图像
Photography nano-banana-2

A detailed, high-fashion studio photograph of a woman posing...

A detailed, high-fashion studio photograph of a woman posing gracefully, wearing a luxurious olive green velvet saree draped elegantly over her shoulder, paired with a matching heavily embroidered sleeveless blouse that highlights her midriff. The lighting is moody and dramatic, accentuating the rich texture of the velvet and giving her skin a subtle, dewy sheen. Her hands are adorned with intricate, dark henna (mehndi) designs, and she is wearing traditional gold earrings, looking directly into the camera with a confident expression.

查看 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 detailed, high-fashion studio photograph of a woman posing gracefully, wearing a luxurious olive green velvet saree draped elegantly over her shoulder, paired with a matching heavily embroidered sleeveless blouse that highlights her midriff. The lighting is moody and dramatic, accentuating the rich texture of the velvet and giving her skin a subtle, dewy sheen. Her hands are adorned with intricate, dark henna (mehndi) designs, and she is wearing traditional gold earrings, looking directly into the camera with a confident expression."
}
JSON
IM
图像
Photography nano-banana-2

Paparazzi-style extreme close-up photo of a woman with strik...

Paparazzi-style extreme close-up photo of a woman with striking facial features, caught off-guard while turning toward the camera. Face and shoulders only, shot from a low angle. Strong harsh on-camera flash, grainy high-ISO, raw candid street-photography feel. Background shows a crowded scene with motion blur (Paris Fashion Week atmosphere). Intense, spontaneous energy, imperfect and real. She is wearing a school uniform. Ultra-realistic, cinematic realism, high detail skin texture, slight lens distortion. Camera style: “35mm paparazzi lens, f/2.8, flash blown highlights” Look: “2000s tabloid photo aesthetic” Quality: “sharp focus on face, background heavily blurred and streaked”

查看 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": "Paparazzi-style extreme close-up photo of a woman with striking facial features, caught off-guard while turning toward the camera. Face and shoulders only, shot from a low angle. Strong harsh on-camera flash, grainy high-ISO, raw candid street-photography feel. Background shows a crowded scene with motion blur (Paris Fashion Week atmosphere). Intense, spontaneous energy, imperfect and real. She is wearing a school uniform. Ultra-realistic, cinematic realism, high detail skin texture, slight lens distortion. Camera style: “35mm paparazzi lens, f/2.8, flash blown highlights” Look: “2000s tabloid photo aesthetic” Quality: “sharp focus on face, background heavily blurred and streaked”"
}
JSON
IM
图像
Photography nano-banana-2

{ "overall_theme": { "description": "A curated series...

{ "overall_theme": { "description": "A curated series of four ultra-photorealistic vignettes showcasing a luxurious, wellness-focused lifestyle.", "mood": "Calm, serene, balanced, sophisticated, peaceful, rejuvenating.", "style": "Minimalist, high-end, contemporary, clean aesthetic, aspirational." }, "subject": { "description": "Young woman.", "appearance": { "hair": "Long, dark brown, wavy, natural texture.", "skin": "Clear, glowing, natural.", "makeup": "No-makeup makeup look, dewy finish.", "physique": "Fit, toned." }, "expression": "Serene, composed, gently smiling, focused." }, "wardrobe": { "outfit_base": "Matching ribbed beige/cream activewear set.", "variations": [ "Sleeveless crop top and high-waisted leggings.", "Long-sleeve crop top and high-waisted leggings." ], "style": "Comfortable, stylish, high-quality fabric." }, "environmental_details": { "lighting": { "type": "Natural daylight.", "quality": "Soft, diffused, warm, bright.", "source": "Large windows (implied or visible)." }, "color_palette": { "dominant": ["Warm Beige", "Cream", "White", "Marble Grey"], "accents": ["Green (plants)", "Gold (fixtures, details)", "Natural Wood", "Soft Purple (smoothie)"] }, "materials": ["White Marble", "Light Wood", "Stone", "Ceramic", "Glass", "Linen"] }, "scenes": [ { "location": "Modern Luxury Kitchen", "environment": "White marble island and countertops, white shaker cabinets, gold hardware, integrated wine fridge, large window.", "pose": "Standing at the island, body angled slightly, looking down.", "action": "Whisking a hot beverage in a small bowl.", "props": ["Ceramic bowl", "Wooden whisk", "Steam", "Mug with 'H'", "Wine fridge"] }, { "location": "High-End Bathroom", "environment": "Large backlit mirror, white marble vanity, white walls, orchid plant.", "pose": "Standing facing the mirror, one hand applying product to face.", "action": "Applying skincare.", "props": ["Cotton pad", "Skincare bottle", "Lit Diptyque candle", "Whole coconut", "Glass jars"] }, { "location": "Minimalist Wellness Space", "environment": "Textured beige walls with curved arches, stone water fountain, eucalyptus in a vase.", "pose": "Full-body stretch, arms extended overhead, head tilted back, eyes closed.", "action": "Stretching.", "props": ["Stone water feature", "Large perfume bottle", "Eucalyptus vase"] }, { "location": "Bright Café Corner", "environment": "Round white marble table, cane chair, large window overlooking a street.", "pose": "Sitting at the table, smiling while eating, holding a fork.", "action": "Eating avocado toast.", "props": ["Avocado toast on plate", "Purple smoothie in glass", "Fork", "Assouline book", "Notebooks", "Small flowers"] } ], "camera_and_technical": { "type": "DSLR Photography", "style": "Editorial lifestyle", "lens": "Prime lens (e.g., 50mm or 85mm f/1.4)", "focus": "Sharp focus on the subject in each frame.", "depth_of_field": "Shallow, creating a soft, creamy bokeh in the background.", "resolution": "Ultra-high resolution, photorealistic textures.", "composition": "Four-panel grid collage." } }

查看 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": "{ \"overall_theme\": { \"description\": \"A curated series of four ultra-photorealistic vignettes showcasing a luxurious, wellness-focused lifestyle.\", \"mood\": \"Calm, serene, balanced, sophisticated, peaceful, rejuvenating.\", \"style\": \"Minimalist, high-end, contemporary, clean aesthetic, aspirational.\" }, \"subject\": { \"description\": \"Young woman.\", \"appearance\": { \"hair\": \"Long, dark brown, wavy, natural texture.\", \"skin\": \"Clear, glowing, natural.\", \"makeup\": \"No-makeup makeup look, dewy finish.\", \"physique\": \"Fit, toned.\" }, \"expression\": \"Serene, composed, gently smiling, focused.\" }, \"wardrobe\": { \"outfit_base\": \"Matching ribbed beige/cream activewear set.\", \"variations\": [ \"Sleeveless crop top and high-waisted leggings.\", \"Long-sleeve crop top and high-waisted leggings.\" ], \"style\": \"Comfortable, stylish, high-quality fabric.\" }, \"environmental_details\": { \"lighting\": { \"type\": \"Natural daylight.\", \"quality\": \"Soft, diffused, warm, bright.\", \"source\": \"Large windows (implied or visible).\" }, \"color_palette\": { \"dominant\": [\"Warm Beige\", \"Cream\", \"White\", \"Marble Grey\"], \"accents\": [\"Green (plants)\", \"Gold (fixtures, details)\", \"Natural Wood\", \"Soft Purple (smoothie)\"] }, \"materials\": [\"White Marble\", \"Light Wood\", \"Stone\", \"Ceramic\", \"Glass\", \"Linen\"] }, \"scenes\": [ { \"location\": \"Modern Luxury Kitchen\", \"environment\": \"White marble island and countertops, white shaker cabinets, gold hardware, integrated wine fridge, large window.\", \"pose\": \"Standing at the island, body angled slightly, looking down.\", \"action\": \"Whisking a hot beverage in a small bowl.\", \"props\": [\"Ceramic bowl\", \"Wooden whisk\", \"Steam\", \"Mug with 'H'\", \"Wine fridge\"] }, { \"location\": \"High-End Bathroom\", \"environment\": \"Large backlit mirror, white marble vanity, white walls, orchid plant.\", \"pose\": \"Standing facing the mirror, one hand applying product to face.\", \"action\": \"Applying skincare.\", \"props\": [\"Cotton pad\", \"Skincare bottle\", \"Lit Diptyque candle\", \"Whole coconut\", \"Glass jars\"] }, { \"location\": \"Minimalist Wellness Space\", \"environment\": \"Textured beige walls with curved arches, stone water fountain, eucalyptus in a vase.\", \"pose\": \"Full-body stretch, arms extended overhead, head tilted back, eyes closed.\", \"action\": \"Stretching.\", \"props\": [\"Stone water feature\", \"Large perfume bottle\", \"Eucalyptus vase\"] }, { \"location\": \"Bright Café Corner\", \"environment\": \"Round white marble table, cane chair, large window overlooking a street.\", \"pose\": \"Sitting at the table, smiling while eating, holding a fork.\", \"action\": \"Eating avocado toast.\", \"props\": [\"Avocado toast on plate\", \"Purple smoothie in glass\", \"Fork\", \"Assouline book\", \"Notebooks\", \"Small flowers\"] } ], \"camera_and_technical\": { \"type\": \"DSLR Photography\", \"style\": \"Editorial lifestyle\", \"lens\": \"Prime lens (e.g., 50mm or 85mm f/1.4)\", \"focus\": \"Sharp focus on the subject in each frame.\", \"depth_of_field\": \"Shallow, creating a soft, creamy bokeh in the background.\", \"resolution\": \"Ultra-high resolution, photorealistic textures.\", \"composition\": \"Four-panel grid collage.\" } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "subject": { "description": "the prettiest (G)I-DLE Yuqi t...

{ "subject": { "description": "the prettiest (G)I-DLE Yuqi taking a high-angle selfie.", "mirror_rules": "Left arm extended holding camera.", "age": "Early 20s", "expression": { "eyes": { "look": "upward at lens", "energy": "alluring", "direction": "direct" }, "mouth": { "position": "slightly parted", "energy": "soft" }, "overall": "seductive and innocent" }, "face": { "preserve_original": true, "features": "Yuqi's irresistibly cute yet alluring round-yet-sharp face, bright expressive eyes, charming smile lines, and vibrant fair aesthetic.", "makeup": "Asian influencer aesthetic, heavy under-eye blush, light contacts, glossy lips." } }, "hair": { "color": "Warm light brown", "style": "Long, loose waves, voluminous.", "effect": "Top backlit halo, strands falling over chest." }, "body": { "frame": "Slim with pronounced curves.", "waist": "Narrow", "chest": "Full, deep cleavage.", "legs": "Upper thighs visible.", "skin": { "visible_areas": "Chest, shoulders, left arm, upper hips.", "tone": "Fair, pale luminous.", "texture": "Smooth, soft, slightly dewy.", "lighting_effect": "Harsh warm sunlight hitting cleavage and left shoulder, casting sharp shadows." } }, "pose": { "position": "Angled torso, hips pushed back, playful high-angle pose with slight hip cock and energetic lean.", "base": "Standing/leaning.", "overall": "Leaning forward into the high-angle lens with flirty body language." }, "clothing": { "top": { "type": "Tight shiny latex bodysuit with detached left sleeve.", "color": "Glossy Purple", "details": "Deep scoop neck, thin straps.", "effect": "Stretching tightly over chest." }, "bottom": { "type": "Latex bodysuit bottom", "color": "Glossy Purple", "details": "Extremely high cut exposing hips." } }, "accessories": { "jewelry": "Delicate silver pendant necklace." }, "photography": { "camera_style": "Smartphone selfie", "angle": "High angle, looking down.", "shot_type": "Medium close-up.", "aspect_ratio": "9:16", "texture": "Digital, slight wide-angle distortion on left arm.", "lighting": "Strong directional warm light, high contrast.", "depth_of_field": "Shallow, blurry dark background." }, "background": { "setting": "Dark interior room.", "wall_color": "Dark/black.", "elements": [ "Lit door edge on left" ], "atmosphere": "Intimate, private.", "lighting": "Mostly dark with one sharp shaft of warm light." }, "the_vibe": { "energy": "Captivating", "mood": "Sensual", "aesthetic": "Soft-core, golden hour selfie.", "authenticity": "Casual smartphone snapshot.", "intimacy": "High, direct eye contact.", "story": "Catching the golden hour light in a bedroom.", "caption_energy": "Effortless glow." }, "constraints": { "must_keep": [ "High angle perspective", "Harsh warm directional light", "Bodysuit cut" ], "avoid": [ "Flat studio lighting", "Professional posture", "Over-bright background" ] }, "negative_prompt": [ "ugly", "flat light", "studio lighting", "professional camera", "overexposed", "extra limbs", "stiff" ] }

查看 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": "{ \"subject\": { \"description\": \"the prettiest (G)I-DLE Yuqi taking a high-angle selfie.\", \"mirror_rules\": \"Left arm extended holding camera.\", \"age\": \"Early 20s\", \"expression\": { \"eyes\": { \"look\": \"upward at lens\", \"energy\": \"alluring\", \"direction\": \"direct\" }, \"mouth\": { \"position\": \"slightly parted\", \"energy\": \"soft\" }, \"overall\": \"seductive and innocent\" }, \"face\": { \"preserve_original\": true, \"features\": \"Yuqi's irresistibly cute yet alluring round-yet-sharp face, bright expressive eyes, charming smile lines, and vibrant fair aesthetic.\", \"makeup\": \"Asian influencer aesthetic, heavy under-eye blush, light contacts, glossy lips.\" } }, \"hair\": { \"color\": \"Warm light brown\", \"style\": \"Long, loose waves, voluminous.\", \"effect\": \"Top backlit halo, strands falling over chest.\" }, \"body\": { \"frame\": \"Slim with pronounced curves.\", \"waist\": \"Narrow\", \"chest\": \"Full, deep cleavage.\", \"legs\": \"Upper thighs visible.\", \"skin\": { \"visible_areas\": \"Chest, shoulders, left arm, upper hips.\", \"tone\": \"Fair, pale luminous.\", \"texture\": \"Smooth, soft, slightly dewy.\", \"lighting_effect\": \"Harsh warm sunlight hitting cleavage and left shoulder, casting sharp shadows.\" } }, \"pose\": { \"position\": \"Angled torso, hips pushed back, playful high-angle pose with slight hip cock and energetic lean.\", \"base\": \"Standing/leaning.\", \"overall\": \"Leaning forward into the high-angle lens with flirty body language.\" }, \"clothing\": { \"top\": { \"type\": \"Tight shiny latex bodysuit with detached left sleeve.\", \"color\": \"Glossy Purple\", \"details\": \"Deep scoop neck, thin straps.\", \"effect\": \"Stretching tightly over chest.\" }, \"bottom\": { \"type\": \"Latex bodysuit bottom\", \"color\": \"Glossy Purple\", \"details\": \"Extremely high cut exposing hips.\" } }, \"accessories\": { \"jewelry\": \"Delicate silver pendant necklace.\" }, \"photography\": { \"camera_style\": \"Smartphone selfie\", \"angle\": \"High angle, looking down.\", \"shot_type\": \"Medium close-up.\", \"aspect_ratio\": \"9:16\", \"texture\": \"Digital, slight wide-angle distortion on left arm.\", \"lighting\": \"Strong directional warm light, high contrast.\", \"depth_of_field\": \"Shallow, blurry dark background.\" }, \"background\": { \"setting\": \"Dark interior room.\", \"wall_color\": \"Dark/black.\", \"elements\": [ \"Lit door edge on left\" ], \"atmosphere\": \"Intimate, private.\", \"lighting\": \"Mostly dark with one sharp shaft of warm light.\" }, \"the_vibe\": { \"energy\": \"Captivating\", \"mood\": \"Sensual\", \"aesthetic\": \"Soft-core, golden hour selfie.\", \"authenticity\": \"Casual smartphone snapshot.\", \"intimacy\": \"High, direct eye contact.\", \"story\": \"Catching the golden hour light in a bedroom.\", \"caption_energy\": \"Effortless glow.\" }, \"constraints\": { \"must_keep\": [ \"High angle perspective\", \"Harsh warm directional light\", \"Bodysuit cut\" ], \"avoid\": [ \"Flat studio lighting\", \"Professional posture\", \"Over-bright background\" ] }, \"negative_prompt\": [ \"ugly\", \"flat light\", \"studio lighting\", \"professional camera\", \"overexposed\", \"extra limbs\", \"stiff\" ] }"
}
JSON
IM
图像
Photography nano-banana-2

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

{ "image_generation_prompt": { "subject": { "description": "Young woman with a strong resemblance to Sabrina Carpenter.", "hair": "Middle-parted, straight, and smooth texture with soft layers framing the face; natural physics as it rests over the shoulders.", "face": "Enigmatic expression with a subtle gaze, sun-kissed dewy skin texture, visible fine pores, and a light flush on the cheeks.", "body": "Slender physique with a tanned skin tone, showing realistic skin grain and soft highlights on the midriff." }, "attire": { "clothing": "A vibrant orange string bikini with a white tropical floral print; the fabric has a slight sheen and thin spaghetti straps that tie at the neck and hips.", "style": "Bohemian Summer / Coastal Chic." }, "styling_and_accessories": { "jewelry": [ "Layered gold necklaces with various eclectic charms and pendants", "Multiple gold statement rings on several fingers", "A chunky translucent pink ring", "Sculptural gold wrap-around bracelets on both wrists", "A delicate gold belly chain resting across the waist" ] }, "environment": { "setting": "A rustic outdoor fruit market stall featuring weathered blue wooden structures.", "background": "Stacked plastic crates filled with produce including ripe red tomatoes, bunches of yellow bananas, and various shadowed market goods.", "water": "None" }, "pose": { "posture": "Seated on the ground, leaning slightly forward with a playful and relaxed demeanor.", "arms": "One hand is holding a large slice of watermelon up to her face, while the other arm is extended outward, resting against the blue stall structure.", "angle": "Eye-level shot with a slight tilt." }, "lighting_and_mood": { "lighting": "Bright, direct natural sunlight creating high-contrast shadows and vivid highlights.", "mood": "Vibrant, sun-drenched, and candidly cinematic.", "colors": "A primary palette of saturated watermelon red, cobalt blue, and sun-ripened orange, grounded by earthy grey gravel." }, "camera_and_technical": { "style": "Ultra Photorealistic, RAW photo.", "lens": "35mm wide-angle prime.", "aperture": "f/4.0 for a balance of sharp subject detail and environmental context.", "quality_tags": [ "8k resolution", "highly detailed", "volumetric lighting", "ray tracing reflections", "hyper-realistic texture", "Hasselblad 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": "{ \"image_generation_prompt\": { \"subject\": { \"description\": \"Young woman with a strong resemblance to Sabrina Carpenter.\", \"hair\": \"Middle-parted, straight, and smooth texture with soft layers framing the face; natural physics as it rests over the shoulders.\", \"face\": \"Enigmatic expression with a subtle gaze, sun-kissed dewy skin texture, visible fine pores, and a light flush on the cheeks.\", \"body\": \"Slender physique with a tanned skin tone, showing realistic skin grain and soft highlights on the midriff.\" }, \"attire\": { \"clothing\": \"A vibrant orange string bikini with a white tropical floral print; the fabric has a slight sheen and thin spaghetti straps that tie at the neck and hips.\", \"style\": \"Bohemian Summer / Coastal Chic.\" }, \"styling_and_accessories\": { \"jewelry\": [ \"Layered gold necklaces with various eclectic charms and pendants\", \"Multiple gold statement rings on several fingers\", \"A chunky translucent pink ring\", \"Sculptural gold wrap-around bracelets on both wrists\", \"A delicate gold belly chain resting across the waist\" ] }, \"environment\": { \"setting\": \"A rustic outdoor fruit market stall featuring weathered blue wooden structures.\", \"background\": \"Stacked plastic crates filled with produce including ripe red tomatoes, bunches of yellow bananas, and various shadowed market goods.\", \"water\": \"None\" }, \"pose\": { \"posture\": \"Seated on the ground, leaning slightly forward with a playful and relaxed demeanor.\", \"arms\": \"One hand is holding a large slice of watermelon up to her face, while the other arm is extended outward, resting against the blue stall structure.\", \"angle\": \"Eye-level shot with a slight tilt.\" }, \"lighting_and_mood\": { \"lighting\": \"Bright, direct natural sunlight creating high-contrast shadows and vivid highlights.\", \"mood\": \"Vibrant, sun-drenched, and candidly cinematic.\", \"colors\": \"A primary palette of saturated watermelon red, cobalt blue, and sun-ripened orange, grounded by earthy grey gravel.\" }, \"camera_and_technical\": { \"style\": \"Ultra Photorealistic, RAW photo.\", \"lens\": \"35mm wide-angle prime.\", \"aperture\": \"f/4.0 for a balance of sharp subject detail and environmental context.\", \"quality_tags\": [ \"8k resolution\", \"highly detailed\", \"volumetric lighting\", \"ray tracing reflections\", \"hyper-realistic texture\", \"Hasselblad photography\" ] } } }"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic street portrait of a young woman s...

Ultra-realistic cinematic street portrait of a young woman standing still in a crowded city street, sharp focus on her face with calm, intense expression. Long-exposure effect with people moving around her creating strong directional motion blur, streaked crowd movement while the subject remains perfectly still. Natural soft daylight, shallow depth of field, creamy bokeh, realistic skin texture, subtle freckles, neutral makeup, dark winter coat and scarf. Emotional, introspective mood, urban storytelling photography, DSLR quality, 85mm lens look, f/1.8, high dynamic range, 8K, professional color grading.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic cinematic street portrait of a young woman standing still in a crowded city street, sharp focus on her face with calm, intense expression. Long-exposure effect with people moving around her creating strong directional motion blur, streaked crowd movement while the subject remains perfectly still. Natural soft daylight, shallow depth of field, creamy bokeh, realistic skin texture, subtle freckles, neutral makeup, dark winter coat and scarf. Emotional, introspective mood, urban storytelling photography, DSLR quality, 85mm lens look, f/1.8, high dynamic range, 8K, professional color grading."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic candid smartphone photograph, 9:16 vertical....

Ultra-realistic candid smartphone photograph, 9:16 vertical. Use the attached image only as a strong visual inspiration for general facial proportions and vibe, while ensuring the generated subject remains fully original, non-identifiable, and not a face copy. Scene Nighttime on a quiet Tokyo city sidewalk beside a building with white ceramic tile walls. The subject is walking past the camera, partially side-on, captured mid-step in a rushed, accidental moment. Poses & Gestures (combined naturally) The subject reacts instinctively to being photographed: turning her head back mid-walk as if surprised, raising one hand close to the lens to partially block the camera, shy, restrained smile forming as she suppresses laughter, body angled in half-profile while continuing to walk forward, motion carries her slightly out of frame, imperfect framing. Expressions are subtle and spontaneous — embarrassed, playful, fleeting — never posed. Camera & Motion Shot on a modern smartphone, handheld, rushed capture. Strong uncontrolled camera shake. Heavy directional motion blur across the raised hand, hair, and face. Facial features appear smeared and streaked by movement, faintly recognizable but distorted. Partial ghosting around the body. Imperfect framing, subject nearly leaving the frame. Lighting Flash-only lighting fired mid-motion. Harsh flash highlights on skin and hand. Deep surrounding darkness. Uneven exposure, blown highlights, hard shadows typical of hurried night phone photography. Background White ceramic tile wall stretches into streaked light bands due to motion blur. Street surroundings fade into darkness with minimal readable detail. Mood Candid, shy, slightly playful. Feels intrusive, raw, imperfect, and authentic — like a fleeting memory accidentally captured and never meant to be perfect. Image Quality Extremely noisy. Heavily blurred. Raw smartphone look. Not cinematic. Not editorial. Not polished. Negative Prompt anime, illustration, painting, stylized, studio lighting, beauty lighting, soft portrait, sharp focus, clean face, perfect anatomy, smooth skin, fashion editorial, posed portrait, cinematic grading, film still, tripod shot, professional photography, identity match, face copy, real person replication

查看 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 candid smartphone photograph, 9:16 vertical. Use the attached image only as a strong visual inspiration for general facial proportions and vibe, while ensuring the generated subject remains fully original, non-identifiable, and not a face copy. Scene Nighttime on a quiet Tokyo city sidewalk beside a building with white ceramic tile walls. The subject is walking past the camera, partially side-on, captured mid-step in a rushed, accidental moment. Poses & Gestures (combined naturally) The subject reacts instinctively to being photographed: turning her head back mid-walk as if surprised, raising one hand close to the lens to partially block the camera, shy, restrained smile forming as she suppresses laughter, body angled in half-profile while continuing to walk forward, motion carries her slightly out of frame, imperfect framing. Expressions are subtle and spontaneous — embarrassed, playful, fleeting — never posed. Camera & Motion Shot on a modern smartphone, handheld, rushed capture. Strong uncontrolled camera shake. Heavy directional motion blur across the raised hand, hair, and face. Facial features appear smeared and streaked by movement, faintly recognizable but distorted. Partial ghosting around the body. Imperfect framing, subject nearly leaving the frame. Lighting Flash-only lighting fired mid-motion. Harsh flash highlights on skin and hand. Deep surrounding darkness. Uneven exposure, blown highlights, hard shadows typical of hurried night phone photography. Background White ceramic tile wall stretches into streaked light bands due to motion blur. Street surroundings fade into darkness with minimal readable detail. Mood Candid, shy, slightly playful. Feels intrusive, raw, imperfect, and authentic — like a fleeting memory accidentally captured and never meant to be perfect. Image Quality Extremely noisy. Heavily blurred. Raw smartphone look. Not cinematic. Not editorial. Not polished. Negative Prompt anime, illustration, painting, stylized, studio lighting, beauty lighting, soft portrait, sharp focus, clean face, perfect anatomy, smooth skin, fashion editorial, posed portrait, cinematic grading, film still, tripod shot, professional photography, identity match, face copy, real person replication"
}
JSON
IM
图像
Photography nano-banana-2

{   "meta": {     "aspect_ratio": "9:16",     "quality": "ul...

{ "meta": { "aspect_ratio": "9:16", "quality": "ultra_photorealistic", "resolution": "8k", "camera": "iPhone front camera", "lens": "24mm", "style": "raw iPhone mirror realism, zero smoothing, heavy reflections, subtle grain, imperfect exposure" }, "scene": { "location": "luxury apartment elevator", "environment": [ "mirror walls on three sides", "brushed stainless steel panels", "glass-like reflection layering (multiple reflections of body)", "LED ceiling strip lights", "digital floor number glowing red", "slight fingerprints and smudges on mirror" ], "time": "late night", "atmosphere": "private tension in a public box, quiet, charged, intimate" }, "lighting": { "type": "mixed elevator lighting", "sources": [ "cool white overhead LEDs", "warm spill from control panel lights" ], "effect": [ "high contrast highlights on hips and thighs", "specular reflections multiplying curves in mirrors", "face partially lit, partially disappearing in reflections", "real iPhone low-light noise in shadows" ] }, "camera_perspective": { "pov": "mirror selfie", "angle": "slightly low and close", "framing": "upper thighs to head", "distance": "arm-length", "imperfections": [ "phone edge visible in reflection", "finger slightly covering lens corner", "minor motion blur from breathing" ] }, "subject": { "gender": "female", "ethnicity": "light european / mediterranean mix", "vibe": "young adult, controlled confidence, quietly provocative", "body": { "type": "fit-curvy", "waist": "tight and defined", "hips": "round and visually repeated by reflections", "thighs": "thick, softly compressed", "chest": "full and natural, secondary focus" }, "skin": { "tone": "warm fair", "texture": "real skin texture, slight sheen, no blur" }, "hair": { "color": "dark blonde", "style": "loose, slightly messy", "details": "a few strands stuck to lips and cheek" }, "face": { "expression": "neutral with soft half-smirk", "eyes": "focused on phone screen", "makeup": "minimal, glossy lips catching light" }, "outfit": { "top": { "type": "tight cropped tank top", "color": "soft grey", "fit": "hugging chest naturally, no bra", "details": "fabric stretched slightly, fine rib texture visible" }, "bottom": { "type": "ultra-short micro biker shorts", "length": "barely covering upper thighs", "material": "thin matte spandex", "fit": "painted-on tight, amplified by mirror repetition", "details": [ "fabric tension visible at hips", "slight ride-up at inner thighs", "clean, logo-free" ] }, "shoes": { "type": "clean white sneakers", "reflection": "duplicated multiple times in mirrors" } }, "pose": { "stance": "standing close to mirror", "hips": "shifted strongly to one side", "legs": "one knee bent inward", "upper_body": "shoulders relaxed, torso angled", "arms": { "phone_hand": "holding phone low", "free_hand": "resting lightly on upper thigh" }, "movement": "still moment that feels like a pause, not a pose" } }, "mood_keywords": [ "mirror multiplication", "late night tension", "quiet confidence", "timeline stopper" ] }

查看 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": "{ \"meta\": { \"aspect_ratio\": \"9:16\", \"quality\": \"ultra_photorealistic\", \"resolution\": \"8k\", \"camera\": \"iPhone front camera\", \"lens\": \"24mm\", \"style\": \"raw iPhone mirror realism, zero smoothing, heavy reflections, subtle grain, imperfect exposure\" }, \"scene\": { \"location\": \"luxury apartment elevator\", \"environment\": [ \"mirror walls on three sides\", \"brushed stainless steel panels\", \"glass-like reflection layering (multiple reflections of body)\", \"LED ceiling strip lights\", \"digital floor number glowing red\", \"slight fingerprints and smudges on mirror\" ], \"time\": \"late night\", \"atmosphere\": \"private tension in a public box, quiet, charged, intimate\" }, \"lighting\": { \"type\": \"mixed elevator lighting\", \"sources\": [ \"cool white overhead LEDs\", \"warm spill from control panel lights\" ], \"effect\": [ \"high contrast highlights on hips and thighs\", \"specular reflections multiplying curves in mirrors\", \"face partially lit, partially disappearing in reflections\", \"real iPhone low-light noise in shadows\" ] }, \"camera_perspective\": { \"pov\": \"mirror selfie\", \"angle\": \"slightly low and close\", \"framing\": \"upper thighs to head\", \"distance\": \"arm-length\", \"imperfections\": [ \"phone edge visible in reflection\", \"finger slightly covering lens corner\", \"minor motion blur from breathing\" ] }, \"subject\": { \"gender\": \"female\", \"ethnicity\": \"light european / mediterranean mix\", \"vibe\": \"young adult, controlled confidence, quietly provocative\", \"body\": { \"type\": \"fit-curvy\", \"waist\": \"tight and defined\", \"hips\": \"round and visually repeated by reflections\", \"thighs\": \"thick, softly compressed\", \"chest\": \"full and natural, secondary focus\" }, \"skin\": { \"tone\": \"warm fair\", \"texture\": \"real skin texture, slight sheen, no blur\" }, \"hair\": { \"color\": \"dark blonde\", \"style\": \"loose, slightly messy\", \"details\": \"a few strands stuck to lips and cheek\" }, \"face\": { \"expression\": \"neutral with soft half-smirk\", \"eyes\": \"focused on phone screen\", \"makeup\": \"minimal, glossy lips catching light\" }, \"outfit\": { \"top\": { \"type\": \"tight cropped tank top\", \"color\": \"soft grey\", \"fit\": \"hugging chest naturally, no bra\", \"details\": \"fabric stretched slightly, fine rib texture visible\" }, \"bottom\": { \"type\": \"ultra-short micro biker shorts\", \"length\": \"barely covering upper thighs\", \"material\": \"thin matte spandex\", \"fit\": \"painted-on tight, amplified by mirror repetition\", \"details\": [ \"fabric tension visible at hips\", \"slight ride-up at inner thighs\", \"clean, logo-free\" ] }, \"shoes\": { \"type\": \"clean white sneakers\", \"reflection\": \"duplicated multiple times in mirrors\" } }, \"pose\": { \"stance\": \"standing close to mirror\", \"hips\": \"shifted strongly to one side\", \"legs\": \"one knee bent inward\", \"upper_body\": \"shoulders relaxed, torso angled\", \"arms\": { \"phone_hand\": \"holding phone low\", \"free_hand\": \"resting lightly on upper thigh\" }, \"movement\": \"still moment that feels like a pause, not a pose\" } }, \"mood_keywords\": [ \"mirror multiplication\", \"late night tension\", \"quiet confidence\", \"timeline stopper\" ] }"
}
JSON
IM
图像
Photography nano-banana-2

Preserve the face, proportions, and external features of the...

Preserve the face, proportions, and external features of the model as in the reference. A minimalist monochrome fashion editorial triptych featuring three stacked cinematic frames. The subject is a young man with short dark hair and a groomed beard. Frame 1: Emotional and introspective, looking downward with a hand near the collarbone, highlighting bone structure with Rembrandt lighting. Frame 2: A crisp profile shot with a focus on the nose, lips, and masculine jawline, gaze directed slightly upward. Frame 3: A frontal, thoughtful portrait with shoulders relaxed and direct eye contact. The composition is clean and modern, using a white T-shirt and gold necklace for visual continuity. Commercial magazine quality, high-end mirrorless camera, authentic skin pores, soft bokeh, and elegant masculinity.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Preserve the face, proportions, and external features of the model as in the reference. A minimalist monochrome fashion editorial triptych featuring three stacked cinematic frames. The subject is a young man with short dark hair and a groomed beard. Frame 1: Emotional and introspective, looking downward with a hand near the collarbone, highlighting bone structure with Rembrandt lighting. Frame 2: A crisp profile shot with a focus on the nose, lips, and masculine jawline, gaze directed slightly upward. Frame 3: A frontal, thoughtful portrait with shoulders relaxed and direct eye contact. The composition is clean and modern, using a white T-shirt and gold necklace for visual continuity. Commercial magazine quality, high-end mirrorless camera, authentic skin pores, soft bokeh, and elegant masculinity."
}
JSON
IM
图像
Photography nano-banana-2

Use this photo attached to create an ultra-realistic printed...

Use this photo attached to create an ultra-realistic printed portrait with authentic photo-print shine. A straight-on, centered head-and-shoulders portrait of a young woman, neutral confident expression, eyes looking directly at the camera. Composition is perfectly aligned and symmetrical, identical to a school ID / yearbook / magazine archive photo. She has long, smooth brown hair, center-parted, softly layered, neatly styled. Makeup is polished but natural, editorial-clean: warm brown eyeshadow, softly defined eyeliner, voluminous lashes, subtle contour, peach blush, and glossy nude lips. Skin is smooth, flawless, softly matte with natural highlights, realistic pores visible. She wears a dark navy blazer with white piping, white collared shirt, dark sweater vest, and navy striped tie, styled like a formal school uniform portrait. Small silver hoop earrings. EXACT FILTER & PRINT SHINE (VERY IMPORTANT): Apply a real photo-print filter, not digital glow: Subtle semi-gloss paper sheen Light reflective shine across cheeks, forehead, and lips, as if light is bouncing off printed ink Very mild lamination glare, thin diagonal highlights Slight softening from ink absorption, not blur Gentle warm undertone from printed ink Fine paper grain texture visible on skin and background Looks like a scanned or photographed printed photo NO glassy skin NO beauty filter glow NO cinematic bloom LIGHTING: Direct frontal harsh flash ALWAYS ON, similar to ID or studio flash: Even exposure Bright eye catchlights Minimal shadows Flat, clean lighting typical of printed portraits BACKGROUND: Flat cool blue textured studio backdrop, evenly lit, slightly muted by print ink. TEXT & LAYOUT (PRINTED): Below the portrait, centered and printed on the page: Bold serif font: HIGHSCHOOL GAL Below in smaller italic serif font, quotation style: “You put the ‘over’ in ‘lover,’ put the ‘ex’ in ‘next’ Ain’t no ‘I’ in ‘trouble,’ just the ‘U’ since we met” Text appears ink-printed, slightly imperfect edges, natural spacing, no digital sharpness. OVERALL LOOK: Real printed photograph Magazine / yearbook archive Soft shine, subtle glare Paper texture + ink warmth Not digital, not glossy poster Looks physically touchable

查看 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 this photo attached to create an ultra-realistic printed portrait with authentic photo-print shine. A straight-on, centered head-and-shoulders portrait of a young woman, neutral confident expression, eyes looking directly at the camera. Composition is perfectly aligned and symmetrical, identical to a school ID / yearbook / magazine archive photo. She has long, smooth brown hair, center-parted, softly layered, neatly styled. Makeup is polished but natural, editorial-clean: warm brown eyeshadow, softly defined eyeliner, voluminous lashes, subtle contour, peach blush, and glossy nude lips. Skin is smooth, flawless, softly matte with natural highlights, realistic pores visible. She wears a dark navy blazer with white piping, white collared shirt, dark sweater vest, and navy striped tie, styled like a formal school uniform portrait. Small silver hoop earrings. EXACT FILTER & PRINT SHINE (VERY IMPORTANT): Apply a real photo-print filter, not digital glow: Subtle semi-gloss paper sheen Light reflective shine across cheeks, forehead, and lips, as if light is bouncing off printed ink Very mild lamination glare, thin diagonal highlights Slight softening from ink absorption, not blur Gentle warm undertone from printed ink Fine paper grain texture visible on skin and background Looks like a scanned or photographed printed photo NO glassy skin NO beauty filter glow NO cinematic bloom LIGHTING: Direct frontal harsh flash ALWAYS ON, similar to ID or studio flash: Even exposure Bright eye catchlights Minimal shadows Flat, clean lighting typical of printed portraits BACKGROUND: Flat cool blue textured studio backdrop, evenly lit, slightly muted by print ink. TEXT & LAYOUT (PRINTED): Below the portrait, centered and printed on the page: Bold serif font: HIGHSCHOOL GAL Below in smaller italic serif font, quotation style: “You put the ‘over’ in ‘lover,’ put the ‘ex’ in ‘next’ Ain’t no ‘I’ in ‘trouble,’ just the ‘U’ since we met” Text appears ink-printed, slightly imperfect edges, natural spacing, no digital sharpness. OVERALL LOOK: Real printed photograph Magazine / yearbook archive Soft shine, subtle glare Paper texture + ink warmth Not digital, not glossy poster Looks physically touchable"
}
JSON
IM
图像
Photography nano-banana-2

Editorial portrait from the attached reference photo, photor...

Editorial portrait from the attached reference photo, photorealistic. Use uploaded selfie as ONLY face reference. Identity lock: exact likeness, facial geometry/proportions, natural skin texture. No beautification. Keep clothing style, color, material, and fit identical to the reference. Medium close-up (face and shoulders), low angle looking up (heroic/dominant perspective), sharp focus on face/eyes.Serious, intense, focused expression, gaze directed upward and away from camera (beyond the frame). Dramatic saturated studio lighting, high-contrast chiaroscuro with deep shadows, vibrant oranges and deep reds palette, strong rim light creating a halo separation. Solid studio backdrop, rich orange-red smooth gradient, pattern-free, hot radiant atmosphere. High skin texture fidelity (pores visible), 8k, portrait aspect ratio, cinematic lighting, 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": "Editorial portrait from the attached reference photo, photorealistic. Use uploaded selfie as ONLY face reference. Identity lock: exact likeness, facial geometry/proportions, natural skin texture. No beautification. Keep clothing style, color, material, and fit identical to the reference. Medium close-up (face and shoulders), low angle looking up (heroic/dominant perspective), sharp focus on face/eyes.Serious, intense, focused expression, gaze directed upward and away from camera (beyond the frame). Dramatic saturated studio lighting, high-contrast chiaroscuro with deep shadows, vibrant oranges and deep reds palette, strong rim light creating a halo separation. Solid studio backdrop, rich orange-red smooth gradient, pattern-free, hot radiant atmosphere. High skin texture fidelity (pores visible), 8k, portrait aspect ratio, cinematic lighting, 4:5."
}
JSON
IM
图像
Photography nano-banana-2

{   "meta": {     "aspect_ratio": "9:16",     "camera": "iPh...

{ "meta": { "aspect_ratio": "9:16", "camera": "iPhone rear camera", "lens": "35mm", "quality": "ultra photorealistic", "style": "cold editorial mirror reflection, raw iphone realism, natural skin texture, slight grain" }, "scene": { "location": "empty concrete hallway apartment", "visibility_rule": "only mirror reflection visible, subject never appears directly", "environment_details": [ "tall frameless mirror mounted on concrete wall", "industrial gray walls", "soft shadow gradients", "clean but slightly brutalist interior" ], "time": "very late night", "atmosphere": "silent, detached, fashion-editorial tension" }, "lighting": { "type": "single directional light", "source": "cool LED wall light from side", "color_temperature": "cold white", "effect": "sharp highlights on shoulders and collarbones, deep controlled shadows" }, "camera_perspective": { "pov": "mirror reflection only", "angle": "straight-on, chest-height", "framing": "upper thighs to head visible only inside mirror", "real_world_visibility": "no body parts visible outside mirror", "phone_visibility": "phone covering face in reflection" }, "subject": { "gender": "female", "age_vibe": "young adult", "ethnicity": "Northern European", "hair": { "color": "icy platinum blonde", "style": "short blunt bob", "behavior": "clean lines, barely touching jaw" }, "outfit": { "bodysuit": { "type": "one-piece mesh bodysuit", "color": "smoky graphite gray", "material": "semi-transparent technical mesh", "fit": "tight, sculpting, stretched naturally", "coverage": "fashion-revealing, non-explicit" } }, "pose": { "position": "standing still close to mirror", "legs": { "stance": "asymmetrical", "detail": "one leg straight, one knee slightly bent inward" }, "hips": { "action": "subtle sideways shift creating tension in fabric" }, "arms": { "phone_hand": "holding phone directly in front of face", "free_hand": "hanging loose by side, relaxed fingers" }, "vibe": "cold confidence, model-off-duty, emotionally distant" }, "face": { "visibility": "completely hidden by phone", "effect": "identity erased, body language only" } }, "imperfections": [ "minor mirror streaks", "uneven LED light falloff", "slight handheld camera micro-tilt" ] }

查看 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": "{ \"meta\": { \"aspect_ratio\": \"9:16\", \"camera\": \"iPhone rear camera\", \"lens\": \"35mm\", \"quality\": \"ultra photorealistic\", \"style\": \"cold editorial mirror reflection, raw iphone realism, natural skin texture, slight grain\" }, \"scene\": { \"location\": \"empty concrete hallway apartment\", \"visibility_rule\": \"only mirror reflection visible, subject never appears directly\", \"environment_details\": [ \"tall frameless mirror mounted on concrete wall\", \"industrial gray walls\", \"soft shadow gradients\", \"clean but slightly brutalist interior\" ], \"time\": \"very late night\", \"atmosphere\": \"silent, detached, fashion-editorial tension\" }, \"lighting\": { \"type\": \"single directional light\", \"source\": \"cool LED wall light from side\", \"color_temperature\": \"cold white\", \"effect\": \"sharp highlights on shoulders and collarbones, deep controlled shadows\" }, \"camera_perspective\": { \"pov\": \"mirror reflection only\", \"angle\": \"straight-on, chest-height\", \"framing\": \"upper thighs to head visible only inside mirror\", \"real_world_visibility\": \"no body parts visible outside mirror\", \"phone_visibility\": \"phone covering face in reflection\" }, \"subject\": { \"gender\": \"female\", \"age_vibe\": \"young adult\", \"ethnicity\": \"Northern European\", \"hair\": { \"color\": \"icy platinum blonde\", \"style\": \"short blunt bob\", \"behavior\": \"clean lines, barely touching jaw\" }, \"outfit\": { \"bodysuit\": { \"type\": \"one-piece mesh bodysuit\", \"color\": \"smoky graphite gray\", \"material\": \"semi-transparent technical mesh\", \"fit\": \"tight, sculpting, stretched naturally\", \"coverage\": \"fashion-revealing, non-explicit\" } }, \"pose\": { \"position\": \"standing still close to mirror\", \"legs\": { \"stance\": \"asymmetrical\", \"detail\": \"one leg straight, one knee slightly bent inward\" }, \"hips\": { \"action\": \"subtle sideways shift creating tension in fabric\" }, \"arms\": { \"phone_hand\": \"holding phone directly in front of face\", \"free_hand\": \"hanging loose by side, relaxed fingers\" }, \"vibe\": \"cold confidence, model-off-duty, emotionally distant\" }, \"face\": { \"visibility\": \"completely hidden by phone\", \"effect\": \"identity erased, body language only\" } }, \"imperfections\": [ \"minor mirror streaks\", \"uneven LED light falloff\", \"slight handheld camera micro-tilt\" ] }"
}
JSON
IM
图像
Photography nano-banana-2

{ "image_description": { "title": "Surveillance Feed:...

{ "image_description": { "title": "Surveillance Feed: Defiant Subject in Retail Shop", "aspect_ratio": "4:5", "mood": "Raw, gritty, confrontational, authentic" }, "visual_elements": { "subject": { "framing": "Centered from mid-torso upward", "pose": "Head tilted back looking up at camera, relaxed yet defiant posture", "action": "Hand raised with middle finger extended (silhouette, ghosted by motion)", "facial_features": "Largely obscured by blur, mouth open with tongue faintly visible", "apparel": "Dark oversized sunglasses reflecting ambient light" }, "environment": { "location": "Cramped retail shop interior", "foreground": "Cluttered checkout counter, papers, white shopping bag with red rope handles", "background": "Densely packed shelves with small items, souvenirs, and figurines (abstracted by low resolution)" } }, "technical_specifications": { "camera_perspective": "High-mounted, steep downward angle, top-down CCTV view", "lens_distortion": "Subtle fisheye warping at frame edges", "lighting": "Harsh flat fluorescent, blown highlights, dull shadows", "color_grading": "Cool green-blue cast, uneven color reproduction, visible banding, reduced dynamic range" }, "image_fidelity": { "quality": "Intentionally degraded, low-fidelity", "artifacts": [ "Strong motion blur", "Digital smearing", "Compression artifacts", "Heavy noise", "Scan lines" ], "sharpness": "Low perceived sharpness, distinct details stretched and indistinct" }, "full_prompt_text": "A heavily distorted, low-fidelity surveillance-style image depicts the Subject standing behind a cramped retail checkout counter inside a cluttered shop, captured from a high-mounted camera angled steeply downward in a top-down CCTV perspective. The image quality is intentionally degraded, with strong motion blur, digital smearing, compression artifacts, heavy noise, scan lines, and subtle fisheye distortion warping the frame edges, making fine details indistinct and stretched. The Subject is centered from mid-torso upward, looking up toward the camera with the head tilted back; facial features are largely obscured by blur and artifacts, though dark oversized sunglasses dominate the face, reflecting ambient light, and the mouth appears open with the tongue faintly visible. One hand is raised toward the camera with the middle finger extended, clearly readable in silhouette but softened and ghosted by motion and low clarity, conveying a relaxed yet defiant posture. The foreground checkout counter is cluttered with papers and a white shopping bag with red rope handles, while the background shelves are densely packed with small items, souvenirs, and figurines that blend into abstract shapes due to low resolution and noise. Harsh, flat fluorescent lighting produces blown highlights, dull shadows, uneven color reproduction, and a cool green-blue color cast with visible banding and reduced dynamic range. Despite an effectively deep depth of field, perceived sharpness remains low, reinforcing a raw, gritty, confrontational mood that emphasizes the authenticity of an unpolished, unenhanced surveillance feed in a vertical 4:5 aspect ratio" }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"image_description\": { \"title\": \"Surveillance Feed: Defiant Subject in Retail Shop\", \"aspect_ratio\": \"4:5\", \"mood\": \"Raw, gritty, confrontational, authentic\" }, \"visual_elements\": { \"subject\": { \"framing\": \"Centered from mid-torso upward\", \"pose\": \"Head tilted back looking up at camera, relaxed yet defiant posture\", \"action\": \"Hand raised with middle finger extended (silhouette, ghosted by motion)\", \"facial_features\": \"Largely obscured by blur, mouth open with tongue faintly visible\", \"apparel\": \"Dark oversized sunglasses reflecting ambient light\" }, \"environment\": { \"location\": \"Cramped retail shop interior\", \"foreground\": \"Cluttered checkout counter, papers, white shopping bag with red rope handles\", \"background\": \"Densely packed shelves with small items, souvenirs, and figurines (abstracted by low resolution)\" } }, \"technical_specifications\": { \"camera_perspective\": \"High-mounted, steep downward angle, top-down CCTV view\", \"lens_distortion\": \"Subtle fisheye warping at frame edges\", \"lighting\": \"Harsh flat fluorescent, blown highlights, dull shadows\", \"color_grading\": \"Cool green-blue cast, uneven color reproduction, visible banding, reduced dynamic range\" }, \"image_fidelity\": { \"quality\": \"Intentionally degraded, low-fidelity\", \"artifacts\": [ \"Strong motion blur\", \"Digital smearing\", \"Compression artifacts\", \"Heavy noise\", \"Scan lines\" ], \"sharpness\": \"Low perceived sharpness, distinct details stretched and indistinct\" }, \"full_prompt_text\": \"A heavily distorted, low-fidelity surveillance-style image depicts the Subject standing behind a cramped retail checkout counter inside a cluttered shop, captured from a high-mounted camera angled steeply downward in a top-down CCTV perspective. The image quality is intentionally degraded, with strong motion blur, digital smearing, compression artifacts, heavy noise, scan lines, and subtle fisheye distortion warping the frame edges, making fine details indistinct and stretched. The Subject is centered from mid-torso upward, looking up toward the camera with the head tilted back; facial features are largely obscured by blur and artifacts, though dark oversized sunglasses dominate the face, reflecting ambient light, and the mouth appears open with the tongue faintly visible. One hand is raised toward the camera with the middle finger extended, clearly readable in silhouette but softened and ghosted by motion and low clarity, conveying a relaxed yet defiant posture. The foreground checkout counter is cluttered with papers and a white shopping bag with red rope handles, while the background shelves are densely packed with small items, souvenirs, and figurines that blend into abstract shapes due to low resolution and noise. Harsh, flat fluorescent lighting produces blown highlights, dull shadows, uneven color reproduction, and a cool green-blue color cast with visible banding and reduced dynamic range. Despite an effectively deep depth of field, perceived sharpness remains low, reinforcing a raw, gritty, confrontational mood that emphasizes the authenticity of an unpolished, unenhanced surveillance feed in a vertical 4:5 aspect ratio\" }"
}
JSON
IM
图像
Photography nano-banana-2

Cinematic studio portrait of a young man with messy textured...

Cinematic studio portrait of a young man with messy textured hair, wearing a black turtleneck, centered composition, dark minimal background, dramatic low-key lighting, a horizontal red neon light strip cutting across his eyes, strong contrast shadows covering lower face, intense gaze, moody atmosphere, cyberpunk aesthetic, ultra-realistic, sharp focus, 85mm lens, shallow depth of field, high detail, editorial 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": "Cinematic studio portrait of a young man with messy textured hair, wearing a black turtleneck, centered composition, dark minimal background, dramatic low-key lighting, a horizontal red neon light strip cutting across his eyes, strong contrast shadows covering lower face, intense gaze, moody atmosphere, cyberpunk aesthetic, ultra-realistic, sharp focus, 85mm lens, shallow depth of field, high detail, editorial photography style."
}
JSON
IM
图像
Photography nano-banana-2

panning shot of a blurry female silhouette, soft motion blur...

panning shot of a blurry female silhouette, soft motion blur trailing behind her, gentle film grain, diffused edge lighting, deep red gradient background with glowing haze, soft-focus facial features, smooth atmospheric glow, slow-shutter cinematic effect

查看 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": "panning shot of a blurry female silhouette, soft motion blur trailing behind her, gentle film grain, diffused edge lighting, deep red gradient background with glowing haze, soft-focus facial features, smooth atmospheric glow, slow-shutter cinematic effect"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic street portrait of a young woman i...

Ultra-realistic cinematic street portrait of a young woman in a bright blue puffer jacket standing still in the middle of a busy city crowd, intense eye contact with camera, shallow depth of field, motion-blurred pedestrians rushing around her, urban background with traffic lights and tall buildings, cool color grading, natural skin tones, soft overcast lighting, 85mm lens, f/1.8, high detail, sharp focus on subject, dynamic motion blur, editorial photography, 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 street portrait of a young woman in a bright blue puffer jacket standing still in the middle of a busy city crowd, intense eye contact with camera, shallow depth of field, motion-blurred pedestrians rushing around her, urban background with traffic lights and tall buildings, cool color grading, natural skin tones, soft overcast lighting, 85mm lens, f/1.8, high detail, sharp focus on subject, dynamic motion blur, editorial photography, 8k."
}
JSON
IM
图像
Photography nano-banana-2

{ "type": "image_generation_prompt", "style": "photoreal...

{ "type": "image_generation_prompt", "style": "photorealistic, lifestyle photography", "sexualization": "none", "description": { "subject": "A young woman standing casually in a home kitchen, seen in side profile", "pose": "Relaxed posture, one hand resting on her hip while the other holds a small drink carton with a straw", "expression": "Neutral, thoughtful, slightly distant gaze looking forward", "appearance": { "hair": "Dark hair tied in a loose low bun with natural strands framing the face", "clothing": "Oversized white t-shirt worn casually, simple underwear partially visible due to the relaxed fit of the shirt", "tattoos": "Small, minimal black-ink tattoos on the forearm, subtle and understated" } }, "environment": { "location": "A modest, lived-in home kitchen", "details": "Wooden cabinets, countertop appliances, a refrigerator covered with colorful magnets and souvenirs", "lighting": "Soft natural daylight coming from a window, warm and slightly muted", "atmosphere": "Quiet, everyday domestic moment" }, "camera": { "angle": "Side profile view", "framing": "Medium shot capturing the subject from mid-thigh to head", "lens": "35mm lifestyle lens", "depth_of_field": "Moderate, background softly in focus to preserve environmental context" }, "image_quality": { "realism": "High", "texture_detail": "Natural fabric folds, skin texture, and kitchen surface details visible", "grain": "Light natural film grain for an authentic look" }, "mood": "Calm, intimate, documentary-style", "constraints": [ "Non-sexualized, everyday realism", "Focus on natural lifestyle and atmosphere", "No exaggerated poses or expressions", "Candid, slice-of-life aesthetic" ] }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"type\": \"image_generation_prompt\", \"style\": \"photorealistic, lifestyle photography\", \"sexualization\": \"none\", \"description\": { \"subject\": \"A young woman standing casually in a home kitchen, seen in side profile\", \"pose\": \"Relaxed posture, one hand resting on her hip while the other holds a small drink carton with a straw\", \"expression\": \"Neutral, thoughtful, slightly distant gaze looking forward\", \"appearance\": { \"hair\": \"Dark hair tied in a loose low bun with natural strands framing the face\", \"clothing\": \"Oversized white t-shirt worn casually, simple underwear partially visible due to the relaxed fit of the shirt\", \"tattoos\": \"Small, minimal black-ink tattoos on the forearm, subtle and understated\" } }, \"environment\": { \"location\": \"A modest, lived-in home kitchen\", \"details\": \"Wooden cabinets, countertop appliances, a refrigerator covered with colorful magnets and souvenirs\", \"lighting\": \"Soft natural daylight coming from a window, warm and slightly muted\", \"atmosphere\": \"Quiet, everyday domestic moment\" }, \"camera\": { \"angle\": \"Side profile view\", \"framing\": \"Medium shot capturing the subject from mid-thigh to head\", \"lens\": \"35mm lifestyle lens\", \"depth_of_field\": \"Moderate, background softly in focus to preserve environmental context\" }, \"image_quality\": { \"realism\": \"High\", \"texture_detail\": \"Natural fabric folds, skin texture, and kitchen surface details visible\", \"grain\": \"Light natural film grain for an authentic look\" }, \"mood\": \"Calm, intimate, documentary-style\", \"constraints\": [ \"Non-sexualized, everyday realism\", \"Focus on natural lifestyle and atmosphere\", \"No exaggerated poses or expressions\", \"Candid, slice-of-life aesthetic\" ] }"
}
JSON
IM
图像
Photography nano-banana-2

{ "version_control": { "target_style": "High-End Fashi...

{ "version_control": { "target_style": "High-End Fashion Editorial", "fidelity_level": "Absolute 1:1 Identity Lock", "rendering_engine_constraints": "No CGI, No Illustration, No AI Smoothing" }, "subject_profile": { "identity": { "name": "Ana de Armas", "age_group": "Adult Woman", "biometric_integrity": "Preserve 100% original bone structure, facial asymmetry, moles, and eye shape. Zero morphing or enhancement." }, "anatomy_and_skin": { "texture": "Visible pores, micro-creases, subtle translucency", "physics": "Natural water droplets, soft wet sheen, realistic surface tension on skin", "tone": "Natural base skin tone, sun-kissed warmth, no artificial glow" }, "face_details": { "eyes": "Natural eye color, soft neutral-pink glossy shadow, thin lash-line eyeliner (no wing), separated curled lashes", "brows": "Natural density, straight-to-softly-rounded architecture", "nose_and_lips": "Subtle pink warmth on nose bridge; full lips, rose-pink gradient, wet glossy finish, blurred edges, no overlining" }, "hair_styling": { "state": "Visibly wet, slicked at roots, damp strands", "arrangement": "Loose, flowing over shoulders and back, natural messy texture", "match_reference": "1:1 color and style match" } }, "composition_and_pose": { "action": "Leaning on swimming pool edge, body angled 45-degrees", "arm_placement": "One arm naturally resting on pool coping", "framing": "Medium close-up, three-quarter angle", "mood": "Intimate, calm, grounded, confident" }, "attire_and_wardrobe": { "primary_garment": "Minimalist white swimsuit, thin straps, clean lines", "fabric_physics": "Realistic tension against wet skin, natural folds and bunching", "jewelry": "Statement earrings, natural stones/gold, realistic micro-scratches and reflections" }, "environment_and_lighting": { "background": { "element": "Turquoise pool water", "physics": "Refraction, light-play on pool floor, subtle ripples, realistic movement" }, "lighting_design": { "source": "Single-direction natural sunlight", "color_temp": "Warm sun-lit tones", "exposure": "Slightly underexposed (lowered exposure)", "shadows": "Physically accurate contact shadows on collarbones and chest" } }, "technical_parameters": { "optics": "50mm–85mm focal length equivalent, realistic photographic perspective", "depth_of_field": "Shallow, organic bokeh, natural fall-off", "resolution_quality": "16k Hyper-Realistic", "aspect_ratio": "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": "{ \"version_control\": { \"target_style\": \"High-End Fashion Editorial\", \"fidelity_level\": \"Absolute 1:1 Identity Lock\", \"rendering_engine_constraints\": \"No CGI, No Illustration, No AI Smoothing\" }, \"subject_profile\": { \"identity\": { \"name\": \"Ana de Armas\", \"age_group\": \"Adult Woman\", \"biometric_integrity\": \"Preserve 100% original bone structure, facial asymmetry, moles, and eye shape. Zero morphing or enhancement.\" }, \"anatomy_and_skin\": { \"texture\": \"Visible pores, micro-creases, subtle translucency\", \"physics\": \"Natural water droplets, soft wet sheen, realistic surface tension on skin\", \"tone\": \"Natural base skin tone, sun-kissed warmth, no artificial glow\" }, \"face_details\": { \"eyes\": \"Natural eye color, soft neutral-pink glossy shadow, thin lash-line eyeliner (no wing), separated curled lashes\", \"brows\": \"Natural density, straight-to-softly-rounded architecture\", \"nose_and_lips\": \"Subtle pink warmth on nose bridge; full lips, rose-pink gradient, wet glossy finish, blurred edges, no overlining\" }, \"hair_styling\": { \"state\": \"Visibly wet, slicked at roots, damp strands\", \"arrangement\": \"Loose, flowing over shoulders and back, natural messy texture\", \"match_reference\": \"1:1 color and style match\" } }, \"composition_and_pose\": { \"action\": \"Leaning on swimming pool edge, body angled 45-degrees\", \"arm_placement\": \"One arm naturally resting on pool coping\", \"framing\": \"Medium close-up, three-quarter angle\", \"mood\": \"Intimate, calm, grounded, confident\" }, \"attire_and_wardrobe\": { \"primary_garment\": \"Minimalist white swimsuit, thin straps, clean lines\", \"fabric_physics\": \"Realistic tension against wet skin, natural folds and bunching\", \"jewelry\": \"Statement earrings, natural stones/gold, realistic micro-scratches and reflections\" }, \"environment_and_lighting\": { \"background\": { \"element\": \"Turquoise pool water\", \"physics\": \"Refraction, light-play on pool floor, subtle ripples, realistic movement\" }, \"lighting_design\": { \"source\": \"Single-direction natural sunlight\", \"color_temp\": \"Warm sun-lit tones\", \"exposure\": \"Slightly underexposed (lowered exposure)\", \"shadows\": \"Physically accurate contact shadows on collarbones and chest\" } }, \"technical_parameters\": { \"optics\": \"50mm–85mm focal length equivalent, realistic photographic perspective\", \"depth_of_field\": \"Shallow, organic bokeh, natural fall-off\", \"resolution_quality\": \"16k Hyper-Realistic\", \"aspect_ratio\": \"3:4\" } }"
}
JSON
IM
图像
Photography nano-banana-2

Panning shot of a mysterious soccer player in red proffesion...

Panning shot of a mysterious soccer player in red proffesional soccer jearsy mid air kicking a ball, motion blur, cinematic lighting agains a Light gree gradient background with streaking lights --ar 4:5 --raw --stylize 700

查看 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": "Panning shot of a mysterious soccer player in red proffesional soccer jearsy mid air kicking a ball, motion blur, cinematic lighting agains a Light gree gradient background with streaking lights --ar 4:5 --raw --stylize 700"
}
JSON
IM
图像
Photography nano-banana-2

Create a 3:4 cinematic, atmospheric editorial portrait using...

Create a 3:4 cinematic, atmospheric editorial portrait using the attached photo as the exact face and identity reference. A solitary man/woman stands alone in the middle of vast, wind-swept sage green grass fields. Tall grass surrounds the subject completely, flowing in strong currents like ocean waves, partially obscuring the body and creating motion,depth, and solitude. The subject wears a simple, loose white shirt that softly contrasts with the rich green landscape. Dark hair is slightly messy, with natural strands moving in the wind. The head is gently tilted downward, eyes cast toward the ground, conveying a quiet, introspective, melancholic mood. Expression is calm, distant, and emotionally restrained. Compose the frame slightly off-center, from a subtle elevated angle. No visible horizon, the frame is fully immersed in grass texture. Use a muted natural palette of sage green, deep olive, and soft off-white. Shoot vertical 3:4, telephoto perspective, shallow depth of field, cinematic framing. Film photography aesthetic with visible grain, soft edge falloff, atmospheric light, wind-driven motion blur in the grass. Quiet, poetic storytelling; ultra-detailed yet natural, magazine-cover editorial quality. No text, no watermark.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create a 3:4 cinematic, atmospheric editorial portrait using the attached photo as the exact face and identity reference. A solitary man/woman stands alone in the middle of vast, wind-swept sage green grass fields. Tall grass surrounds the subject completely, flowing in strong currents like ocean waves, partially obscuring the body and creating motion,depth, and solitude. The subject wears a simple, loose white shirt that softly contrasts with the rich green landscape. Dark hair is slightly messy, with natural strands moving in the wind. The head is gently tilted downward, eyes cast toward the ground, conveying a quiet, introspective, melancholic mood. Expression is calm, distant, and emotionally restrained. Compose the frame slightly off-center, from a subtle elevated angle. No visible horizon, the frame is fully immersed in grass texture. Use a muted natural palette of sage green, deep olive, and soft off-white. Shoot vertical 3:4, telephoto perspective, shallow depth of field, cinematic framing. Film photography aesthetic with visible grain, soft edge falloff, atmospheric light, wind-driven motion blur in the grass. Quiet, poetic storytelling; ultra-detailed yet natural, magazine-cover editorial quality. No text, no watermark."
}
JSON
IM
图像
Photography nano-banana-2

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

{ "generation_request": { "meta_data": { "tool": "NanoBanana Pro", "task_type": "photoreal_candid_street_romance", "version": "v1.2_MODA_SEASIDE_SIMIT_SUNNY_CHERRY_DRESS_EN", "priority": "highest" }, "output_settings": { "aspect_ratio": "4:5", "orientation": "portrait", "resolution_target": "ultra_high_res", "render_style": "ultra_photoreal_candid_street_film_still", "sharpness": "crisp_but_natural", "film_grain": "subtle_35mm", "color_grade": "true_to_life_sunny_natural", "dynamic_range": "natural_not_hdr", "skin_rendering": "real_texture_no_retouch" }, "global_rules": { "camera_language": "35mm lens equivalent, eye-level, imperfect framing, candid documentary feel, focus on eyes when people are present", "authenticity_markers": "subtle halation on highlights, tiny film gate weave, real street clutter, slight background motion blur only, no studio look", "lighting_language": "motivated natural light only (sunlight + sky fill), deep but detailed shadows" }, "creative_prompt": { "scene_summary": "Moda seaside in Istanbul on a sunny day. A young couple in their early 20s sits near the shore eating simit. A candid, unposed film-still moment—quiet love inside everyday life.", "subjects": { "count": 2, "description": "the same young man and woman (early 20s), ordinary and real, not model-like; faces visible and eyes sharp", "expression": "small genuine smiles, relaxed presence, natural micro-expressions", "skin_and_face": "natural skin texture, no beauty retouch, no plastic skin, slight imperfections preserved" }, "wardrobe_and_props": { "female": "pink dress with colorful cherry pattern, simple fit, slightly moving in sea breeze, natural minimal makeup, long wavy hair", "male": "blue denim jeans and a plain white t-shirt, slightly wrinkled, no logos", "props": "two simits in their hands, a simple tote/backpack nearby, no branding" }, "micro_action": "they break pieces of simit, share a bite, laugh softly; the wind lifts the dress hem slightly; crumbs fall naturally onto their hands", "environment_details": { "location": "Moda coast, Istanbul", "background": "sea horizon, gentle waves, a few distant people walking softly out of focus, seagulls in the sky, sunlit railing and rocks", "ground_details": "worn stone or concrete edge, small everyday clutter (a bottle cap or leaf), but clean and believable, no staged props" }, "lighting": "bright sunny daylight with soft sky fill; controlled highlights; subtle halation on sunlit edges; deep but detailed shadows under chins and clothing folds", "composition": "eye-level medium shot, slightly off-center, imperfect framing like real street photography; faces sharp; background gently receding; no perfect symmetry", "mood": "warm, simple, human—an everyday Istanbul love scene" }, "negative_prompt": [ "studio lighting", "beauty retouch", "plastic skin", "model faces", "posed romance poster look", "perfect symmetry", "HDR", "AI glow", "fake bokeh shapes", "overly clean staged scene", "text", "logo", "watermark", "cartoon", "painterly" ] } }

查看 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_candid_street_romance\", \"version\": \"v1.2_MODA_SEASIDE_SIMIT_SUNNY_CHERRY_DRESS_EN\", \"priority\": \"highest\" }, \"output_settings\": { \"aspect_ratio\": \"4:5\", \"orientation\": \"portrait\", \"resolution_target\": \"ultra_high_res\", \"render_style\": \"ultra_photoreal_candid_street_film_still\", \"sharpness\": \"crisp_but_natural\", \"film_grain\": \"subtle_35mm\", \"color_grade\": \"true_to_life_sunny_natural\", \"dynamic_range\": \"natural_not_hdr\", \"skin_rendering\": \"real_texture_no_retouch\" }, \"global_rules\": { \"camera_language\": \"35mm lens equivalent, eye-level, imperfect framing, candid documentary feel, focus on eyes when people are present\", \"authenticity_markers\": \"subtle halation on highlights, tiny film gate weave, real street clutter, slight background motion blur only, no studio look\", \"lighting_language\": \"motivated natural light only (sunlight + sky fill), deep but detailed shadows\" }, \"creative_prompt\": { \"scene_summary\": \"Moda seaside in Istanbul on a sunny day. A young couple in their early 20s sits near the shore eating simit. A candid, unposed film-still moment—quiet love inside everyday life.\", \"subjects\": { \"count\": 2, \"description\": \"the same young man and woman (early 20s), ordinary and real, not model-like; faces visible and eyes sharp\", \"expression\": \"small genuine smiles, relaxed presence, natural micro-expressions\", \"skin_and_face\": \"natural skin texture, no beauty retouch, no plastic skin, slight imperfections preserved\" }, \"wardrobe_and_props\": { \"female\": \"pink dress with colorful cherry pattern, simple fit, slightly moving in sea breeze, natural minimal makeup, long wavy hair\", \"male\": \"blue denim jeans and a plain white t-shirt, slightly wrinkled, no logos\", \"props\": \"two simits in their hands, a simple tote/backpack nearby, no branding\" }, \"micro_action\": \"they break pieces of simit, share a bite, laugh softly; the wind lifts the dress hem slightly; crumbs fall naturally onto their hands\", \"environment_details\": { \"location\": \"Moda coast, Istanbul\", \"background\": \"sea horizon, gentle waves, a few distant people walking softly out of focus, seagulls in the sky, sunlit railing and rocks\", \"ground_details\": \"worn stone or concrete edge, small everyday clutter (a bottle cap or leaf), but clean and believable, no staged props\" }, \"lighting\": \"bright sunny daylight with soft sky fill; controlled highlights; subtle halation on sunlit edges; deep but detailed shadows under chins and clothing folds\", \"composition\": \"eye-level medium shot, slightly off-center, imperfect framing like real street photography; faces sharp; background gently receding; no perfect symmetry\", \"mood\": \"warm, simple, human—an everyday Istanbul love scene\" }, \"negative_prompt\": [ \"studio lighting\", \"beauty retouch\", \"plastic skin\", \"model faces\", \"posed romance poster look\", \"perfect symmetry\", \"HDR\", \"AI glow\", \"fake bokeh shapes\", \"overly clean staged scene\", \"text\", \"logo\", \"watermark\", \"cartoon\", \"painterly\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

Transform this image [Upload Your Image] into a 64K DSLR sho...

Transform this image [Upload Your Image] into a 64K DSLR shot resolution of A creative urban street portrait featuring a young man (same face as the uploaded image) sitting on a curb in a quiet city street, paired with a stylized cartoon illustration of himself placed beside him. The real-life subject (same face as the uploaded image) is seated casually on a concrete sidewalk edge, resting his head on one hand in a bored, contemplative pose. He looks slightly upward with a neutral, introspective expression, conveying a sense of quiet thoughtfulness and urban solitude. He wears a muted maroon cable-knit sweater with a relaxed fit, dark loose-fitting denim jeans with subtle stitched details near the cuffs, and worn brown leather boots. Accessories include layered silver chain dog tag with the name "[Add Text]" written on it, rings on his fingers, black-framed glasses, and a light-coloured baseball cap with bold embroidered lettering on the front. His hair is short, dark hair, a well-groomed beard texture and character. Next to him on the sidewalk sits a small cartoon version (same face as the uploaded image) of himself, matching his outfit and pose exactly—same sweater, jeans, boots, cap, glasses, and facial expression. The illustrated character has clean outlines, warm muted colors, and a soft shaded, hand-drawn animation style, creating a playful contrast between realism and illustration. The cartoon figure is proportionally smaller, emphasizing a companion-like or inner-self concept. The background features textured cobblestone pavement, a curb edge, and a building facade with muted yellow walls and green-tiled brickwork near a window. The color palette is earthy and subdued, with natural daylight providing soft, even lighting and realistic shadows. The overall composition blends street photography, fashion portraiture, and mixed-media digital art, evoking themes of identity, self-reflection, and creativity. Style & Mood Keywords: Urban street photography, casual fashion portrait, mixed media art, real and cartoon character duo, introspective mood, muted earthy tones, soft natural light, realistic textures, creative storytelling, high-resolution detail, cinematic realism. Octane render & Unreal Engine

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Transform this image [Upload Your Image] into a 64K DSLR shot resolution of A creative urban street portrait featuring a young man (same face as the uploaded image) sitting on a curb in a quiet city street, paired with a stylized cartoon illustration of himself placed beside him. The real-life subject (same face as the uploaded image) is seated casually on a concrete sidewalk edge, resting his head on one hand in a bored, contemplative pose. He looks slightly upward with a neutral, introspective expression, conveying a sense of quiet thoughtfulness and urban solitude. He wears a muted maroon cable-knit sweater with a relaxed fit, dark loose-fitting denim jeans with subtle stitched details near the cuffs, and worn brown leather boots. Accessories include layered silver chain dog tag with the name \"[Add Text]\" written on it, rings on his fingers, black-framed glasses, and a light-coloured baseball cap with bold embroidered lettering on the front. His hair is short, dark hair, a well-groomed beard texture and character. Next to him on the sidewalk sits a small cartoon version (same face as the uploaded image) of himself, matching his outfit and pose exactly—same sweater, jeans, boots, cap, glasses, and facial expression. The illustrated character has clean outlines, warm muted colors, and a soft shaded, hand-drawn animation style, creating a playful contrast between realism and illustration. The cartoon figure is proportionally smaller, emphasizing a companion-like or inner-self concept. The background features textured cobblestone pavement, a curb edge, and a building facade with muted yellow walls and green-tiled brickwork near a window. The color palette is earthy and subdued, with natural daylight providing soft, even lighting and realistic shadows. The overall composition blends street photography, fashion portraiture, and mixed-media digital art, evoking themes of identity, self-reflection, and creativity. Style & Mood Keywords: Urban street photography, casual fashion portrait, mixed media art, real and cartoon character duo, introspective mood, muted earthy tones, soft natural light, realistic textures, creative storytelling, high-resolution detail, cinematic realism. Octane render & Unreal Engine"
}
JSON
IM
图像
Photography nano-banana-2

Aesthetic 1970s-inspired fashion portrait of a stylish young...

Aesthetic 1970s-inspired fashion portrait of a stylish young woman sitting on outdoor cafe steps, holding a premium ornate green coffee cup with gold rim detailing, gazing softly at the camera. Her hair is styled in soft loose strands framing her face with vintage makeup, matte red lips, and subtle eyeliner. She is wearing a cozy forest green premium knit sweater paired with a long flowing black tutu skirt. A warm vintage plaid scarf in earthy brown, burnt orange, and muted red tones is wrapped loosely around her neck. A premium dark green leather crossbody bag with a gold filigree clasp and chain strap is placed beside her. Autumn street café setting with scattered fallen leaves and warm amber café lights glowing behind glass windows. 1970s film tone, warm grainy texture, muted earthy color palette, cinematic atmosphere, shallow depth of field, soft natural lighting, analog film look, fashion editorial photography, ultra-realistic, high detail, 85mm lens, f/1.8, vintage aesthetic, dreamy mood.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Aesthetic 1970s-inspired fashion portrait of a stylish young woman sitting on outdoor cafe steps, holding a premium ornate green coffee cup with gold rim detailing, gazing softly at the camera. Her hair is styled in soft loose strands framing her face with vintage makeup, matte red lips, and subtle eyeliner. She is wearing a cozy forest green premium knit sweater paired with a long flowing black tutu skirt. A warm vintage plaid scarf in earthy brown, burnt orange, and muted red tones is wrapped loosely around her neck. A premium dark green leather crossbody bag with a gold filigree clasp and chain strap is placed beside her. Autumn street café setting with scattered fallen leaves and warm amber café lights glowing behind glass windows. 1970s film tone, warm grainy texture, muted earthy color palette, cinematic atmosphere, shallow depth of field, soft natural lighting, analog film look, fashion editorial photography, ultra-realistic, high detail, 85mm lens, f/1.8, vintage aesthetic, dreamy mood."
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。