模型 PROMPTS

nano-banana-2 Prompts — 1027 个精选示例

通过 RunAPI 使用 nano-banana-2 的示例。复制 prompt 后,可在 Claude Code、Codex、Cursor、Windsurf 或后端 API 中使用。

模型

nano-banana-2

模态
图像
提供方
Google
Endpoint
Text To Image
查看模型详情和定价 →
1. claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
2. 重启 Claude Code
3. 粘贴这个 prompt:生成一张图像:"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
1. codex plugin install runapi-mcp@agents
2. 重启 Codex
3. 粘贴这个 prompt:生成一张图像:"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
1. npx @runapi.ai/mcp init cursor
2. 重启 Cursor
3. 粘贴这个 prompt:生成一张图像:"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
1. npx @runapi.ai/mcp init windsurf
2. 重启 Windsurf
3. 粘贴这个 prompt:生成一张图像:"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
}
JSON
import { NanoBananaClient } from "@runapi.ai/nano-banana";

const client = new NanoBananaClient({
  apiKey: process.env.RUNAPI_API_KEY,
});

const result = await client.textToImage.run({
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
});
console.log(result.id);
require "runapi/nano_banana"

client = RunApi::NanoBanana::Client.new
result = client.text_to_image.run(
  model: "nano-banana-2",
  prompt: "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
)
puts result.id
package main

import (
  "context"
  "fmt"
  "log"
  "net/http"
  "os"
  "strings"
)

func main() {
  body := strings.NewReader("{\"model\":\"nano-banana-2\",\"prompt\":\"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”\"}")
  req, err := http.NewRequestWithContext(context.Background(), http.MethodPost, "https://runapi.ai/api/v1/nano_banana/text_to_image", body)
  if err != nil {
    log.Fatal(err)
  }

  req.Header.Set("Authorization", "Bearer "+os.Getenv("RUNAPI_API_KEY"))
  req.Header.Set("Content-Type", "application/json")

  resp, err := http.DefaultClient.Do(req)
  if err != nil {
    log.Fatal(err)
  }
  defer resp.Body.Close()

  fmt.Println(resp.Status)
}
nano-banana-2 /api/v1/nano_banana/text_to_image 获取 API Key
IM
图像
Photography nano-banana-2

A cinematic forced-perspective street photography scene wher...

A cinematic forced-perspective street photography scene where a giant worn-out sneaker appears enormous in the foreground, towering over a casually dressed young man leaning against it. The man wears a brown leather jacket, loose blue jeans, sneakers, and a beige cap, standing confidently with hands in pockets. Autumn atmosphere with yellow and orange leaves scattered on the road, talltrees with fall foliage in the background, parked car slightly blurred. Ultra-realistic textures on the shoe sole, visible dirt and fabric wear. Shot from a very low angle to exaggerate scale, shallow depth of field, natural daylight, soft cinematic color grading, realistic shadows, high detail, 8K resolution, professional photography, surreal yet believable forced perspective illusion.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A cinematic forced-perspective street photography scene where a giant worn-out sneaker appears enormous in the foreground, towering over a casually dressed young man leaning against it. The man wears a brown leather jacket, loose blue jeans, sneakers, and a beige cap, standing confidently with hands in pockets. Autumn atmosphere with yellow and orange leaves scattered on the road, talltrees with fall foliage in the background, parked car slightly blurred. Ultra-realistic textures on the shoe sole, visible dirt and fabric wear. Shot from a very low angle to exaggerate scale, shallow depth of field, natural daylight, soft cinematic color grading, realistic shadows, high detail, 8K resolution, professional photography, surreal yet believable forced perspective illusion."
}
JSON
IM
图像
Photography nano-banana-2

An editorial poster-style multi-panel collage presents Subje...

An editorial poster-style multi-panel collage presents Subject[person in the image] across three asymmetric photographic frames, unified by a muted-brown urban streetwear aesthetic and a retro analog-digital fusion mood. The top-left frame captures a reflective window shot where the subject holds a phone in front of their face, dressed in a brown plaid blazer layered over a white button-up shirt, a yellow tie, loose dark trousers, and a brown cap; the reflective surface introduces layered ghosting, faint architectural overlays, and a subtly stretched full-body silhouette shaped by the curvature of the glass. The top-right frame shifts into a close-range, downward-angled ultra-wide portrait taken on a cobblestone street, where the subject leans forward with hands in pockets and lips exaggeratedly pouting, wearing the same outfit now paired with oversized amber-tinted rectangular sunglasses, while the cobblestones warp and radiate outward due to lens perspective distortion. The bottom-right frame becomes an intimate overhead selfie with the subject holding a drink, still in the same wardrobe but now with wired earphones, the amber sunglasses dominating the frame under soft overcast lighting, enhanced by faint digital-grid overlays and a minimal square facial-bounding graphic. Floating across the middle section of the poster is a translucent iOS-style Apple Music mini-player displaying "See You Again" by Tyler, The Creator, featuring artwork, timeline, and playback controls without shadows, contributing to the minimal Ul aesthetic alongside subtle cursor-like frame lines and rectangular highlights around the collage edges. The overall palette emphasizes warm ambers, washed neutrals, soft greys, reflective textures, wool plaid patterning, polished leather, and stone pavement, all rendered with realistic lighting and natural distortion patterns while avoiding stickers, extra subjects, wardrobe changes, incorrect Ul icons, neon color shifts, or any futuristic sci-fi elements.

查看 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": "An editorial poster-style multi-panel collage presents Subject[person in the image] across three asymmetric photographic frames, unified by a muted-brown urban streetwear aesthetic and a retro analog-digital fusion mood. The top-left frame captures a reflective window shot where the subject holds a phone in front of their face, dressed in a brown plaid blazer layered over a white button-up shirt, a yellow tie, loose dark trousers, and a brown cap; the reflective surface introduces layered ghosting, faint architectural overlays, and a subtly stretched full-body silhouette shaped by the curvature of the glass. The top-right frame shifts into a close-range, downward-angled ultra-wide portrait taken on a cobblestone street, where the subject leans forward with hands in pockets and lips exaggeratedly pouting, wearing the same outfit now paired with oversized amber-tinted rectangular sunglasses, while the cobblestones warp and radiate outward due to lens perspective distortion. The bottom-right frame becomes an intimate overhead selfie with the subject holding a drink, still in the same wardrobe but now with wired earphones, the amber sunglasses dominating the frame under soft overcast lighting, enhanced by faint digital-grid overlays and a minimal square facial-bounding graphic. Floating across the middle section of the poster is a translucent iOS-style Apple Music mini-player displaying \"See You Again\" by Tyler, The Creator, featuring artwork, timeline, and playback controls without shadows, contributing to the minimal Ul aesthetic alongside subtle cursor-like frame lines and rectangular highlights around the collage edges. The overall palette emphasizes warm ambers, washed neutrals, soft greys, reflective textures, wool plaid patterning, polished leather, and stone pavement, all rendered with realistic lighting and natural distortion patterns while avoiding stickers, extra subjects, wardrobe changes, incorrect Ul icons, neon color shifts, or any futuristic sci-fi elements."
}
JSON
IM
图像
Photography nano-banana-2

Create a hyper-realistic mirror selfie of me (use my face fr...

Create a hyper-realistic mirror selfie of me (use my face from the uploaded selfie) wearing the same black Ferrari racing jacket with red and yellow patches, black t-shirt underneath, silver rings, and chain. I'm holding a phone with a beige MagSafe case, posing in a dimly lit modern bathroom with dark marble walls. The lighting is soft and moody capturing the same hairstyle, pose, and reflection angle as in the reference image - stylish, confident cinematic vibe. Add a moody filter.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create a hyper-realistic mirror selfie of me (use my face from the uploaded selfie) wearing the same black Ferrari racing jacket with red and yellow patches, black t-shirt underneath, silver rings, and chain. I'm holding a phone with a beige MagSafe case, posing in a dimly lit modern bathroom with dark marble walls. The lighting is soft and moody capturing the same hairstyle, pose, and reflection angle as in the reference image - stylish, confident cinematic vibe. Add a moody filter."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic street fashion editorial photograph in New Y...

Ultra-realistic street fashion editorial photograph in New York City / Wall Street area, shot in vertical 3:4 (1152×1536). A stylish woman stands in the lower-right foreground on a wide concrete sidewalk at a street corner, posed in left-facing profile (body angled left, head slightly forward), calm confident expression. She wears large black rectangular sunglasses, pearl drop earrings, hair sleek center-part pulled into a low bun, subtle makeup with warm blush and muted lipstick. Outfit: oversized chocolate-brown leather bomber jacket with pronounced shoulders and glossy creases, layered over a light blue collared shirt and a dark necktie. Hands in front holding a folded newspaper: “THE WALL STREET” clearly visible across the top of the paper. She wears white gloves and high-waisted white pants (clean, structured). Environment / Street Elements (Must match): A tall black metal street pole dominates the right side foreground, wrapped with white tape bands and small worn stickers; at the top right there’s a black-and-white “ONE WAY” sign (arrow pointing right). Just left of the pole is a yellow/orange pedestrian traffic signal with the white walking figure illuminated. Above and behind, multiple large American flags hang from the stone building façade, the nearest flag filling the upper center-left area with visible red-and-white stripes and blue field. Background is a canyon of tall buildings: left side is an older light beige stone building with rectangular windows, vent-like panels, and dark trim at the base; right side shows modern tall buildings and a long street receding into the distance. On the roadway to the right is a pinkish-red lane (bus/bike lane feel) with textured sidewalk corner and a small red tactile paving patch near the pole base. Far background includes tiny pedestrians and cars along the street; everything is sharp enough to read the scene but remains secondary to the subject. Composition / Perspective: Wide-angle street perspective with strong vertical lines; the camera is at rough chest height aimed slightly upward so the signal, flags, and signs tower above the subject. Subject is framed from mid-thigh up, placed bottom-right, leaving large negative space of architecture and street signage above. Maintain exact spacing: pole near right edge, pedestrian signal centered above subject, flags hanging upper-left, street depth vanishing toward upper-right background. Lighting / Color / Texture: Overcast daylight with soft shadows, neutral highlights. Warm, slightly desaturated film look (beige stone tones, muted browns), subtle contrast, gentle lifted blacks. Add fine film grain and slight texture like a candid editorial street shot. Natural skin texture, realistic leather sheen and folds, realistic newspaper paper texture. Camera / Lens / Settings (Emulation): Full-frame look, 24–28mm wide lens, documentary/editorial street style, moderate depth of field (subject crisp, background slightly softer but still readable). Slight vintage/film-grade color science. Hard Rules (No deviations): Do not change the pose, outfit layers (brown leather jacket + blue shirt + tie), sunglasses shape, pearl earrings, bun hairstyle, white gloves, white pants, the “THE WALL STREET” newspaper text, the “ONE WAY” sign, the walking man icon, the American flags, or the exact NYC street-corner composition. No extra props, no extra people in foreground, no cropping changes, no stylization beyond realistic film/editorial grain. Negative Prompt (Strict): no illustration, no CGI look, no anime, no painterly texture, no extra typography overlays, no added logos, no changed signs, no different newspaper title, no different flag placement, no blur on main subject, no heavy HDR, no neon colors, no beauty-plastic skin, no distorted hands, no warped buildings, no random lens flares.

查看 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 street fashion editorial photograph in New York City / Wall Street area, shot in vertical 3:4 (1152×1536). A stylish woman stands in the lower-right foreground on a wide concrete sidewalk at a street corner, posed in left-facing profile (body angled left, head slightly forward), calm confident expression. She wears large black rectangular sunglasses, pearl drop earrings, hair sleek center-part pulled into a low bun, subtle makeup with warm blush and muted lipstick. Outfit: oversized chocolate-brown leather bomber jacket with pronounced shoulders and glossy creases, layered over a light blue collared shirt and a dark necktie. Hands in front holding a folded newspaper: “THE WALL STREET” clearly visible across the top of the paper. She wears white gloves and high-waisted white pants (clean, structured). Environment / Street Elements (Must match): A tall black metal street pole dominates the right side foreground, wrapped with white tape bands and small worn stickers; at the top right there’s a black-and-white “ONE WAY” sign (arrow pointing right). Just left of the pole is a yellow/orange pedestrian traffic signal with the white walking figure illuminated. Above and behind, multiple large American flags hang from the stone building façade, the nearest flag filling the upper center-left area with visible red-and-white stripes and blue field. Background is a canyon of tall buildings: left side is an older light beige stone building with rectangular windows, vent-like panels, and dark trim at the base; right side shows modern tall buildings and a long street receding into the distance. On the roadway to the right is a pinkish-red lane (bus/bike lane feel) with textured sidewalk corner and a small red tactile paving patch near the pole base. Far background includes tiny pedestrians and cars along the street; everything is sharp enough to read the scene but remains secondary to the subject. Composition / Perspective: Wide-angle street perspective with strong vertical lines; the camera is at rough chest height aimed slightly upward so the signal, flags, and signs tower above the subject. Subject is framed from mid-thigh up, placed bottom-right, leaving large negative space of architecture and street signage above. Maintain exact spacing: pole near right edge, pedestrian signal centered above subject, flags hanging upper-left, street depth vanishing toward upper-right background. Lighting / Color / Texture: Overcast daylight with soft shadows, neutral highlights. Warm, slightly desaturated film look (beige stone tones, muted browns), subtle contrast, gentle lifted blacks. Add fine film grain and slight texture like a candid editorial street shot. Natural skin texture, realistic leather sheen and folds, realistic newspaper paper texture. Camera / Lens / Settings (Emulation): Full-frame look, 24–28mm wide lens, documentary/editorial street style, moderate depth of field (subject crisp, background slightly softer but still readable). Slight vintage/film-grade color science. Hard Rules (No deviations): Do not change the pose, outfit layers (brown leather jacket + blue shirt + tie), sunglasses shape, pearl earrings, bun hairstyle, white gloves, white pants, the “THE WALL STREET” newspaper text, the “ONE WAY” sign, the walking man icon, the American flags, or the exact NYC street-corner composition. No extra props, no extra people in foreground, no cropping changes, no stylization beyond realistic film/editorial grain. Negative Prompt (Strict): no illustration, no CGI look, no anime, no painterly texture, no extra typography overlays, no added logos, no changed signs, no different newspaper title, no different flag placement, no blur on main subject, no heavy HDR, no neon colors, no beauty-plastic skin, no distorted hands, no warped buildings, no random lens flares."
}
JSON
IM
图像
Photography nano-banana-2

A stylish young man sitting confidently on raw concrete step...

A stylish young man sitting confidently on raw concrete steps inside a dense urban housing complex during golden hour. He wears a hooded sweatshirt layered under a premium streetwear jacket with minimal embroidered patches, relaxed cargo pants, and bold high-top sneakers. Shot from a low, slightly wide angle to enhance dominance and attitude. Warm golden sunlight from the setting sun and street lamps creates long shadows, glowing highlights on the face, and cinematic depth. Tall apartment buildings with softly lit windows fill the background. Ultra-realistic DSLR look, shallow depth of field, crisp fabric textures, natural skin tones, subtle film grain, Instagram-trending urban vibe, 4K quality.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A stylish young man sitting confidently on raw concrete steps inside a dense urban housing complex during golden hour. He wears a hooded sweatshirt layered under a premium streetwear jacket with minimal embroidered patches, relaxed cargo pants, and bold high-top sneakers. Shot from a low, slightly wide angle to enhance dominance and attitude. Warm golden sunlight from the setting sun and street lamps creates long shadows, glowing highlights on the face, and cinematic depth. Tall apartment buildings with softly lit windows fill the background. Ultra-realistic DSLR look, shallow depth of field, crisp fabric textures, natural skin tones, subtle film grain, Instagram-trending urban vibe, 4K quality."
}
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 mixed-reality street portrait featuring a real young man (same face as the uploaded image) sitting on concrete steps beside his illustrated cartoon counterpart. The scene is set outdoors against a gray brick wall with a large window above, reflecting trees and indoor lighting, giving an urban neighborhood feel. The sidewalk and steps have worn yellow paint along the edges, adding texture and realism. On the right sits the real person, a young man (same face as the uploaded image) dressed in early-2000s hip-hop streetwear. He wears an oversized bright yellow graphic T-shirt with a bold circular logo, loose light-blue baggy jeans, white & red chunky sneakers with yellow detailing, and a maroon baseball cap worn forward. He poses casually, seated with legs extended, one arm flexed at the elbow as if showing strength or confidence, looking off to the side with a calm, cool expression. On the left sits his cartoon illustrated version of himself (same face as the uploaded image) perfectly matching his outfit, pose, and proportions. The cartoon character is drawn in a flat, bold, graphic style with thick black outlines, simplified facial features, and vibrant colors. The illustrated figure mirrors the real person’s posture and clothing exactly same, including the oversized shirt, baggy jeans, red & white sneakers, and maroon cap. The cartoon arm connects visually with the real person’s arm, creating a playful illusion of interaction between illustration and reality. The illustration style resembles hand-drawn street art or animated hip-hop character design, seamlessly integrated into the photograph with accurate scale, alignment, and grounding. The contrast between realistic textures (concrete, brick, denim fabric) and the clean, flat cartoon shading creates a striking visual effect. Lighting is natural daylight, evenly illuminating both the real and illustrated subjects. The overall mood is cool, nostalgic, playful, and creative, blending street fashion, urban culture, and cartoon art into a cohesive mixed-media composition. Style & Mood Keywords: Mixed media photography, real person with cartoon twin, urban street portrait, hip-hop fashion, Y2K streetwear, bold graphic illustration, cartoon realism blend, playful surrealism, nostalgic urban culture, high-resolution detail, creative storytelling. Octane render & Unreal Engine 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": "Transform this image [Upload Your Image] into a 64K DSLR shot resolution of A creative mixed-reality street portrait featuring a real young man (same face as the uploaded image) sitting on concrete steps beside his illustrated cartoon counterpart. The scene is set outdoors against a gray brick wall with a large window above, reflecting trees and indoor lighting, giving an urban neighborhood feel. The sidewalk and steps have worn yellow paint along the edges, adding texture and realism. On the right sits the real person, a young man (same face as the uploaded image) dressed in early-2000s hip-hop streetwear. He wears an oversized bright yellow graphic T-shirt with a bold circular logo, loose light-blue baggy jeans, white & red chunky sneakers with yellow detailing, and a maroon baseball cap worn forward. He poses casually, seated with legs extended, one arm flexed at the elbow as if showing strength or confidence, looking off to the side with a calm, cool expression. On the left sits his cartoon illustrated version of himself (same face as the uploaded image) perfectly matching his outfit, pose, and proportions. The cartoon character is drawn in a flat, bold, graphic style with thick black outlines, simplified facial features, and vibrant colors. The illustrated figure mirrors the real person’s posture and clothing exactly same, including the oversized shirt, baggy jeans, red & white sneakers, and maroon cap. The cartoon arm connects visually with the real person’s arm, creating a playful illusion of interaction between illustration and reality. The illustration style resembles hand-drawn street art or animated hip-hop character design, seamlessly integrated into the photograph with accurate scale, alignment, and grounding. The contrast between realistic textures (concrete, brick, denim fabric) and the clean, flat cartoon shading creates a striking visual effect. Lighting is natural daylight, evenly illuminating both the real and illustrated subjects. The overall mood is cool, nostalgic, playful, and creative, blending street fashion, urban culture, and cartoon art into a cohesive mixed-media composition. Style & Mood Keywords: Mixed media photography, real person with cartoon twin, urban street portrait, hip-hop fashion, Y2K streetwear, bold graphic illustration, cartoon realism blend, playful surrealism, nostalgic urban culture, high-resolution detail, creative storytelling. Octane render & Unreal Engine 5."
}
JSON
IM
图像
Photography nano-banana-2

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

{ "type": "image_generation_prompt", "style": "ultra-photorealistic, cinematic, high-end fashion editorial", "aspect_ratio": "1:1", "resolution": "high resolution, maximum realism", "scene": { "time": "night", "weather": "rainy", "location": "urban London street" }, "environment": { "primary_setting": "inside a classic red British telephone booth", "ground": "wet pavement reflecting city lights", "atmosphere": [ "visible raindrops under soft street lighting", "subtle fog in the background", "blurred headlights", "cinematic bokeh lights" ] }, "subject": { "gender": "female", "appearance": { "physique": "fit, elegant, confident presence", "expression": "serious, confident, charismatic", "pose": { "full_body_visible": true, "stance": "standing inside the telephone booth", "right_hand": "holding the old-fashioned phone receiver", "left_hand": "casually inside coat pocket" } }, "clothing": { "outfit": "tailored black suit", "outerwear": "long dark trench coat slightly wet from rain", "style": "elegant, cinematic, fashion editorial" } }, "lighting": { "type": "moody cinematic street lighting", "effects": [ "dramatic contrast", "realistic rain reflections on glass panels", "soft highlights on wet surfaces", "natural reflections from city lights" ] }, "camera": { "framing": "full-body shot from head to toe", "composition": "centered subject inside telephone booth", "focus": "sharp focus on subject, soft blur in background", "style": "cinematic photography" }, "mood": { "tone": "dark, elegant, cinematic", "aesthetic": "high-end fashion editorial with urban atmosphere" }, "constraints": [ "no cartoon or illustration", "no unrealistic lighting", "no distortion", "no watermark", "no text" ], "output_goal": "Create an ultra-photorealistic cinematic night scene of a confident woman standing inside a classic red British telephone booth in rainy London, with dramatic lighting, realistic reflections, and a high-end fashion editorial 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\": \"ultra-photorealistic, cinematic, high-end fashion editorial\", \"aspect_ratio\": \"1:1\", \"resolution\": \"high resolution, maximum realism\", \"scene\": { \"time\": \"night\", \"weather\": \"rainy\", \"location\": \"urban London street\" }, \"environment\": { \"primary_setting\": \"inside a classic red British telephone booth\", \"ground\": \"wet pavement reflecting city lights\", \"atmosphere\": [ \"visible raindrops under soft street lighting\", \"subtle fog in the background\", \"blurred headlights\", \"cinematic bokeh lights\" ] }, \"subject\": { \"gender\": \"female\", \"appearance\": { \"physique\": \"fit, elegant, confident presence\", \"expression\": \"serious, confident, charismatic\", \"pose\": { \"full_body_visible\": true, \"stance\": \"standing inside the telephone booth\", \"right_hand\": \"holding the old-fashioned phone receiver\", \"left_hand\": \"casually inside coat pocket\" } }, \"clothing\": { \"outfit\": \"tailored black suit\", \"outerwear\": \"long dark trench coat slightly wet from rain\", \"style\": \"elegant, cinematic, fashion editorial\" } }, \"lighting\": { \"type\": \"moody cinematic street lighting\", \"effects\": [ \"dramatic contrast\", \"realistic rain reflections on glass panels\", \"soft highlights on wet surfaces\", \"natural reflections from city lights\" ] }, \"camera\": { \"framing\": \"full-body shot from head to toe\", \"composition\": \"centered subject inside telephone booth\", \"focus\": \"sharp focus on subject, soft blur in background\", \"style\": \"cinematic photography\" }, \"mood\": { \"tone\": \"dark, elegant, cinematic\", \"aesthetic\": \"high-end fashion editorial with urban atmosphere\" }, \"constraints\": [ \"no cartoon or illustration\", \"no unrealistic lighting\", \"no distortion\", \"no watermark\", \"no text\" ], \"output_goal\": \"Create an ultra-photorealistic cinematic night scene of a confident woman standing inside a classic red British telephone booth in rainy London, with dramatic lighting, realistic reflections, and a high-end fashion editorial aesthetic.\" }"
}
JSON
IM
图像
Photography nano-banana-2

Utilize exclusively and obligatorily the uploaded reference...

Utilize exclusively and obligatorily the uploaded reference photos as the primary and authoritative source for the model’s face, facial structure, proportions, skin tone, real skin texture, and the exact natural characteristics of her hair. Do not idealize, beautify, alter, rejuvenate, slim the face, smooth the skin, or modify any real features. Do not remove or change freckles, pores, fine lines, or natural imperfections.The appearance must match the reference images exactly, with absolute fidelity. Create a hyper-realistic, ethereal macro Fine Art portrait photograph, captured with a Leica APO-Macro-Elmarit-R 100mm f/2.8, full-frame. An extreme close-up of a young woman’s face with pale skin, fully respecting the real physiognomy of the model as shown in the reference photos. Skin texture is ultra-detailed and completely natural, with clearly visible pores and no artificial smoothing. One crystal-clear, melancholic eye is in perfect critical focus, displaying natural micro-contrast characteristic of Leica optics. Long, natural eyelashes. Lips slightly parted, in a natural pale pink tone, with no excessive or artificial makeup. Delicate wildflowers in soft lilac and muted purple tones rest gently on the cheek and intertwine with loose, naturally imperfect hair strands, exactly following the real hair pattern seen in the reference images. Some flowers appear softly out of focus in the foreground, creating organic depth and layered composition. Soft, cool, diffused natural light, as on an overcast day. No harsh shadows, no artificial lighting. A serene, fragile, poetic, and subtly melancholic atmosphere. Macro photography with an extremely shallow depth of field, edges and background melting into a creamy, smooth bokeh. Absolute critical focus on the iris and the true skin texture. Desaturated color palette, cool pastel tones — soft gray, beige, and lilac. Fine Art aesthetic, authentic Leica optical fidelity, true photographic appearance. Ultra-high resolution 8K, with no AI-generated look.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Utilize exclusively and obligatorily the uploaded reference photos as the primary and authoritative source for the model’s face, facial structure, proportions, skin tone, real skin texture, and the exact natural characteristics of her hair. Do not idealize, beautify, alter, rejuvenate, slim the face, smooth the skin, or modify any real features. Do not remove or change freckles, pores, fine lines, or natural imperfections.The appearance must match the reference images exactly, with absolute fidelity. Create a hyper-realistic, ethereal macro Fine Art portrait photograph, captured with a Leica APO-Macro-Elmarit-R 100mm f/2.8, full-frame. An extreme close-up of a young woman’s face with pale skin, fully respecting the real physiognomy of the model as shown in the reference photos. Skin texture is ultra-detailed and completely natural, with clearly visible pores and no artificial smoothing. One crystal-clear, melancholic eye is in perfect critical focus, displaying natural micro-contrast characteristic of Leica optics. Long, natural eyelashes. Lips slightly parted, in a natural pale pink tone, with no excessive or artificial makeup. Delicate wildflowers in soft lilac and muted purple tones rest gently on the cheek and intertwine with loose, naturally imperfect hair strands, exactly following the real hair pattern seen in the reference images. Some flowers appear softly out of focus in the foreground, creating organic depth and layered composition. Soft, cool, diffused natural light, as on an overcast day. No harsh shadows, no artificial lighting. A serene, fragile, poetic, and subtly melancholic atmosphere. Macro photography with an extremely shallow depth of field, edges and background melting into a creamy, smooth bokeh. Absolute critical focus on the iris and the true skin texture. Desaturated color palette, cool pastel tones — soft gray, beige, and lilac. Fine Art aesthetic, authentic Leica optical fidelity, true photographic appearance. Ultra-high resolution 8K, with no AI-generated look."
}
JSON
IM
图像
Photography nano-banana-2

Beard. Makeup is minimal and natural, emphasizing clear skin...

Beard. Makeup is minimal and natural, emphasizing clear skin and subtle lip color. The outfit is contemporary high-fashion streetwear with a Y2K and avant-garde influence. The model wears an oversized, light-wash distressed denim jacket draped loosely over the shoulders, layered over a white graphic T-shirt with bold black text reading "ZarOon". The jeans are extremely oversized, low-rise, acid-wash denim with exaggerated wide legs, heavy structure, decorative.

查看 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": "Beard. Makeup is minimal and natural, emphasizing clear skin and subtle lip color. The outfit is contemporary high-fashion streetwear with a Y2K and avant-garde influence. The model wears an oversized, light-wash distressed denim jacket draped loosely over the shoulders, layered over a white graphic T-shirt with bold black text reading \"ZarOon\". The jeans are extremely oversized, low-rise, acid-wash denim with exaggerated wide legs, heavy structure, decorative."
}
JSON
IM
图像
Photography nano-banana-2

Generate an image of a man in the uploaded image in which th...

Generate an image of a man in the uploaded image in which the entire scene is layered with heavy, horizontal motion-blur streaks in shades of teal, yellow, and white, creating a "speed-light" effect. These colorful blurs must appear both behind the man and superimposed over his body and face, behaving like reflections on a glass mirror. A medium shot of a man standing perfectly still in the center of a frame, looking down at a red smartphone held with both hands. He is wearing a white t-shirt under a translucent, light gray windbreaker jacket and a dark wristwatch. The background is a chaotic, vibrant blur of horizontal light trails in colors of neon blue, orange, yellow, and white, suggesting a high-speed train or city traffic. Crucially, these colorful motion-blurred light streaks pass both behind and directly over the man's body, appearing semi-transparent as they overlap his torso and arms, creating a double-exposure effect. The man's face and hair are in sharp focus, showing a calm expression, contrasting with the high-speed motion of the environment. Cinematic lighting, hyper-realistic, 8k resolution.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Generate an image of a man in the uploaded image in which the entire scene is layered with heavy, horizontal motion-blur streaks in shades of teal, yellow, and white, creating a \"speed-light\" effect. These colorful blurs must appear both behind the man and superimposed over his body and face, behaving like reflections on a glass mirror. A medium shot of a man standing perfectly still in the center of a frame, looking down at a red smartphone held with both hands. He is wearing a white t-shirt under a translucent, light gray windbreaker jacket and a dark wristwatch. The background is a chaotic, vibrant blur of horizontal light trails in colors of neon blue, orange, yellow, and white, suggesting a high-speed train or city traffic. Crucially, these colorful motion-blurred light streaks pass both behind and directly over the man's body, appearing semi-transparent as they overlap his torso and arms, creating a double-exposure effect. The man's face and hair are in sharp focus, showing a calm expression, contrasting with the high-speed motion of the environment. Cinematic lighting, hyper-realistic, 8k resolution."
}
JSON
IM
图像
Photography nano-banana-2

{ "request_type": "image_generation_prompt", "source_mat...

{ "request_type": "image_generation_prompt", "source_material": { "input_required": true, "description": "User uploaded image for face reference." }, "technical_specs": { "resolution": "64K DSLR shot resolution", "aspect_ratio": "9:16", "render_engines": [ "Octane Render", "Unreal Engine 5" ], "realism_level": "High-resolution realism" }, "composition": { "perspective": "High-angle, top-down view", "layout_style": "Modern social media grid (Instagram feed concept)", "layout_structure": { "central_element": "Larger, framed highlighted post", "surrounding_elements": "Clean grid pattern formed by smaller images" }, "content_type": "Dynamic, urban street-style photo collage", "ui_overlay": { "enabled": true, "style": "Minimal social media interface mimicry", "elements": [ "White rounded rectangles showing a username", "Subtle heart icons", "Minimal interaction indicators" ] } }, "subject": { "identity": { "description": "Young woman", "facial_reference": "Same face as the uploaded image" }, "appearance": { "hair": "Long black hair, worn loose and slightly messy", "vibe": "Confident, edgy, effortlessly cool" }, "clothing": { "top": "Black-and-white horizontal striped cropped T-shirt", "bottom": "Loose black knee-length shorts", "footwear": { "shoes": "Polished black leather shoes", "socks": "Bright red socks" }, "eyewear": "Oversized tinted sunglasses" }, "accessories": { "headwear": { "item": "Red-and-white baseball cap", "usage": "Sometimes worn, sometimes held in hand" }, "bag": "Small shoulder bag", "jewelry": "Stacked bracelets", "other": "Takeaway drink cup" }, "actions_and_poses": { "style": "Candid moments captured in motion, not posed", "examples": [ "Walking along the street", "Walking mid-step", "Adjusting cap", "Looking up toward camera", "Fixing bag", "Holding drink" ], "narrative_effect": "Natural lifestyle storytelling, varying poses across frames" } }, "environment": { "setting": "Asphalt city street", "ground_surface": "Textured gray asphalt, minimal and uncluttered", "role": "Neutral backdrop emphasizing fashion and movement" }, "lighting_and_color": { "lighting_type": "Natural daylight with soft shadows", "photographic_feel": "Realistic street photography", "color_palette": { "base": "Muted and urban tones", "contrast_accents": ["Bright red socks", "Red-and-white cap"] } }, "style_and_mood": { "overall_mood": "Candid, contemporary, effortlessly cool", "aesthetic_blend": [ "Fashion photography", "Street culture", "Social media aesthetics" ], "keywords": [ "Urban street photography", "Top-down perspective", "Instagram grid layout", "Candid lifestyle shots", "Street fashion", "Casual cool aesthetic", "Muted city tones", "Social media UI overlay", "Natural light", "Modern editorial style" ] } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"request_type\": \"image_generation_prompt\", \"source_material\": { \"input_required\": true, \"description\": \"User uploaded image for face reference.\" }, \"technical_specs\": { \"resolution\": \"64K DSLR shot resolution\", \"aspect_ratio\": \"9:16\", \"render_engines\": [ \"Octane Render\", \"Unreal Engine 5\" ], \"realism_level\": \"High-resolution realism\" }, \"composition\": { \"perspective\": \"High-angle, top-down view\", \"layout_style\": \"Modern social media grid (Instagram feed concept)\", \"layout_structure\": { \"central_element\": \"Larger, framed highlighted post\", \"surrounding_elements\": \"Clean grid pattern formed by smaller images\" }, \"content_type\": \"Dynamic, urban street-style photo collage\", \"ui_overlay\": { \"enabled\": true, \"style\": \"Minimal social media interface mimicry\", \"elements\": [ \"White rounded rectangles showing a username\", \"Subtle heart icons\", \"Minimal interaction indicators\" ] } }, \"subject\": { \"identity\": { \"description\": \"Young woman\", \"facial_reference\": \"Same face as the uploaded image\" }, \"appearance\": { \"hair\": \"Long black hair, worn loose and slightly messy\", \"vibe\": \"Confident, edgy, effortlessly cool\" }, \"clothing\": { \"top\": \"Black-and-white horizontal striped cropped T-shirt\", \"bottom\": \"Loose black knee-length shorts\", \"footwear\": { \"shoes\": \"Polished black leather shoes\", \"socks\": \"Bright red socks\" }, \"eyewear\": \"Oversized tinted sunglasses\" }, \"accessories\": { \"headwear\": { \"item\": \"Red-and-white baseball cap\", \"usage\": \"Sometimes worn, sometimes held in hand\" }, \"bag\": \"Small shoulder bag\", \"jewelry\": \"Stacked bracelets\", \"other\": \"Takeaway drink cup\" }, \"actions_and_poses\": { \"style\": \"Candid moments captured in motion, not posed\", \"examples\": [ \"Walking along the street\", \"Walking mid-step\", \"Adjusting cap\", \"Looking up toward camera\", \"Fixing bag\", \"Holding drink\" ], \"narrative_effect\": \"Natural lifestyle storytelling, varying poses across frames\" } }, \"environment\": { \"setting\": \"Asphalt city street\", \"ground_surface\": \"Textured gray asphalt, minimal and uncluttered\", \"role\": \"Neutral backdrop emphasizing fashion and movement\" }, \"lighting_and_color\": { \"lighting_type\": \"Natural daylight with soft shadows\", \"photographic_feel\": \"Realistic street photography\", \"color_palette\": { \"base\": \"Muted and urban tones\", \"contrast_accents\": [\"Bright red socks\", \"Red-and-white cap\"] } }, \"style_and_mood\": { \"overall_mood\": \"Candid, contemporary, effortlessly cool\", \"aesthetic_blend\": [ \"Fashion photography\", \"Street culture\", \"Social media aesthetics\" ], \"keywords\": [ \"Urban street photography\", \"Top-down perspective\", \"Instagram grid layout\", \"Candid lifestyle shots\", \"Street fashion\", \"Casual cool aesthetic\", \"Muted city tones\", \"Social media UI overlay\", \"Natural light\", \"Modern editorial style\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

Photorealistic cinematic portrait of a young East Asian woma...

Photorealistic cinematic portrait of a young East Asian woman standing outdoors at sunset, side-profile close-up, looking thoughtfully into the distance. Soft golden hour lighting illuminating one side of her face, warm orange and teal color grading. She wears a black coat and dark scarf, hair loosely tied back with soft natural strands around her face. Natural skin texture, realistic facial details, minimal makeup. Shallow depth of field with blurred landscape background, smooth bokeh, dramatic atmospheric mood, soft gradient sky transitioning from warm orange to cool green tones. Shot on 85mm lens, f/1.8, ultra-realistic, high dynamic range, cinematic composition, moody, film still 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": "Photorealistic cinematic portrait of a young East Asian woman standing outdoors at sunset, side-profile close-up, looking thoughtfully into the distance. Soft golden hour lighting illuminating one side of her face, warm orange and teal color grading. She wears a black coat and dark scarf, hair loosely tied back with soft natural strands around her face. Natural skin texture, realistic facial details, minimal makeup. Shallow depth of field with blurred landscape background, smooth bokeh, dramatic atmospheric mood, soft gradient sky transitioning from warm orange to cool green tones. Shot on 85mm lens, f/1.8, ultra-realistic, high dynamic range, cinematic composition, moody, film still aesthetic."
}
JSON
IM
图像
Photography nano-banana-2

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

{ "image_generation": { "subject": { "description": "stylish young woman sitting on an airplane wing high above the clouds", "pose": "seated casually on the airplane wing, one hand extended forward as if taking a selfie, relaxed but confident posture", "expression": "calm, confident, composed", "gaze": "looking toward the camera with a cool, self-assured expression" }, "appearance": { "hair": { "style": "long, natural, slightly flowing in the wind", "look": "casual and effortless" }, "accessories": [ "dark sunglasses", "minimal jewelry" ], "vibe": "adventurous, bold, modern" }, "outfit": { "style": "sporty casual", "details": "black hoodie, black fitted pants, clean white sneakers" }, "environment": { "setting": "high above the clouds on an airplane wing", "sky": "clear blue sky with soft clouds below", "atmosphere": "open, airy, dramatic aerial view" }, "lighting": { "type": "natural sunlight", "style": "bright and cinematic", "direction": "side lighting from the sun", "quality": "crisp highlights with soft shadows" }, "camera": { "angle": "wide selfie-style perspective from a slightly elevated angle", "lens": "ultra wide-angle", "depth_of_field": "deep focus capturing both subject and vast sky background", "composition": "dynamic, adventurous framing emphasizing height and openness" }, "aesthetic": { "style": "cinematic adventure photography", "vibe": "bold, fearless, modern, travel lifestyle", "color_grading": "clean cinematic tones with natural blues and soft contrast" }, "quality": { "realism": "photorealistic", "detail": "high detail", "resolution": "high resolution", "finish": "professional, crisp, ultra-realistic" } } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"image_generation\": { \"subject\": { \"description\": \"stylish young woman sitting on an airplane wing high above the clouds\", \"pose\": \"seated casually on the airplane wing, one hand extended forward as if taking a selfie, relaxed but confident posture\", \"expression\": \"calm, confident, composed\", \"gaze\": \"looking toward the camera with a cool, self-assured expression\" }, \"appearance\": { \"hair\": { \"style\": \"long, natural, slightly flowing in the wind\", \"look\": \"casual and effortless\" }, \"accessories\": [ \"dark sunglasses\", \"minimal jewelry\" ], \"vibe\": \"adventurous, bold, modern\" }, \"outfit\": { \"style\": \"sporty casual\", \"details\": \"black hoodie, black fitted pants, clean white sneakers\" }, \"environment\": { \"setting\": \"high above the clouds on an airplane wing\", \"sky\": \"clear blue sky with soft clouds below\", \"atmosphere\": \"open, airy, dramatic aerial view\" }, \"lighting\": { \"type\": \"natural sunlight\", \"style\": \"bright and cinematic\", \"direction\": \"side lighting from the sun\", \"quality\": \"crisp highlights with soft shadows\" }, \"camera\": { \"angle\": \"wide selfie-style perspective from a slightly elevated angle\", \"lens\": \"ultra wide-angle\", \"depth_of_field\": \"deep focus capturing both subject and vast sky background\", \"composition\": \"dynamic, adventurous framing emphasizing height and openness\" }, \"aesthetic\": { \"style\": \"cinematic adventure photography\", \"vibe\": \"bold, fearless, modern, travel lifestyle\", \"color_grading\": \"clean cinematic tones with natural blues and soft contrast\" }, \"quality\": { \"realism\": \"photorealistic\", \"detail\": \"high detail\", \"resolution\": \"high resolution\", \"finish\": \"professional, crisp, ultra-realistic\" } } }"
}
JSON
IM
图像
Photography nano-banana-2

[cake type], hyper realistic food photography, cake decorate...

[cake type], hyper realistic food photography, cake decorated to recreate the famous painting [painting name] using buttercream brushstrokes, thick textured piping, impasto frosting swirls, edible gold leaf highlights, color palette matched to the artwork, small painted fondant details, cake on an elegant plate, background set inspired by the same painting, studio lighting with soft shadows, shallow depth of field, ultra detailed, premium patisserie advertising, no text, no watermark, 8k, 1:1

查看 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": "[cake type], hyper realistic food photography, cake decorated to recreate the famous painting [painting name] using buttercream brushstrokes, thick textured piping, impasto frosting swirls, edible gold leaf highlights, color palette matched to the artwork, small painted fondant details, cake on an elegant plate, background set inspired by the same painting, studio lighting with soft shadows, shallow depth of field, ultra detailed, premium patisserie advertising, no text, no watermark, 8k, 1:1"
}
JSON
IM
图像
Photography nano-banana-2

A hyper-realistic surreal photograph of a modern smartphone...

A hyper-realistic surreal photograph of a modern smartphone lying flat on a wooden table, its screen acting as a portal between two worlds. From inside the phone screen, a smiling young man dressed in winter clothing—puffer jacket, knit beanie, gloves—extends his hands outward into the real world, holding a clear glass. From outside the phone, a real human hand pours a bright neon-green carbonated drink into the glass, with liquid splashes frozen mid-air as it crosses the boundary between the digital screen and reality. Snowflakes drift inside the phone screen while the real environment remains warm and minimal. Gemini Ultra-detailed textures, cinematic lighting, shallow depth of field, photorealistic surrealism, high-resolution editorial photography.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic surreal photograph of a modern smartphone lying flat on a wooden table, its screen acting as a portal between two worlds. From inside the phone screen, a smiling young man dressed in winter clothing—puffer jacket, knit beanie, gloves—extends his hands outward into the real world, holding a clear glass. From outside the phone, a real human hand pours a bright neon-green carbonated drink into the glass, with liquid splashes frozen mid-air as it crosses the boundary between the digital screen and reality. Snowflakes drift inside the phone screen while the real environment remains warm and minimal. Gemini Ultra-detailed textures, cinematic lighting, shallow depth of field, photorealistic surrealism, high-resolution editorial photography."
}
JSON
IM
图像
Photography nano-banana-2

{ "subject": { "hair": { "length": "long",...

{ "subject": { "hair": { "length": "long", "color": "dark", "style": "flowing, face-framing", "bangs": true, "accents": { "type": "braided", "color": "gold" } }, "eyes": { "color": "light blue", "expression": "serene", "gaze": "direct" }, "lips": { "color": "vibrant orange" } }, "attire": { "gown": { "style": "opulent historical-inspired", "main_color": "rich teal-blue", "collar": "high ruffled white", "sleeves": "voluminous white with gathered cuffs", "fabric": { "pattern": "Indonesian batik + Ukiyo-e wave motifs", "pattern_colors": ["gold", "subtle orange"], "detail": "intricate" } } }, "props": { "right_hand_mask": { "origin": "Indonesian Javanese wayang-inspired", "base_color": "white", "lips": "red", "expression": "happy", "decoration": "gold patterns" }, "left_arm_mask": { "origin": "Indonesian traditional", "base_color": "red", "expression": "angry", "decoration": "gold patterns", "feather_accent": "blue" } }, "pose": { "composition": "contrapposto", "orientation": "slightly facing left", "posture": "lying languidly", "framing": "centered" }, "shot": { "type": "top-down overhead medium shot", "focus": "centered on the woman" }, "background": { "foliage": { "color": "dark teal-green", "density": "dense" }, "flowers": [ { "type": "rose", "color": "cream" }, { "type": "rose", "color": "pale yellow" }, { "type": "rose", "color": "vibrant orange" } ] }, "lighting": { "type": "soft diffused", "highlights": "gentle", "shadows": "soft" }, "palette": ["teal", "orange", "cream", "white", "gold"], "style": { "mood": "rich and luxurious", "detail_level": "high", "textures": "ornate and rich", "cultural_respect": true }, "camera": { "angle": "overhead", "shot_size": "medium", "depth_of_field": "shallow", "crop": "centered" }, "output": { "format": "image-edit-prompt" } }

查看 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\": { \"hair\": { \"length\": \"long\", \"color\": \"dark\", \"style\": \"flowing, face-framing\", \"bangs\": true, \"accents\": { \"type\": \"braided\", \"color\": \"gold\" } }, \"eyes\": { \"color\": \"light blue\", \"expression\": \"serene\", \"gaze\": \"direct\" }, \"lips\": { \"color\": \"vibrant orange\" } }, \"attire\": { \"gown\": { \"style\": \"opulent historical-inspired\", \"main_color\": \"rich teal-blue\", \"collar\": \"high ruffled white\", \"sleeves\": \"voluminous white with gathered cuffs\", \"fabric\": { \"pattern\": \"Indonesian batik + Ukiyo-e wave motifs\", \"pattern_colors\": [\"gold\", \"subtle orange\"], \"detail\": \"intricate\" } } }, \"props\": { \"right_hand_mask\": { \"origin\": \"Indonesian Javanese wayang-inspired\", \"base_color\": \"white\", \"lips\": \"red\", \"expression\": \"happy\", \"decoration\": \"gold patterns\" }, \"left_arm_mask\": { \"origin\": \"Indonesian traditional\", \"base_color\": \"red\", \"expression\": \"angry\", \"decoration\": \"gold patterns\", \"feather_accent\": \"blue\" } }, \"pose\": { \"composition\": \"contrapposto\", \"orientation\": \"slightly facing left\", \"posture\": \"lying languidly\", \"framing\": \"centered\" }, \"shot\": { \"type\": \"top-down overhead medium shot\", \"focus\": \"centered on the woman\" }, \"background\": { \"foliage\": { \"color\": \"dark teal-green\", \"density\": \"dense\" }, \"flowers\": [ { \"type\": \"rose\", \"color\": \"cream\" }, { \"type\": \"rose\", \"color\": \"pale yellow\" }, { \"type\": \"rose\", \"color\": \"vibrant orange\" } ] }, \"lighting\": { \"type\": \"soft diffused\", \"highlights\": \"gentle\", \"shadows\": \"soft\" }, \"palette\": [\"teal\", \"orange\", \"cream\", \"white\", \"gold\"], \"style\": { \"mood\": \"rich and luxurious\", \"detail_level\": \"high\", \"textures\": \"ornate and rich\", \"cultural_respect\": true }, \"camera\": { \"angle\": \"overhead\", \"shot_size\": \"medium\", \"depth_of_field\": \"shallow\", \"crop\": \"centered\" }, \"output\": { \"format\": \"image-edit-prompt\" } }"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic portrait of a young man sitting at...

Ultra-realistic cinematic portrait of a young man sitting at a wooden desk in a cozy art studio, smiling warmly at the camera, with a tiny miniature version of himself standing on the table in front of him, perfectly detailed like a small figurine, surrounded by paint brushes, sketches, and art tools, warm ambient lighting from a desk lamp, shallow depth of field, soft bokeh background, creative storytelling composition, scale contrast illusion, hyper-detailed textures, 50mm lens, photorealistic, 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 portrait of a young man sitting at a wooden desk in a cozy art studio, smiling warmly at the camera, with a tiny miniature version of himself standing on the table in front of him, perfectly detailed like a small figurine, surrounded by paint brushes, sketches, and art tools, warm ambient lighting from a desk lamp, shallow depth of field, soft bokeh background, creative storytelling composition, scale contrast illusion, hyper-detailed textures, 50mm lens, photorealistic, 8K."
}
JSON
IM
图像
Photography nano-banana-2

{ "render_goal": "Ultra-cinematic, hyper-realistic rainy s...

{ "render_goal": "Ultra-cinematic, hyper-realistic rainy street portrait with shallow depth of field", "scene": { "location": "busy city street", "weather": "steady rain, wet reflective roads, soft mist in the air", "time": "overcast daytime", "atmosphere": "moody, cinematic, emotionally rich" }, "subject": { "identity": "girl identical to the reference", "action": "walking forward through a crowded street while holding an umbrella", "pose": "natural walking posture, relaxed shoulders", "expression": "calm, confident, slightly intense", "eye_direction": "looking directly at the camera from a distance", "outfit": { "style": "elegant, modern, attractive", "fit": "well-tailored, flattering silhouette", "fabric_behavior": "slightly affected by rain, realistic wet textures" } }, "composition": { "camera_distance": "medium to long shot", "framing": "subject centered with balanced negative space", "angle": "eye-level, cinematic street photography", "focus": "razor-sharp focus on the girl only", "depth_of_field": "extremely shallow" }, "background": { "crowd": "dense crowd walking in all directions", "motion": "crowd fully blurred with motion blur", "detail_level": "faces and bodies indistinguishable", "separation": "strong subject-background isolation" }, "lighting": { "type": "soft diffused natural light", "highlights": "subtle rain highlights and reflections", "color_tone": "cool cinematic color grading with slight contrast" }, "visual_style": { "look": "cinematic street photography", "realism": "ultra-realistic skin, fabric, and rain physics", "quality": "8K detail, high dynamic range", "post_processing": "film-like contrast, subtle grain, no oversharpening" }, "constraints": { "accuracy": "match reference pose, framing, mood, and focus precisely", "avoid": [ "cartoon look", "overexposed highlights", "extra subjects in focus", "stylized or fantasy elements" ] } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"render_goal\": \"Ultra-cinematic, hyper-realistic rainy street portrait with shallow depth of field\", \"scene\": { \"location\": \"busy city street\", \"weather\": \"steady rain, wet reflective roads, soft mist in the air\", \"time\": \"overcast daytime\", \"atmosphere\": \"moody, cinematic, emotionally rich\" }, \"subject\": { \"identity\": \"girl identical to the reference\", \"action\": \"walking forward through a crowded street while holding an umbrella\", \"pose\": \"natural walking posture, relaxed shoulders\", \"expression\": \"calm, confident, slightly intense\", \"eye_direction\": \"looking directly at the camera from a distance\", \"outfit\": { \"style\": \"elegant, modern, attractive\", \"fit\": \"well-tailored, flattering silhouette\", \"fabric_behavior\": \"slightly affected by rain, realistic wet textures\" } }, \"composition\": { \"camera_distance\": \"medium to long shot\", \"framing\": \"subject centered with balanced negative space\", \"angle\": \"eye-level, cinematic street photography\", \"focus\": \"razor-sharp focus on the girl only\", \"depth_of_field\": \"extremely shallow\" }, \"background\": { \"crowd\": \"dense crowd walking in all directions\", \"motion\": \"crowd fully blurred with motion blur\", \"detail_level\": \"faces and bodies indistinguishable\", \"separation\": \"strong subject-background isolation\" }, \"lighting\": { \"type\": \"soft diffused natural light\", \"highlights\": \"subtle rain highlights and reflections\", \"color_tone\": \"cool cinematic color grading with slight contrast\" }, \"visual_style\": { \"look\": \"cinematic street photography\", \"realism\": \"ultra-realistic skin, fabric, and rain physics\", \"quality\": \"8K detail, high dynamic range\", \"post_processing\": \"film-like contrast, subtle grain, no oversharpening\" }, \"constraints\": { \"accuracy\": \"match reference pose, framing, mood, and focus precisely\", \"avoid\": [ \"cartoon look\", \"overexposed highlights\", \"extra subjects in focus\", \"stylized or fantasy elements\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "High-resolution nighttime editorial portrait...

{ "prompt": "High-resolution nighttime editorial portrait shot with on-camera flash. A young woman standing outdoors at night under blooming cherry blossom trees, holding a transparent clear umbrella covered in raindrops. Her hair is wet and slightly wavy, framing her face naturally. She wears a brown leather jacket with a matching skirt, styled minimal and modern. One hand reaches slightly toward the camera, creating depth and intimacy. Strong flash lighting with a dark background, rain droplets frozen in motion, cinematic contrast, shallow depth of field, fashion editorial vibe, realistic skin tones, sharp focus. No text, no watermark.", "style": "fashion editorial, cinematic, modern", "camera": { "shot_type": "portrait", "lighting": "on-camera flash", "depth_of_field": "shallow" }, "lighting": { "type": "strong flash", "environment": "nighttime", "effect": ["high contrast", "frozen raindrops"] }, "environment": { "location": "outdoor nighttime setting", "elements": ["cherry blossom trees", "rain", "dark background"] }, "wardrobe": { "outfit": ["Silver leather jacket", "matching skirt"], "style": "minimal, modern" }, "mood": ["intimate", "cinematic", "editorial"], "quality": ["high-resolution", "sharp focus", "realistic skin tones"], "constraints": ["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": "{ \"prompt\": \"High-resolution nighttime editorial portrait shot with on-camera flash. A young woman standing outdoors at night under blooming cherry blossom trees, holding a transparent clear umbrella covered in raindrops. Her hair is wet and slightly wavy, framing her face naturally. She wears a brown leather jacket with a matching skirt, styled minimal and modern. One hand reaches slightly toward the camera, creating depth and intimacy. Strong flash lighting with a dark background, rain droplets frozen in motion, cinematic contrast, shallow depth of field, fashion editorial vibe, realistic skin tones, sharp focus. No text, no watermark.\", \"style\": \"fashion editorial, cinematic, modern\", \"camera\": { \"shot_type\": \"portrait\", \"lighting\": \"on-camera flash\", \"depth_of_field\": \"shallow\" }, \"lighting\": { \"type\": \"strong flash\", \"environment\": \"nighttime\", \"effect\": [\"high contrast\", \"frozen raindrops\"] }, \"environment\": { \"location\": \"outdoor nighttime setting\", \"elements\": [\"cherry blossom trees\", \"rain\", \"dark background\"] }, \"wardrobe\": { \"outfit\": [\"Silver leather jacket\", \"matching skirt\"], \"style\": \"minimal, modern\" }, \"mood\": [\"intimate\", \"cinematic\", \"editorial\"], \"quality\": [\"high-resolution\", \"sharp focus\", \"realistic skin tones\"], \"constraints\": [\"no text\", \"no watermark\"] }"
}
JSON
IM
图像
Photography nano-banana-2

A vertical triptych of three cinematic, night-time urban pho...

A vertical triptych of three cinematic, night-time urban photographs featuring a young man with messy, curly reddish-brown hair and thin, round wire-frame glasses. Top Panel: The man is seated in front of a 7-Eleven storefront. He wears a dark plaid flannel shirt over a black turtleneck. He is captured in a candid moment, holding a lit cigarette to his lips. To the left, there's a vibrant green neon sign. The lighting is dominated by a cool, fluorescent green glow and the warm interior light of the convenience store. Middle Panel: An extreme close-up profile shot. He is drinking from a gold-and-red metallic beverage can. His glasses catch a sharp, vivid reflection of the 7-Eleven logo and orange-red street lights. A subtle lens flare streaks horizontally across his face. The background is a soft, warm bokeh of city lights and traffic signals. Bottom Panel: The man stands on a pedestrian overpass overlooking a busy highway. He has his head tilted back, exhaling a thick wisp of white smoke into the night air. Below him, the blurred streaks of white headlights and red taillights create a sense of motion. The overpass structure is lit with cool-toned industrial lamps, contrasting with his warm skin tones. Style: 35mm film aesthetic, cinematic grain, shallow depth of field, high contrast, urban noir 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": "A vertical triptych of three cinematic, night-time urban photographs featuring a young man with messy, curly reddish-brown hair and thin, round wire-frame glasses. Top Panel: The man is seated in front of a 7-Eleven storefront. He wears a dark plaid flannel shirt over a black turtleneck. He is captured in a candid moment, holding a lit cigarette to his lips. To the left, there's a vibrant green neon sign. The lighting is dominated by a cool, fluorescent green glow and the warm interior light of the convenience store. Middle Panel: An extreme close-up profile shot. He is drinking from a gold-and-red metallic beverage can. His glasses catch a sharp, vivid reflection of the 7-Eleven logo and orange-red street lights. A subtle lens flare streaks horizontally across his face. The background is a soft, warm bokeh of city lights and traffic signals. Bottom Panel: The man stands on a pedestrian overpass overlooking a busy highway. He has his head tilted back, exhaling a thick wisp of white smoke into the night air. Below him, the blurred streaks of white headlights and red taillights create a sense of motion. The overpass structure is lit with cool-toned industrial lamps, contrasting with his warm skin tones. Style: 35mm film aesthetic, cinematic grain, shallow depth of field, high contrast, urban noir mood."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic portrait of a young East Asian wom...

Ultra-realistic cinematic portrait of a young East Asian woman standing alone in a vast wildflower meadow. She is centered in the frame, facing the camera directly with a calm, introspective expression. She wears a traditional Korean hanbok in muted charcoal gray and soft blue tones, with natural fabric texture and subtle folds. Her dark hair is loosely tied back with a few strands gently blown across her face by the wind. She holds a small hand-picked bouquet of wildflowers—white daisies, blue cornflowers, and dry grass stems—clasped softly in both hands at waist level. The meadow is filled with colorful wildflowers (reds, whites, blues, purples) stretching into the distance. In the background, a large mist-covered mountain rises softly out of focus, partially obscured by low clouds and fog, creating a moody, atmospheric depth. Overcast sky with soft diffused natural light, cool color palette, muted contrast, cinematic realism. Shallow depth of field, sharp focus on subject, creamy background bokeh. Natural skin texture, realistic facial details, no makeup look. Fine art photography style, emotional, poetic, timeless. Shot on a full-frame camera, 85mm lens, f/1.8, ultra-high resolution, photorealistic, 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": "Ultra-realistic cinematic portrait of a young East Asian woman standing alone in a vast wildflower meadow. She is centered in the frame, facing the camera directly with a calm, introspective expression. She wears a traditional Korean hanbok in muted charcoal gray and soft blue tones, with natural fabric texture and subtle folds. Her dark hair is loosely tied back with a few strands gently blown across her face by the wind. She holds a small hand-picked bouquet of wildflowers—white daisies, blue cornflowers, and dry grass stems—clasped softly in both hands at waist level. The meadow is filled with colorful wildflowers (reds, whites, blues, purples) stretching into the distance. In the background, a large mist-covered mountain rises softly out of focus, partially obscured by low clouds and fog, creating a moody, atmospheric depth. Overcast sky with soft diffused natural light, cool color palette, muted contrast, cinematic realism. Shallow depth of field, sharp focus on subject, creamy background bokeh. Natural skin texture, realistic facial details, no makeup look. Fine art photography style, emotional, poetic, timeless. Shot on a full-frame camera, 85mm lens, f/1.8, ultra-high resolution, photorealistic, no text, no watermark."
}
JSON
IM
图像
Photography nano-banana-2

A hyper-realistic, surreal composite shot utilizing forced p...

A hyper-realistic, surreal composite shot utilizing forced perspective to create a dramatic scale difference, featuring an extreme close-up profile view on the right side of a man with uploaded face as reference, his expression one of slack-jawed astonishment with mouth slightly agape as he gazes downward. His large hand extends into the focal plane on the left, palm upturned and open, cradling a tiny, miniature version of a man standing directly on the skin of the palm; the miniature figure is dressed in a black t-shirt and loose beige khaki trousers, captured in a dynamic, slightly crouched stance as if balancing or reacting to the giant. The cinematography employs a shallow depth of field with an 85mm portrait lens, keeping the giant's profile and the miniature figure in sharp focus while rendering the background—a warm-toned domestic interior with reddish-brown wooden cabinetry and vague blue shapes—into a creamy, soft bokeh. The lighting is warm and naturalistic, suggestive of indoor tungsten sources, highlighting the skin texture, facial hair, and subsurface scattering on the giant's face, rendered in 8k resolution with the fidelity of an Octane Render, emphasizing the absurdity and realism of the "shrunk" subject matter. Man should be fully visible

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic, surreal composite shot utilizing forced perspective to create a dramatic scale difference, featuring an extreme close-up profile view on the right side of a man with uploaded face as reference, his expression one of slack-jawed astonishment with mouth slightly agape as he gazes downward. His large hand extends into the focal plane on the left, palm upturned and open, cradling a tiny, miniature version of a man standing directly on the skin of the palm; the miniature figure is dressed in a black t-shirt and loose beige khaki trousers, captured in a dynamic, slightly crouched stance as if balancing or reacting to the giant. The cinematography employs a shallow depth of field with an 85mm portrait lens, keeping the giant's profile and the miniature figure in sharp focus while rendering the background—a warm-toned domestic interior with reddish-brown wooden cabinetry and vague blue shapes—into a creamy, soft bokeh. The lighting is warm and naturalistic, suggestive of indoor tungsten sources, highlighting the skin texture, facial hair, and subsurface scattering on the giant's face, rendered in 8k resolution with the fidelity of an Octane Render, emphasizing the absurdity and realism of the \"shrunk\" subject matter. Man should be fully visible"
}
JSON
IM
图像
Photography nano-banana-2

Ultra realistic cinematic portrait of a young man with sharp...

Ultra realistic cinematic portrait of a young man with sharp masculine features and light stubble, snow dusted hair slightly longer and pushed back, calm but intense eyes looking slightly away from the camera, wearing a charcoal hooded winter jacket layered over a black turtleneck, standing in a deserted snowy street at night, heavy snowfall swirling around him, snowflakes catching light mid air, cold breath visible, dim ambient street lighting with a single overhead lamp casting soft shadows, background filled with snow covered buildings and faint fog, low key lighting with cool blue tones, subtle rim light separating the subject from the background, medium close up framing, 50mm lens look, shallow depth of field, cinematic contrast, realistic skin texture, film grain, moody atmosphere, loneliness, quiet strength, winter noir aesthetic, professional photography realism.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra realistic cinematic portrait of a young man with sharp masculine features and light stubble, snow dusted hair slightly longer and pushed back, calm but intense eyes looking slightly away from the camera, wearing a charcoal hooded winter jacket layered over a black turtleneck, standing in a deserted snowy street at night, heavy snowfall swirling around him, snowflakes catching light mid air, cold breath visible, dim ambient street lighting with a single overhead lamp casting soft shadows, background filled with snow covered buildings and faint fog, low key lighting with cool blue tones, subtle rim light separating the subject from the background, medium close up framing, 50mm lens look, shallow depth of field, cinematic contrast, realistic skin texture, film grain, moody atmosphere, loneliness, quiet strength, winter noir aesthetic, professional photography realism."
}
JSON
IM
图像
Photography nano-banana-2

{ "options": { "gender": ["man", "woman"] }, "prom...

{ "options": { "gender": ["man", "woman"] }, "prompt": "A high-fashion editorial shot of a [GENDER] model sitting or standing on a flying magic carpet during takeoff. The model is wearing a sophisticated, layered outfit featuring the structured silhouettes and premium textures typical of luxury brands like Celine, Balenciaga, Ralph Lauren, Givenchy, and Zegna. The clothes billow elegantly in the wind. The carpet is ornate and detailed, kicking up a subtle dust cloud as it ascends from a sun-drenched, minimalist architectural terrace. The lighting is cinematic and warm, highlighting the motion and the luxurious fabrics. Low angle perspective focusing entirely on the subject and the scene." }

查看 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": "{ \"options\": { \"gender\": [\"man\", \"woman\"] }, \"prompt\": \"A high-fashion editorial shot of a [GENDER] model sitting or standing on a flying magic carpet during takeoff. The model is wearing a sophisticated, layered outfit featuring the structured silhouettes and premium textures typical of luxury brands like Celine, Balenciaga, Ralph Lauren, Givenchy, and Zegna. The clothes billow elegantly in the wind. The carpet is ornate and detailed, kicking up a subtle dust cloud as it ascends from a sun-drenched, minimalist architectural terrace. The lighting is cinematic and warm, highlighting the motion and the luxurious fabrics. Low angle perspective focusing entirely on the subject and the scene.\" }"
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。