模型 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 high-realism, professional editorial photograph inside an...

A high-realism, professional editorial photograph inside an Orthodox church. A young woman with natural facial proportions and a calm, focused expression is kneeling on the stone floor, seated back on her heels. She wears an elegant white long-sleeve dress with a high neckline and a fabric belt tied at the waist; the fabric shows realistic folds, weight, and subtle texture. Her head is modestly covered with a traditional white headscarf (kosynka), softly draped and slightly translucent at the edges. She is positioned in right side profile, holding a thin paintbrush in her right hand, carefully applying paint to a large Orthodox icon placed on a wooden easel in front of her. The brush gently touches the icon's surface, emphasizing a moment of concentration and reverence. The icon depicts an elderly Orthodox saint with a long grey beard, dressed in traditional liturgical garments, with a softly glowing golden halo. Cyrillic inscriptions are visible on the icon, including "IC XC" and other Church Slavonic lettering. The saint holds a small icon in his hands. The painted surface shows realistic craquelure, brush strokes, gold leaf imperfections, and aged varnish. Background: a richly decorated iconostasis filled with golden icons set in arched frames, carved wooden details, burning candles and hanging oil lamps. On the right side, a tall arched stained-glass window casts soft multicolored light onto the floor, creating subtle rainbow reflections. On the left, part of the altar is visible with a cross and additional icons. Lighting is warm, layered, and atmospheric — golden ambient candlelight combined with soft natural light from the window, creating gentle shadows and depth. Skin appears fully natural with visible pores, subtle tonal variations, and no artificial smoothing. Makeup is refined and realistic, enhancing the eyes and lips without exaggeration. Camera perspective: 50–85mm lens look, shallow depth of field, sharp focus on the woman's face, hand, and brush, with the background softly blurred. High optical clarity, true-to-life color balance, realistic exposure. The composition emphasizes the contrast between the matte white fabric of the dress and the luminous gold tones of the iconostasis. Ultra-realistic, photographic, human, non-stylized.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A high-realism, professional editorial photograph inside an Orthodox church. A young woman with natural facial proportions and a calm, focused expression is kneeling on the stone floor, seated back on her heels. She wears an elegant white long-sleeve dress with a high neckline and a fabric belt tied at the waist; the fabric shows realistic folds, weight, and subtle texture. Her head is modestly covered with a traditional white headscarf (kosynka), softly draped and slightly translucent at the edges. She is positioned in right side profile, holding a thin paintbrush in her right hand, carefully applying paint to a large Orthodox icon placed on a wooden easel in front of her. The brush gently touches the icon's surface, emphasizing a moment of concentration and reverence. The icon depicts an elderly Orthodox saint with a long grey beard, dressed in traditional liturgical garments, with a softly glowing golden halo. Cyrillic inscriptions are visible on the icon, including \"IC XC\" and other Church Slavonic lettering. The saint holds a small icon in his hands. The painted surface shows realistic craquelure, brush strokes, gold leaf imperfections, and aged varnish. Background: a richly decorated iconostasis filled with golden icons set in arched frames, carved wooden details, burning candles and hanging oil lamps. On the right side, a tall arched stained-glass window casts soft multicolored light onto the floor, creating subtle rainbow reflections. On the left, part of the altar is visible with a cross and additional icons. Lighting is warm, layered, and atmospheric — golden ambient candlelight combined with soft natural light from the window, creating gentle shadows and depth. Skin appears fully natural with visible pores, subtle tonal variations, and no artificial smoothing. Makeup is refined and realistic, enhancing the eyes and lips without exaggeration. Camera perspective: 50–85mm lens look, shallow depth of field, sharp focus on the woman's face, hand, and brush, with the background softly blurred. High optical clarity, true-to-life color balance, realistic exposure. The composition emphasizes the contrast between the matte white fabric of the dress and the luminous gold tones of the iconostasis. Ultra-realistic, photographic, human, non-stylized."
}
JSON
IM
图像
Photography nano-banana-2

{ "image_generation": { "reference": {"use_uploaded_ph...

{ "image_generation": { "reference": {"use_uploaded_photo": true, "role": "main subject", "identity_preservation": true}, "scene": { "location": "rural countryside", "background": ["tall dry grass fields", "distant metal powerline tower"], "time": "golden hour", "atmosphere": "calm, nostalgic road trip mood" }, "subject": { "pose": "casually leaning against a vintage car, one arm resting on the open door frame", "expression": "thoughtful, relaxed, looking off to the side", "hair": "gently moved by the wind", "style": "natural, candid portrait" }, "outfit": { "top": "retro striped sweater in warm earthy tones", "bottom": "high waisted beige trousers" }, "lighting": {"type": "soft sunset light", "highlights": "warm", "shadows": "cool", "contrast": "soft"}, "camera": { "lens": "35mm analog look", "depth_of_field": "shallow", "focus": "sharp on subject, smooth background falloff", "composition": "editorial fashion portrait" }, "color_grading": {"style": "muted vintage tones", "saturation": "slightly reduced", "film_grain": "subtle"}, "quality": {"realism": "high", "texture": "natural skin and fabric detail", "render": "cinematic, editorial, 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\": { \"reference\": {\"use_uploaded_photo\": true, \"role\": \"main subject\", \"identity_preservation\": true}, \"scene\": { \"location\": \"rural countryside\", \"background\": [\"tall dry grass fields\", \"distant metal powerline tower\"], \"time\": \"golden hour\", \"atmosphere\": \"calm, nostalgic road trip mood\" }, \"subject\": { \"pose\": \"casually leaning against a vintage car, one arm resting on the open door frame\", \"expression\": \"thoughtful, relaxed, looking off to the side\", \"hair\": \"gently moved by the wind\", \"style\": \"natural, candid portrait\" }, \"outfit\": { \"top\": \"retro striped sweater in warm earthy tones\", \"bottom\": \"high waisted beige trousers\" }, \"lighting\": {\"type\": \"soft sunset light\", \"highlights\": \"warm\", \"shadows\": \"cool\", \"contrast\": \"soft\"}, \"camera\": { \"lens\": \"35mm analog look\", \"depth_of_field\": \"shallow\", \"focus\": \"sharp on subject, smooth background falloff\", \"composition\": \"editorial fashion portrait\" }, \"color_grading\": {\"style\": \"muted vintage tones\", \"saturation\": \"slightly reduced\", \"film_grain\": \"subtle\"}, \"quality\": {\"realism\": \"high\", \"texture\": \"natural skin and fabric detail\", \"render\": \"cinematic, editorial, realistic\"} } }"
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "A hyper-realistic, ultra-detailed 8K cinemati...

{ "prompt": "A hyper-realistic, ultra-detailed 8K cinematic photograph captured from a high-angle perspective using a wide-angle lens, looking directly downward into a dense, almost circular crowd, creating a strong sense of enclosure and spotlight focus.\n\nAt the center stands a confident man wearing a dark tailored suit with a dark collared shirt and round sunglasses. Use the uploaded face strictly as reference to preserve the exact identity and facial features. His right hand is raised toward the camera with the palm facing outward in a clear 'stop' or 'talk to the hand' gesture, conveying authority and control.\n\nHe is completely surrounded by a tightly packed crowd of smiling women, forming a near-perfect circle around him. The women are dressed in dark, elegant, or subtly shimmering evening attire. Their faces and shoulders densely fill the mid-ground, many looking toward the central man or directly at the camera, enhancing the sense of attention and chaos.\n\nIn the immediate foreground at the bottom of the frame, multiple photographers are visible holding professional DSLR cameras equipped with large external flash units. The flashes are actively firing, producing intense, direct frontal lighting on the central figures.\n\nLighting and mood: Dramatic, high-contrast paparazzi-style lighting with blown-out highlights on faces and clothing, sharp rim lighting on some figures, and deep, near-black shadows in the background. The lighting emphasizes a glamorous yet chaotic paparazzi frenzy.\n\nVisual quality: Extremely sharp focus on the main subjects, hyper-detailed textures on skin, fabric, sunglasses, and camera equipment. Cinematic color grading, realistic skin tones, shallow depth of field where appropriate, premium editorial photography aesthetic.", "negative_prompt": "low resolution, blur, soft focus, cartoon, illustration, CGI, distorted anatomy, extra limbs, extra fingers, washed-out colors, flat lighting, studio setup, empty background, watermark, logo, text", "aspect_ratio": "2:3", "style": "hyper-realistic cinematic", "lighting": "high-contrast paparazzi flash lighting", "camera": "DSLR, wide-angle lens, high-angle shot", "resolution": "8K", "quality": "ultra high" }

查看 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\": \"A hyper-realistic, ultra-detailed 8K cinematic photograph captured from a high-angle perspective using a wide-angle lens, looking directly downward into a dense, almost circular crowd, creating a strong sense of enclosure and spotlight focus.\\n\\nAt the center stands a confident man wearing a dark tailored suit with a dark collared shirt and round sunglasses. Use the uploaded face strictly as reference to preserve the exact identity and facial features. His right hand is raised toward the camera with the palm facing outward in a clear 'stop' or 'talk to the hand' gesture, conveying authority and control.\\n\\nHe is completely surrounded by a tightly packed crowd of smiling women, forming a near-perfect circle around him. The women are dressed in dark, elegant, or subtly shimmering evening attire. Their faces and shoulders densely fill the mid-ground, many looking toward the central man or directly at the camera, enhancing the sense of attention and chaos.\\n\\nIn the immediate foreground at the bottom of the frame, multiple photographers are visible holding professional DSLR cameras equipped with large external flash units. The flashes are actively firing, producing intense, direct frontal lighting on the central figures.\\n\\nLighting and mood: Dramatic, high-contrast paparazzi-style lighting with blown-out highlights on faces and clothing, sharp rim lighting on some figures, and deep, near-black shadows in the background. The lighting emphasizes a glamorous yet chaotic paparazzi frenzy.\\n\\nVisual quality: Extremely sharp focus on the main subjects, hyper-detailed textures on skin, fabric, sunglasses, and camera equipment. Cinematic color grading, realistic skin tones, shallow depth of field where appropriate, premium editorial photography aesthetic.\", \"negative_prompt\": \"low resolution, blur, soft focus, cartoon, illustration, CGI, distorted anatomy, extra limbs, extra fingers, washed-out colors, flat lighting, studio setup, empty background, watermark, logo, text\", \"aspect_ratio\": \"2:3\", \"style\": \"hyper-realistic cinematic\", \"lighting\": \"high-contrast paparazzi flash lighting\", \"camera\": \"DSLR, wide-angle lens, high-angle shot\", \"resolution\": \"8K\", \"quality\": \"ultra high\" }"
}
JSON
IM
图像
Photography nano-banana-2

High-contrast black and white photo taken with a 1990s dispo...

High-contrast black and white photo taken with a 1990s disposable camera at a dark house party. A handsome young man with dark, curly hair and a sharp jawline is staring directly into the lens. Focus on the eyes: intense, light-colored irises with a piercing, predatory gaze, slightly heavy-lidded (siren eyes), reflecting the harsh camera flash. He is wearing a black button-down shirt. The image is grainy, lo-fi, with a "dark academia" bad boy aesthetic. (use my face from the uploaded selfie)

查看 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": "High-contrast black and white photo taken with a 1990s disposable camera at a dark house party. A handsome young man with dark, curly hair and a sharp jawline is staring directly into the lens. Focus on the eyes: intense, light-colored irises with a piercing, predatory gaze, slightly heavy-lidded (siren eyes), reflecting the harsh camera flash. He is wearing a black button-down shirt. The image is grainy, lo-fi, with a \"dark academia\" bad boy aesthetic. (use my face from the uploaded selfie)"
}
JSON
IM
图像
Photography nano-banana-2

A full shot captures a young man in profile, leaning against...

A full shot captures a young man in profile, leaning against a textured turquoise wall inside a brightly lit tunnel. He is dressed in a sleek black leather jacket and black pants. His short, dark hair is casually styled, framing a contemplative expression as he gazes forward. Wisps of smoke curl subtly above his head. The background features a series of evenly spaced rectangular lights along the tunnel's ceiling, creating a strong sense of depth and leading the eye. The overall lighting casts a cool, ethereal glow on the scene, with the vibrant turquoise of the walls contrasting with the stark brightness of the lights. The image conveys a mood of quiet introspection and urban coolness.

查看 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 full shot captures a young man in profile, leaning against a textured turquoise wall inside a brightly lit tunnel. He is dressed in a sleek black leather jacket and black pants. His short, dark hair is casually styled, framing a contemplative expression as he gazes forward. Wisps of smoke curl subtly above his head. The background features a series of evenly spaced rectangular lights along the tunnel's ceiling, creating a strong sense of depth and leading the eye. The overall lighting casts a cool, ethereal glow on the scene, with the vibrant turquoise of the walls contrasting with the stark brightness of the lights. The image conveys a mood of quiet introspection and urban coolness."
}
JSON
IM
图像
Photography nano-banana-2

USE UPLOADED PHOTO AS REFERENCE. HOGWARTS-STYLE PHOTOSHOOT....

USE UPLOADED PHOTO AS REFERENCE. HOGWARTS-STYLE PHOTOSHOOT. THE GIRL IS POSING, IN A BLACK ROBE, THE UNDERSIDE OF THE ROBE IS RED, A WHITE COLLAR AND A TIED TIE OF GRYFFINDOR COLOR ARE VISIBLE. HER HAIR IS LOOSE, A DILAPIDATED, OLD BOOK IS PRESSED TO HER BODY IN HER HANDS. HE HOLDS A MAGIC WAND IN ONE HAND. A WHITE OWL SITS ON THE SHOULDER, THE BACKGROUND IS AN OLD STONE WALL, THE BACKGROUND IS SLAY. THEMATIC PHOTO SESSION. DETAILING, HIGH QUALITY. PORTRAIT.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "USE UPLOADED PHOTO AS REFERENCE. HOGWARTS-STYLE PHOTOSHOOT. THE GIRL IS POSING, IN A BLACK ROBE, THE UNDERSIDE OF THE ROBE IS RED, A WHITE COLLAR AND A TIED TIE OF GRYFFINDOR COLOR ARE VISIBLE. HER HAIR IS LOOSE, A DILAPIDATED, OLD BOOK IS PRESSED TO HER BODY IN HER HANDS. HE HOLDS A MAGIC WAND IN ONE HAND. A WHITE OWL SITS ON THE SHOULDER, THE BACKGROUND IS AN OLD STONE WALL, THE BACKGROUND IS SLAY. THEMATIC PHOTO SESSION. DETAILING, HIGH QUALITY. PORTRAIT."
}
JSON
IM
图像
Photography nano-banana-2

A high-detail, cinematic shot of an astronaut floating in ou...

A high-detail, cinematic shot of an astronaut floating in outer space with the Earth's blue curvature and atmosphere in the background. The astronaut is wearing a realistic, weathered white space suit. They are holding a metallic thermos from which dark coffee or amber liquid is spilling out, forming perfect spherical droplets and a beautiful splash due to zero gravity. The lighting is dramatic, with a strong glow from the sun reflecting off the helmet's visor and the liquid droplets. 8k resolution, hyper-realistic, photorealistic, cosmic atmosphere.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A high-detail, cinematic shot of an astronaut floating in outer space with the Earth's blue curvature and atmosphere in the background. The astronaut is wearing a realistic, weathered white space suit. They are holding a metallic thermos from which dark coffee or amber liquid is spilling out, forming perfect spherical droplets and a beautiful splash due to zero gravity. The lighting is dramatic, with a strong glow from the sun reflecting off the helmet's visor and the liquid droplets. 8k resolution, hyper-realistic, photorealistic, cosmic atmosphere."
}
JSON
IM
图像
Photography nano-banana-2

A high-fashion black and white editorial campaign image with...

A high-fashion black and white editorial campaign image with a 3:4 aspect ratio, split into two vertical sections. Strong contrast, rich tonal depth, cinematic grain. RIGHT SIDE: A man captured mid-step in a Parisian street café scene. Architecture dissolves into soft gradients and shadow. Light sculpts the face and garments rather than illuminating the scene. He wears a tweed tailored jacket and matching trousers, the fabric rendered through contrast and texture rather than color. The tweed weave is emphasized through light and shadow. Black leather Chelsea boots blend into the tonal range. A structured leather bag appears as a bold silhouette. Expression is introspective, distant. Movement feels frozen, deliberate. STYLE & MOOD: Timeless, cinematic, intellectual, masculine restraint, European fashion cinema. LEFT SIDE: A monochrome product composition on a light-to-dark gradient background. Items float slightly, defined by shadow and form. Minimal typographic price indicators. OVERALL FEEL: Classic fashion cinema, archival quality, serious tone. NEGATIVE PROMPT: Color accents, glossy lighting, modern street aesthetics, commercial catalog 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": "A high-fashion black and white editorial campaign image with a 3:4 aspect ratio, split into two vertical sections. Strong contrast, rich tonal depth, cinematic grain. RIGHT SIDE: A man captured mid-step in a Parisian street café scene. Architecture dissolves into soft gradients and shadow. Light sculpts the face and garments rather than illuminating the scene. He wears a tweed tailored jacket and matching trousers, the fabric rendered through contrast and texture rather than color. The tweed weave is emphasized through light and shadow. Black leather Chelsea boots blend into the tonal range. A structured leather bag appears as a bold silhouette. Expression is introspective, distant. Movement feels frozen, deliberate. STYLE & MOOD: Timeless, cinematic, intellectual, masculine restraint, European fashion cinema. LEFT SIDE: A monochrome product composition on a light-to-dark gradient background. Items float slightly, defined by shadow and form. Minimal typographic price indicators. OVERALL FEEL: Classic fashion cinema, archival quality, serious tone. NEGATIVE PROMPT: Color accents, glossy lighting, modern street aesthetics, commercial catalog look."
}
JSON
IM
图像
Photography nano-banana-2

{ "scene_overview": { "description": "A monochrome, contempl...

{ "scene_overview": { "description": "A monochrome, contemplative portrait of a man lying on grass, resting his head on his forearm while gazing intently at a chessboard in the foreground.", "mood": "Introspective, calm, slightly melancholic, strategic contemplation", "style": "Fine art documentary portrait" }, "composition": { "camera_angle": "Low, ground-level perspective aligned with the chessboard", "framing": "Horizontal close-to-medium shot with strong foreground emphasis", "rule_of_thirds": "Subject’s eye positioned near the upper-left third; chess pieces dominate the lower foreground", "depth": "Shallow depth of field; foreground chess pieces partially blurred, subject’s face in sharp focus", "leading_elements": "Chessboard grid lines and aligned chess pieces lead the eye toward the subject’s face", "balance": "Asymmetrical balance between the heavy foreground objects and the subject’s head and arm" }, "subjects": { "primary_subject": { "type": "Adult male", "pose": "Lying on side with head resting on forearm", "expression": "Focused, thoughtful, slightly fatigued", "gaze": "Directed toward chessboard and pieces", "facial_hair": "Short, well-groomed beard", "hair": "Short, textured, slightly tousled", "clothing": "Light-colored, long-sleeve button-up shirt with visible fabric creases" }, "secondary_subjects": { "objects": [ { "type": "Chessboard", "material": "Wood", "pattern": "Classic checkered grid", "position": "Foreground, partially out of focus" }, { "type": "Chess pieces", "material": "Wood", "variety": "Mixed pawns and major pieces", "arrangement": "Mid-game configuration, scattered with strategic spacing" } ] } }, "environment": { "setting": "Outdoor grassy area", "ground_texture": "Short grass with visible blades and uneven natural texture", "background": "Minimal and softly blurred, no discernible structures or distractions" }, "lighting": { "type": "Natural light", "direction": "Soft side lighting from above-left", "contrast": "Moderate contrast with gentle highlights and smooth shadow falloff", "highlights": "Subtle highlights on forehead, cheekbone, and knuckles", "shadows": "Soft shadows under the arm, chin, and chess pieces" }, "color_and_tone": { "color_mode": "Black and white", "tonal_range": "Wide grayscale range from deep blacks to bright whites", "dominant_tones": "Mid-grays and soft highlights", "texture_emphasis": "Enhanced skin texture, fabric fibers, wood grain, and grass" }, "technical_characteristics": { "lens_look": "Portrait lens feel, likely medium focal length", "aperture_effect": "Wide aperture producing shallow depth of field", "sharpness": "High sharpness on subject’s eye and facial features", "grain": "Fine, subtle film-like grain", "dynamic_range": "Well-preserved highlights and shadow details" }, "artistic_elements": { "theme": "Strategy, contemplation, mental focus", "symbolism": "Chessboard as a metaphor for life decisions and planning", "emotional_tone": "Quiet, reflective, intellectually engaged", "timelessness": "Classic monochrome treatment removes temporal context" }, "typography": { "presence": "None", "text_elements": "No visible text or lettering" }, "overall_aesthetic": { "genre": "Fine art portrait photography", "influences": "Humanist photography, editorial portraiture", "use_case": "Art print, editorial feature, conceptual storytelling, AI style reference" } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"scene_overview\": { \"description\": \"A monochrome, contemplative portrait of a man lying on grass, resting his head on his forearm while gazing intently at a chessboard in the foreground.\", \"mood\": \"Introspective, calm, slightly melancholic, strategic contemplation\", \"style\": \"Fine art documentary portrait\" }, \"composition\": { \"camera_angle\": \"Low, ground-level perspective aligned with the chessboard\", \"framing\": \"Horizontal close-to-medium shot with strong foreground emphasis\", \"rule_of_thirds\": \"Subject’s eye positioned near the upper-left third; chess pieces dominate the lower foreground\", \"depth\": \"Shallow depth of field; foreground chess pieces partially blurred, subject’s face in sharp focus\", \"leading_elements\": \"Chessboard grid lines and aligned chess pieces lead the eye toward the subject’s face\", \"balance\": \"Asymmetrical balance between the heavy foreground objects and the subject’s head and arm\" }, \"subjects\": { \"primary_subject\": { \"type\": \"Adult male\", \"pose\": \"Lying on side with head resting on forearm\", \"expression\": \"Focused, thoughtful, slightly fatigued\", \"gaze\": \"Directed toward chessboard and pieces\", \"facial_hair\": \"Short, well-groomed beard\", \"hair\": \"Short, textured, slightly tousled\", \"clothing\": \"Light-colored, long-sleeve button-up shirt with visible fabric creases\" }, \"secondary_subjects\": { \"objects\": [ { \"type\": \"Chessboard\", \"material\": \"Wood\", \"pattern\": \"Classic checkered grid\", \"position\": \"Foreground, partially out of focus\" }, { \"type\": \"Chess pieces\", \"material\": \"Wood\", \"variety\": \"Mixed pawns and major pieces\", \"arrangement\": \"Mid-game configuration, scattered with strategic spacing\" } ] } }, \"environment\": { \"setting\": \"Outdoor grassy area\", \"ground_texture\": \"Short grass with visible blades and uneven natural texture\", \"background\": \"Minimal and softly blurred, no discernible structures or distractions\" }, \"lighting\": { \"type\": \"Natural light\", \"direction\": \"Soft side lighting from above-left\", \"contrast\": \"Moderate contrast with gentle highlights and smooth shadow falloff\", \"highlights\": \"Subtle highlights on forehead, cheekbone, and knuckles\", \"shadows\": \"Soft shadows under the arm, chin, and chess pieces\" }, \"color_and_tone\": { \"color_mode\": \"Black and white\", \"tonal_range\": \"Wide grayscale range from deep blacks to bright whites\", \"dominant_tones\": \"Mid-grays and soft highlights\", \"texture_emphasis\": \"Enhanced skin texture, fabric fibers, wood grain, and grass\" }, \"technical_characteristics\": { \"lens_look\": \"Portrait lens feel, likely medium focal length\", \"aperture_effect\": \"Wide aperture producing shallow depth of field\", \"sharpness\": \"High sharpness on subject’s eye and facial features\", \"grain\": \"Fine, subtle film-like grain\", \"dynamic_range\": \"Well-preserved highlights and shadow details\" }, \"artistic_elements\": { \"theme\": \"Strategy, contemplation, mental focus\", \"symbolism\": \"Chessboard as a metaphor for life decisions and planning\", \"emotional_tone\": \"Quiet, reflective, intellectually engaged\", \"timelessness\": \"Classic monochrome treatment removes temporal context\" }, \"typography\": { \"presence\": \"None\", \"text_elements\": \"No visible text or lettering\" }, \"overall_aesthetic\": { \"genre\": \"Fine art portrait photography\", \"influences\": \"Humanist photography, editorial portraiture\", \"use_case\": \"Art print, editorial feature, conceptual storytelling, AI style reference\" } }"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic, nostalgic portrait of a young hijab woman (use...

A cinematic, nostalgic portrait of a young hijab woman (use the reference photo) sitting cross-legged on the floor of a retro school hallway, bathed in warm, golden-hour sunlight. She has a soft, contemplative expression, gazing dreamily off-camera to the right. She wears a pink chiffon hijab adorned with colorful star-shaped hair clips on the left side.Her outfit is Y2K-inspired: a white long shirt layered under a white spaghetti-strap camisole with a delicate vintagefloral print, layered pearl necklaces, high-waisted light-wash denim jeans cuffed at the ankles, vibrant hot-pink ribbed socks, and chunky white sneakers. She holds a vintage silver cassette player in both hands and wears large, retro orange foam headphones. A woven paisley-patterned backpack sits next to her.The background features a row of vibrant hot-pink metal lockers covered in retro magazine cutouts and band posters. Strong, diagonal shadows from a nearby window cast a dramatic, warm glow across the lockers and her face. Dreamy coming-of-age movie aesthetic, high-resolution textures, soft depth of field, 35mm film grain style --ar 9:16 --style raw

查看 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, nostalgic portrait of a young hijab woman (use the reference photo) sitting cross-legged on the floor of a retro school hallway, bathed in warm, golden-hour sunlight. She has a soft, contemplative expression, gazing dreamily off-camera to the right. She wears a pink chiffon hijab adorned with colorful star-shaped hair clips on the left side.Her outfit is Y2K-inspired: a white long shirt layered under a white spaghetti-strap camisole with a delicate vintagefloral print, layered pearl necklaces, high-waisted light-wash denim jeans cuffed at the ankles, vibrant hot-pink ribbed socks, and chunky white sneakers. She holds a vintage silver cassette player in both hands and wears large, retro orange foam headphones. A woven paisley-patterned backpack sits next to her.The background features a row of vibrant hot-pink metal lockers covered in retro magazine cutouts and band posters. Strong, diagonal shadows from a nearby window cast a dramatic, warm glow across the lockers and her face. Dreamy coming-of-age movie aesthetic, high-resolution textures, soft depth of field, 35mm film grain style --ar 9:16 --style raw"
}
JSON
IM
图像
Photography nano-banana-2

A moody cinematic mirror selfie of a stylish young man use i...

A moody cinematic mirror selfie of a stylish young man use image for face reference with tousled dark hair and light stubble, wearing a black Ferrari racing jacket with red and yellow stripes and motorsport patches. He has a silver chain necklace and multiple rings, holding a modern smartphone in one hand. Low-key dramatic lighting, dark elevator interior with soft reflections, shallow depth of field, sharp focus on the subject’s face. Fashion editorial style, masculine aesthetic, realistic skin texture, ultra-detailed, 35mm photography, cinematic color grading, high contrast, photorealistic, 4K.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A moody cinematic mirror selfie of a stylish young man use image for face reference with tousled dark hair and light stubble, wearing a black Ferrari racing jacket with red and yellow stripes and motorsport patches. He has a silver chain necklace and multiple rings, holding a modern smartphone in one hand. Low-key dramatic lighting, dark elevator interior with soft reflections, shallow depth of field, sharp focus on the subject’s face. Fashion editorial style, masculine aesthetic, realistic skin texture, ultra-detailed, 35mm photography, cinematic color grading, high contrast, photorealistic, 4K."
}
JSON
IM
图像
Photography nano-banana-2

{ "scene": "An intimate indoor portrait taken in a persona...

{ "scene": "An intimate indoor portrait taken in a personal bedroom or studio space, walls covered with taped photos, sketches, and ticket stubs", "subject": { "gender": "male", "age": "early 20s", "expression": "calm, slightly guarded, introspective", "pose": "standing casually, shoulders relaxed, slight lean, hands out of frame", "gaze": "direct but unforced eye contact with the camera", "hair": "short, messy crop with natural volume, slightly uneven fringe", "wardrobe": { "top": "textured knit sweater with soft purple gradient fade", "bottom": "muted trousers, understated and casual", "style": "effortless, lived-in, indie editorial" } }, "environment": { "location": "personal room or creative space", "background_elements": [ "polaroid photographs taped to wall", "handwritten sketches and doodles", "concert or travel ticket stubs", "masking tape visible and imperfect" ], "atmosphere": "nostalgic, personal, slightly raw" }, "lighting": { "type": "direct on-camera flash", "quality": "harsh but controlled", "shadow": "hard shadows falling behind subject", "mood": "late 90s / early 2000s candid realism" }, "camera": { "shot_type": "medium portrait", "lens": "35mm", "perspective": "eye-level, snapshot-style framing", "depth_of_field": "deep enough to keep wall details readable", "imperfections": "slight vignetting, flash falloff" }, "color_grading": { "palette": "muted neutrals with soft lavender emphasis", "contrast": "moderate", "tones": "natural skin tones with slight warmth" }, "texture_and_detail": { "skin": "real texture, visible blemishes, no smoothing", "fabric": "clearly defined knit texture", "grain": "noticeable film grain", "timestamp": "subtle date stamp in corner" }, "style": "analog-inspired, diary-like portrait, lo-fi editorial realism", "negative_prompt": [ "studio lighting", "beauty retouching", "plastic skin", "perfect symmetry", "over-sharpening", "clean minimal background", "AI artifacts" ] }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"scene\": \"An intimate indoor portrait taken in a personal bedroom or studio space, walls covered with taped photos, sketches, and ticket stubs\", \"subject\": { \"gender\": \"male\", \"age\": \"early 20s\", \"expression\": \"calm, slightly guarded, introspective\", \"pose\": \"standing casually, shoulders relaxed, slight lean, hands out of frame\", \"gaze\": \"direct but unforced eye contact with the camera\", \"hair\": \"short, messy crop with natural volume, slightly uneven fringe\", \"wardrobe\": { \"top\": \"textured knit sweater with soft purple gradient fade\", \"bottom\": \"muted trousers, understated and casual\", \"style\": \"effortless, lived-in, indie editorial\" } }, \"environment\": { \"location\": \"personal room or creative space\", \"background_elements\": [ \"polaroid photographs taped to wall\", \"handwritten sketches and doodles\", \"concert or travel ticket stubs\", \"masking tape visible and imperfect\" ], \"atmosphere\": \"nostalgic, personal, slightly raw\" }, \"lighting\": { \"type\": \"direct on-camera flash\", \"quality\": \"harsh but controlled\", \"shadow\": \"hard shadows falling behind subject\", \"mood\": \"late 90s / early 2000s candid realism\" }, \"camera\": { \"shot_type\": \"medium portrait\", \"lens\": \"35mm\", \"perspective\": \"eye-level, snapshot-style framing\", \"depth_of_field\": \"deep enough to keep wall details readable\", \"imperfections\": \"slight vignetting, flash falloff\" }, \"color_grading\": { \"palette\": \"muted neutrals with soft lavender emphasis\", \"contrast\": \"moderate\", \"tones\": \"natural skin tones with slight warmth\" }, \"texture_and_detail\": { \"skin\": \"real texture, visible blemishes, no smoothing\", \"fabric\": \"clearly defined knit texture\", \"grain\": \"noticeable film grain\", \"timestamp\": \"subtle date stamp in corner\" }, \"style\": \"analog-inspired, diary-like portrait, lo-fi editorial realism\", \"negative_prompt\": [ \"studio lighting\", \"beauty retouching\", \"plastic skin\", \"perfect symmetry\", \"over-sharpening\", \"clean minimal background\", \"AI artifacts\" ] }"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic 8K cinematic black-and-white portrait photog...

Ultra-realistic 8K cinematic black-and-white portrait photograph, portrait aspect ratio 1664*2080. An 18-year young handsome man with a slim skinny body, lean physique, narrow shoulders and waist, youthful proportions, captured in a COMPLETELY NEW attitude-heavy pose with a NEW background position. He is standing this time (not seated), slightly off-center in the frame, body angled three-quarters away from the camera, one shoulder closer to lens, head tilted downward with chin tucked, strong swag-filled stance. One hand casually gripping the horse lead near his thigh, the other hand lifted near chest level with relaxed fingers to clearly show rings. Keep my face exactly the same as in the uploaded photo - do not change or edit my face. 100% face accuracy. Facial expression is cold, detached, controlled dominance; gaze downward and sideways, partially hidden behind dark sunglasses, creating a mysterious authority vibe. Natural facial structure with light stubble, real skin pores

查看 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 cinematic black-and-white portrait photograph, portrait aspect ratio 1664*2080. An 18-year young handsome man with a slim skinny body, lean physique, narrow shoulders and waist, youthful proportions, captured in a COMPLETELY NEW attitude-heavy pose with a NEW background position. He is standing this time (not seated), slightly off-center in the frame, body angled three-quarters away from the camera, one shoulder closer to lens, head tilted downward with chin tucked, strong swag-filled stance. One hand casually gripping the horse lead near his thigh, the other hand lifted near chest level with relaxed fingers to clearly show rings. Keep my face exactly the same as in the uploaded photo - do not change or edit my face. 100% face accuracy. Facial expression is cold, detached, controlled dominance; gaze downward and sideways, partially hidden behind dark sunglasses, creating a mysterious authority vibe. Natural facial structure with light stubble, real skin pores"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic, hyper-realistic close-up portrait of a mysterio...

A cinematic, hyper-realistic close-up portrait of a mysterious young woman in darkness, wet skin glistening as if in rain. Neon blue glowing handwritten text and symbols are projected across her face and upper body, wrapping around her eyes, cheeks, lips, and collarbones like living poetry. Her intense gaze looks directly into the camera, eyes sharp and reflective. Damp, tousled hair frames her face, partially shadowed. The lighting is low-key and dramatic, with teal and cyan highlights illuminating her skin while the background fades into deep black. Ultra-detailed skin texture, glossy reflections, shallow depth of field, cyber-poetic aesthetic, futuristic noir mood, emotional and intimate atmosphere, cinematic lighting, 8K, photorealism.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A cinematic, hyper-realistic close-up portrait of a mysterious young woman in darkness, wet skin glistening as if in rain. Neon blue glowing handwritten text and symbols are projected across her face and upper body, wrapping around her eyes, cheeks, lips, and collarbones like living poetry. Her intense gaze looks directly into the camera, eyes sharp and reflective. Damp, tousled hair frames her face, partially shadowed. The lighting is low-key and dramatic, with teal and cyan highlights illuminating her skin while the background fades into deep black. Ultra-detailed skin texture, glossy reflections, shallow depth of field, cyber-poetic aesthetic, futuristic noir mood, emotional and intimate atmosphere, cinematic lighting, 8K, photorealism."
}
JSON
IM
图像
Photography nano-banana-2

Close-up portrait of a young woman with messy, voluminous st...

Close-up portrait of a young woman with messy, voluminous strawberry blonde hair and heavy freckles across her nose and cheeks. She is partially obscured by dark green forest foliage in the foreground. Dramatic cinematic lighting with dappled golden sunlight filtering through leaves, creating high-contrast shadows across her face. Dreamy, ethereal atmosphere, soft bokeh background of a dense forest, shot on 35mm film, earthy tones, hyper-realistic skin textures. ​Key Elements to Tweak ​If you want to adjust the vibe, try changing these specific keywords: ​Lighting: Swap "dappled sunlight" for "rim lighting" to get a glowing outline around her hair, or "overcast" for a moodier, softer look. ​Framing: Use "extreme close-up" to focus purely on the eyes and freckles, or "medium shot" to show more of the forest environment. ​Color Palette: Add "analog film aesthetic" for that slightly grainy, nostalgic feel seen in your image, or "vibrant forest greens" to make the leaves pop.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Close-up portrait of a young woman with messy, voluminous strawberry blonde hair and heavy freckles across her nose and cheeks. She is partially obscured by dark green forest foliage in the foreground. Dramatic cinematic lighting with dappled golden sunlight filtering through leaves, creating high-contrast shadows across her face. Dreamy, ethereal atmosphere, soft bokeh background of a dense forest, shot on 35mm film, earthy tones, hyper-realistic skin textures. ​Key Elements to Tweak ​If you want to adjust the vibe, try changing these specific keywords: ​Lighting: Swap \"dappled sunlight\" for \"rim lighting\" to get a glowing outline around her hair, or \"overcast\" for a moodier, softer look. ​Framing: Use \"extreme close-up\" to focus purely on the eyes and freckles, or \"medium shot\" to show more of the forest environment. ​Color Palette: Add \"analog film aesthetic\" for that slightly grainy, nostalgic feel seen in your image, or \"vibrant forest greens\" to make the leaves pop."
}
JSON
IM
图像
Photography nano-banana-2

{ "image_type": "photograph", "orientation": "vertical", "as...

{ "image_type": "photograph", "orientation": "vertical", "aspect_ratio": "2:3", "composition": { "framing": "centered subject with strong vertical symmetry", "rule_of_thirds": "subject centered vertically, balloon positioned upper-right third", "depth": "moderate depth of field with softly blurred background", "leading_elements": "bench slats and lamppost create vertical and horizontal structure", "negative_space": "open sky occupying upper half of frame" }, "primary_subject": { "description": "young person seated on a wooden park bench wearing an astronaut helmet", "pose": "seated, knees together, arms folded inward, posing towards camera", "emotion": "introspective, melancholic, whimsical loneliness", "clothing": { "top": "oversized gray sweater", "bottom": "dark skinny jeans", "footwear": "red high-top sneakers with white laces", "accessories": "vintage-style astronaut helmet" } }, "secondary_subjects": [ { "type": "object", "description": "red heart-shaped helium balloon", "position": "upper right, tethered to lamppost", "symbolism": "love, longing, fragility" }, { "type": "environment_object", "description": "classic street lamppost", "position": "right side of frame", "function": "anchor point for balloon string" } ], "environment": { "location_type": "urban park or public square", "foreground": "flower pots with small blooming flowers beneath bench", "background": "low-rise buildings and distant urban elements", "sky": "clear with soft gradient" }, "color_palette": { "dominant_colors": [ "muted teal sky", "warm brown wood", "charcoal gray clothing" ], "accent_colors": [ "vivid red balloon", "bright red sneakers" ], "overall_tone": "muted with selective saturation" }, "lighting": { "type": "natural light", "time_of_day": "golden hour or late afternoon", "direction": "soft ambient, slightly directional from left", "contrast": "low to medium", "highlights": "subtle reflections on astronaut visor and balloon surface", "shadows": "soft, diffused shadows under bench and subject" }, "technical_details": { "camera_angle": "eye-level", "lens_effect": "slight background compression suggesting mid-range focal length", "focus": "sharp on subject, gentle background blur", "grain": "minimal, clean digital look" }, "artistic_style": { "genre": "conceptual portrait photography", "mood": "surreal, poetic, nostalgic", "themes": [ "isolation", "imagination", "emotional distance", "childhood wonder" ], "visual_metaphors": [ "astronaut helmet representing emotional separation", "heart balloon symbolizing unattainable or fragile love" ] }, "typography": { "present": false }, "overall_aesth etic": "cinematic, dreamy, modern surrealism with lifestyle photography influences" }

查看 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_type\": \"photograph\", \"orientation\": \"vertical\", \"aspect_ratio\": \"2:3\", \"composition\": { \"framing\": \"centered subject with strong vertical symmetry\", \"rule_of_thirds\": \"subject centered vertically, balloon positioned upper-right third\", \"depth\": \"moderate depth of field with softly blurred background\", \"leading_elements\": \"bench slats and lamppost create vertical and horizontal structure\", \"negative_space\": \"open sky occupying upper half of frame\" }, \"primary_subject\": { \"description\": \"young person seated on a wooden park bench wearing an astronaut helmet\", \"pose\": \"seated, knees together, arms folded inward, posing towards camera\", \"emotion\": \"introspective, melancholic, whimsical loneliness\", \"clothing\": { \"top\": \"oversized gray sweater\", \"bottom\": \"dark skinny jeans\", \"footwear\": \"red high-top sneakers with white laces\", \"accessories\": \"vintage-style astronaut helmet\" } }, \"secondary_subjects\": [ { \"type\": \"object\", \"description\": \"red heart-shaped helium balloon\", \"position\": \"upper right, tethered to lamppost\", \"symbolism\": \"love, longing, fragility\" }, { \"type\": \"environment_object\", \"description\": \"classic street lamppost\", \"position\": \"right side of frame\", \"function\": \"anchor point for balloon string\" } ], \"environment\": { \"location_type\": \"urban park or public square\", \"foreground\": \"flower pots with small blooming flowers beneath bench\", \"background\": \"low-rise buildings and distant urban elements\", \"sky\": \"clear with soft gradient\" }, \"color_palette\": { \"dominant_colors\": [ \"muted teal sky\", \"warm brown wood\", \"charcoal gray clothing\" ], \"accent_colors\": [ \"vivid red balloon\", \"bright red sneakers\" ], \"overall_tone\": \"muted with selective saturation\" }, \"lighting\": { \"type\": \"natural light\", \"time_of_day\": \"golden hour or late afternoon\", \"direction\": \"soft ambient, slightly directional from left\", \"contrast\": \"low to medium\", \"highlights\": \"subtle reflections on astronaut visor and balloon surface\", \"shadows\": \"soft, diffused shadows under bench and subject\" }, \"technical_details\": { \"camera_angle\": \"eye-level\", \"lens_effect\": \"slight background compression suggesting mid-range focal length\", \"focus\": \"sharp on subject, gentle background blur\", \"grain\": \"minimal, clean digital look\" }, \"artistic_style\": { \"genre\": \"conceptual portrait photography\", \"mood\": \"surreal, poetic, nostalgic\", \"themes\": [ \"isolation\", \"imagination\", \"emotional distance\", \"childhood wonder\" ], \"visual_metaphors\": [ \"astronaut helmet representing emotional separation\", \"heart balloon symbolizing unattainable or fragile love\" ] }, \"typography\": { \"present\": false }, \"overall_aesth etic\": \"cinematic, dreamy, modern surrealism with lifestyle photography influences\" }"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic, moody portrait of a stylish women in dark suit...

A cinematic, moody portrait of a stylish women in dark suit and oval sunglasses, smoking a thin medium cigar while holding a burning playing card in his hand king of hearts, dramatic fire and smoke swirling in the air, low-key lighting, warm orange fire glow illuminating her face, dark blurred background, shallow depth of field, ultra-realistic, high contrast, cinematic photography, 35mm lens look, soft bokeh, detailed skin texture, sharp focus, professional lighting, dark noir atmosphere.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A cinematic, moody portrait of a stylish women in dark suit and oval sunglasses, smoking a thin medium cigar while holding a burning playing card in his hand king of hearts, dramatic fire and smoke swirling in the air, low-key lighting, warm orange fire glow illuminating her face, dark blurred background, shallow depth of field, ultra-realistic, high contrast, cinematic photography, 35mm lens look, soft bokeh, detailed skin texture, sharp focus, professional lighting, dark noir atmosphere."
}
JSON
IM
图像
Photography nano-banana-2

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

{ "generation_request": { "meta_data": { "tool": "NanoBanana Pro", "task_type": "photoreal_cinematic_travel_couple_low_angle_airplane_overhead_with_baby", "version": "v1.1_SHOULDERS_CARRY_PLANE_SKY_HERO_SHOT_BABY_LIFT", "priority": "highest" }, "references": { "female_reference_image": { "slot": 1, "purpose": "FEMALE_IDENTITY_LOCK", "strict_identity_lock": true }, "male_reference_image": { "slot": 2, "purpose": "MALE_IDENTITY_LOCK", "strict_identity_lock": true }, "composition_reference_image": { "source": "UPLOAD_REFERENCE_IMAGE (OPTIONAL)", "purpose": "COMPOSITION_POSE_PROP_LOCK", "strict_lock": true, "no_layout_drift": true, "preserve_framing": true } }, "output_settings": { "aspect_ratio": "4:5", "orientation": "portrait", "resolution": "ultra_high_res", "render_style": "ultra_photoreal_cinematic_lifestyle", "sharpness": "crisp_but_natural", "film_grain": "subtle_analog", "color_grade": "clean_true_to_life_warm_daylight" }, "hard_constraints": [ "Exactly 3 subjects only: one female, one male, and one baby (infant/toddler).", "Faces of the adult couple must match the uploaded references with maximum similarity (no morphing).", "Match the reference composition: extreme low-angle hero shot, man carrying woman on his shoulders.", "Woman holds the baby securely and lifts the baby slightly upward (safe, realistic lift; not extreme).", "A commercial airplane must be clearly visible overhead in the sky (top area of frame).", "No text, no logos, no watermark.", "Photoreal anatomy (no extra limbs/fingers), realistic footwear and clothing folds." ], "camera": { "style": "cinematic travel lifestyle photo", "lens": "24mm", "aperture": "f/2.8", "focus": "sharp on couple faces and baby, slight falloff toward shoes", "shutter_speed": "1/1600", "iso": 100, "white_balance": "bright clear daylight" }, "lighting": { "type": "direct sunny daylight", "contrast": "medium", "highlights": "natural sun highlights, controlled (no blown skin)", "shadows": "soft-ish due to open sky bounce" }, "prompt": { "scene_summary": "Ultra-photoreal cinematic travel lifestyle photo. Extreme low-angle hero perspective looking up at a family against a wide open blue sky. The man carries the woman on his shoulders; she sits securely with legs draped to each side, sneakers visible close to camera. The woman holds a baby securely and lifts the baby upward in a joyful 'flying' moment (safe realistic lift: baby raised only slightly above her face level, supported with both hands, baby’s head/neck naturally supported). The man smiles, holding the woman’s legs/ankles for support, stance stable and natural. A commercial passenger airplane flies overhead, centered near the top of the frame, clearly recognizable with realistic scale, motion blur minimal.\n\nWardrobe & vibe (match reference):\n- Soft casual neutrals: man in a cream/beige sweater and light denim; woman in an oversized pastel/pink sweatshirt; clean white sneakers.\n- Baby in a simple pastel onesie (no text/logos), weather-appropriate.\n- Natural, candid happiness; relaxed weekend travel vibe.\n\nComposition & realism:\n- Blue sky fills most of the background; minimal clouds.\n- Strong perspective distortion typical of a 24mm lens; sneakers and legs appear slightly larger due to proximity.\n- Realistic skin texture, fabric knit detail, and accurate shadows.\n- Ensure faces are clearly visible and sharp, with natural expressions (no beautify filter).\n\nSafety/pose realism:\n- Baby is held securely with both hands, no extreme overhead throwing, no unsafe angles.", "styling_notes": [ "keep the exact low-angle hero shot", "man carrying woman on shoulders remains the core pose", "woman lifts baby slightly upward while keeping secure support", "airplane must be visible and not cropped", "avoid sunglasses unless they exist in the identity references" ] }, "negative_prompt": [ "extra people", "missing airplane", "airplane cropped", "unsafe baby pose (throwing baby high)", "baby unsupported head/neck", "cartoon", "anime", "cgi", "plastic skin", "over-smoothing", "face morph", "identity drift", "deformed hands", "extra fingers", "extra limbs", "text", "logo", "watermark", "blown highlights" ] } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"generation_request\": { \"meta_data\": { \"tool\": \"NanoBanana Pro\", \"task_type\": \"photoreal_cinematic_travel_couple_low_angle_airplane_overhead_with_baby\", \"version\": \"v1.1_SHOULDERS_CARRY_PLANE_SKY_HERO_SHOT_BABY_LIFT\", \"priority\": \"highest\" }, \"references\": { \"female_reference_image\": { \"slot\": 1, \"purpose\": \"FEMALE_IDENTITY_LOCK\", \"strict_identity_lock\": true }, \"male_reference_image\": { \"slot\": 2, \"purpose\": \"MALE_IDENTITY_LOCK\", \"strict_identity_lock\": true }, \"composition_reference_image\": { \"source\": \"UPLOAD_REFERENCE_IMAGE (OPTIONAL)\", \"purpose\": \"COMPOSITION_POSE_PROP_LOCK\", \"strict_lock\": true, \"no_layout_drift\": true, \"preserve_framing\": true } }, \"output_settings\": { \"aspect_ratio\": \"4:5\", \"orientation\": \"portrait\", \"resolution\": \"ultra_high_res\", \"render_style\": \"ultra_photoreal_cinematic_lifestyle\", \"sharpness\": \"crisp_but_natural\", \"film_grain\": \"subtle_analog\", \"color_grade\": \"clean_true_to_life_warm_daylight\" }, \"hard_constraints\": [ \"Exactly 3 subjects only: one female, one male, and one baby (infant/toddler).\", \"Faces of the adult couple must match the uploaded references with maximum similarity (no morphing).\", \"Match the reference composition: extreme low-angle hero shot, man carrying woman on his shoulders.\", \"Woman holds the baby securely and lifts the baby slightly upward (safe, realistic lift; not extreme).\", \"A commercial airplane must be clearly visible overhead in the sky (top area of frame).\", \"No text, no logos, no watermark.\", \"Photoreal anatomy (no extra limbs/fingers), realistic footwear and clothing folds.\" ], \"camera\": { \"style\": \"cinematic travel lifestyle photo\", \"lens\": \"24mm\", \"aperture\": \"f/2.8\", \"focus\": \"sharp on couple faces and baby, slight falloff toward shoes\", \"shutter_speed\": \"1/1600\", \"iso\": 100, \"white_balance\": \"bright clear daylight\" }, \"lighting\": { \"type\": \"direct sunny daylight\", \"contrast\": \"medium\", \"highlights\": \"natural sun highlights, controlled (no blown skin)\", \"shadows\": \"soft-ish due to open sky bounce\" }, \"prompt\": { \"scene_summary\": \"Ultra-photoreal cinematic travel lifestyle photo. Extreme low-angle hero perspective looking up at a family against a wide open blue sky. The man carries the woman on his shoulders; she sits securely with legs draped to each side, sneakers visible close to camera. The woman holds a baby securely and lifts the baby upward in a joyful 'flying' moment (safe realistic lift: baby raised only slightly above her face level, supported with both hands, baby’s head/neck naturally supported). The man smiles, holding the woman’s legs/ankles for support, stance stable and natural. A commercial passenger airplane flies overhead, centered near the top of the frame, clearly recognizable with realistic scale, motion blur minimal.\\n\\nWardrobe & vibe (match reference):\\n- Soft casual neutrals: man in a cream/beige sweater and light denim; woman in an oversized pastel/pink sweatshirt; clean white sneakers.\\n- Baby in a simple pastel onesie (no text/logos), weather-appropriate.\\n- Natural, candid happiness; relaxed weekend travel vibe.\\n\\nComposition & realism:\\n- Blue sky fills most of the background; minimal clouds.\\n- Strong perspective distortion typical of a 24mm lens; sneakers and legs appear slightly larger due to proximity.\\n- Realistic skin texture, fabric knit detail, and accurate shadows.\\n- Ensure faces are clearly visible and sharp, with natural expressions (no beautify filter).\\n\\nSafety/pose realism:\\n- Baby is held securely with both hands, no extreme overhead throwing, no unsafe angles.\", \"styling_notes\": [ \"keep the exact low-angle hero shot\", \"man carrying woman on shoulders remains the core pose\", \"woman lifts baby slightly upward while keeping secure support\", \"airplane must be visible and not cropped\", \"avoid sunglasses unless they exist in the identity references\" ] }, \"negative_prompt\": [ \"extra people\", \"missing airplane\", \"airplane cropped\", \"unsafe baby pose (throwing baby high)\", \"baby unsupported head/neck\", \"cartoon\", \"anime\", \"cgi\", \"plastic skin\", \"over-smoothing\", \"face morph\", \"identity drift\", \"deformed hands\", \"extra fingers\", \"extra limbs\", \"text\", \"logo\", \"watermark\", \"blown highlights\" ] } }"
}
JSON
IM
图像
Photography nano-banana-2

A realistic cinematic photograph of a handsome man riding a...

A realistic cinematic photograph of a handsome man riding a bicycle along the edge of Dal Lake at sunset, wearing an olive-green jacket over a light sweater, black trousers and dark shoes. He has short styled hair and a trimmed beard, looking calmly toward the camera with a slight confident expression. Warm golden-hour light reflecting on the lake, traditional shikara boats with people rowing in the background, soft ripples in the water, distant mountains under a pastel sky with orange and pink hues. Shallow depth of field, natural colors, high detail, lifestyle travel photography, ultra-realistic, 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 realistic cinematic photograph of a handsome man riding a bicycle along the edge of Dal Lake at sunset, wearing an olive-green jacket over a light sweater, black trousers and dark shoes. He has short styled hair and a trimmed beard, looking calmly toward the camera with a slight confident expression. Warm golden-hour light reflecting on the lake, traditional shikara boats with people rowing in the background, soft ripples in the water, distant mountains under a pastel sky with orange and pink hues. Shallow depth of field, natural colors, high detail, lifestyle travel photography, ultra-realistic, 4K quality."
}
JSON
IM
图像
Photography nano-banana-2

Create a realistic portrait (100% identical face, no editing...

Create a realistic portrait (100% identical face, no editing allowed). A hyper-realistic black-and-white portrait of a young beautiful woman with a calm, serious, and introspective expression, sitting casually on a stack of rustic wooden crates in a minimalist studio setting. She faces the camera directly with a relaxed yet confident posture, her legs slightly apart, one hand resting naturally between her knees and the other loosely stretched across her thigh, creating a powerful editorial fashion pose. She has straight, dark, shoulder-length hair with a natural center parting, slightly tousled, gently framing her face. Her facial features are delicate and symmetrical, with a naturally smooth skin texture, subtle shadows under her eyes, soft, slightly parted lips, and deep, expressive eyes staring directly into the lens, conveying a calm confidence and emotional depth. The lack of heavy makeup emphasizes the natural editorial aesthetic. Clothing & Style: She wears a fitted black blazer with structured shoulders over a simple white crew-neck T-shirt, paired with cropped black striped trousers. On her feet are modern, chunky white sneakers, paired with white calf-length socks with bold black horizontal stripes, adding a casual street-style contrast to the formal blazer. Minimal accessories, no visible jewelry. Her nails are painted black. Lighting & Ambiance: High-contrast cinematic lighting with strong, directional natural light coming in from the side, creating dramatic diagonal streaks of light and shadow on the plain studio walls and partly on her body. The lighting creates depth, texture, and a moody editorial atmosphere reminiscent of a high-end fashion magazine. Soft shadows preserve facial details while maintaining strong contrast. Camera & Composition: Medium-full-length shot, eye-level perspective, centered composition. Shot with a professional DSLR or medium format camera, using a prime lens (50mm–85mm). Shallow depth of field with sharp focus on the subject, subtle background blur. Sharp details, subtle texture of fabric, visible skin pores, realistic falloff. Style & Quality: Editorial fashion photography, minimalist, cinematic, monochrome aesthetic, Vogue-style portraiture, ultra-high resolution, sharp focus, film-like contrast, timeless and modern atmosphere.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create a realistic portrait (100% identical face, no editing allowed). A hyper-realistic black-and-white portrait of a young beautiful woman with a calm, serious, and introspective expression, sitting casually on a stack of rustic wooden crates in a minimalist studio setting. She faces the camera directly with a relaxed yet confident posture, her legs slightly apart, one hand resting naturally between her knees and the other loosely stretched across her thigh, creating a powerful editorial fashion pose. She has straight, dark, shoulder-length hair with a natural center parting, slightly tousled, gently framing her face. Her facial features are delicate and symmetrical, with a naturally smooth skin texture, subtle shadows under her eyes, soft, slightly parted lips, and deep, expressive eyes staring directly into the lens, conveying a calm confidence and emotional depth. The lack of heavy makeup emphasizes the natural editorial aesthetic. Clothing & Style: She wears a fitted black blazer with structured shoulders over a simple white crew-neck T-shirt, paired with cropped black striped trousers. On her feet are modern, chunky white sneakers, paired with white calf-length socks with bold black horizontal stripes, adding a casual street-style contrast to the formal blazer. Minimal accessories, no visible jewelry. Her nails are painted black. Lighting & Ambiance: High-contrast cinematic lighting with strong, directional natural light coming in from the side, creating dramatic diagonal streaks of light and shadow on the plain studio walls and partly on her body. The lighting creates depth, texture, and a moody editorial atmosphere reminiscent of a high-end fashion magazine. Soft shadows preserve facial details while maintaining strong contrast. Camera & Composition: Medium-full-length shot, eye-level perspective, centered composition. Shot with a professional DSLR or medium format camera, using a prime lens (50mm–85mm). Shallow depth of field with sharp focus on the subject, subtle background blur. Sharp details, subtle texture of fabric, visible skin pores, realistic falloff. Style & Quality: Editorial fashion photography, minimalist, cinematic, monochrome aesthetic, Vogue-style portraiture, ultra-high resolution, sharp focus, film-like contrast, timeless and modern atmosphere."
}
JSON
IM
图像
Photography nano-banana-2

Donald Trump and Sabrina Carpenter Nano Banana Pro Prompt...

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

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

{ "scene": "Urban street portrait on a quiet city sidewalk...

{ "scene": "Urban street portrait on a quiet city sidewalk", "subject": { "gender": "female", "age_range": "late 20s to early 30s", "expression": "neutral, introspective, calm confidence", "pose": "standing casually, leaning slightly against a brick wall, weight shifted to one leg, arms relaxed", "gaze": "looking directly at camera, unfazed, understated presence" }, "wardrobe": { "outerwear": "black leather jacket with natural wear and soft creases", "top": "dark charcoal ribbed tank top", "bottom": "high-waisted tailored wool trousers in muted grey", "accessories": "small dark leather crossbody bag, minimal jewelry", "styling_notes": "effortless, functional, lived-in fashion, no trend exaggeration" }, "hair_and_makeup": { "hair": "natural medium-length hair, loose and slightly wind-touched, no styling product shine", "makeup": "minimal or none, natural skin texture visible, subtle under-eye shadows, real pores" }, "environment": { "location": "narrow city street with brick wall and storefronts", "background": "softly out-of-focus bicycles and pedestrians in the distance", "era_feel": "timeless contemporary, everyday realism" }, "lighting": { "type": "natural overcast daylight", "direction": "soft frontal with gentle side falloff", "contrast": "low to medium contrast", "notes": "no harsh highlights, no dramatic rim light" }, "camera": { "lens": "50mm full-frame look", "framing": "full-body portrait, eye-level perspective", "depth_of_field": "moderately shallow, subject separated subtly from background", "movement": "static, documentary stillness" }, "color_and_texture": { "color_palette": "muted earth tones, soft greys, natural skin tones", "texture": "visible fabric weave, brick texture, light film grain", "grading": "neutral, slightly cool, filmic, no teal-orange" }, "aesthetic_constraints": [ "no plastic skin", "no beauty retouching", "no cinematic exaggeration", "no fashion editorial posing", "no artificial glow", "avoid AI symmetry" ], "overall_vibe": "quiet confidence, observational, grounded realism, modern street portrait" }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"scene\": \"Urban street portrait on a quiet city sidewalk\", \"subject\": { \"gender\": \"female\", \"age_range\": \"late 20s to early 30s\", \"expression\": \"neutral, introspective, calm confidence\", \"pose\": \"standing casually, leaning slightly against a brick wall, weight shifted to one leg, arms relaxed\", \"gaze\": \"looking directly at camera, unfazed, understated presence\" }, \"wardrobe\": { \"outerwear\": \"black leather jacket with natural wear and soft creases\", \"top\": \"dark charcoal ribbed tank top\", \"bottom\": \"high-waisted tailored wool trousers in muted grey\", \"accessories\": \"small dark leather crossbody bag, minimal jewelry\", \"styling_notes\": \"effortless, functional, lived-in fashion, no trend exaggeration\" }, \"hair_and_makeup\": { \"hair\": \"natural medium-length hair, loose and slightly wind-touched, no styling product shine\", \"makeup\": \"minimal or none, natural skin texture visible, subtle under-eye shadows, real pores\" }, \"environment\": { \"location\": \"narrow city street with brick wall and storefronts\", \"background\": \"softly out-of-focus bicycles and pedestrians in the distance\", \"era_feel\": \"timeless contemporary, everyday realism\" }, \"lighting\": { \"type\": \"natural overcast daylight\", \"direction\": \"soft frontal with gentle side falloff\", \"contrast\": \"low to medium contrast\", \"notes\": \"no harsh highlights, no dramatic rim light\" }, \"camera\": { \"lens\": \"50mm full-frame look\", \"framing\": \"full-body portrait, eye-level perspective\", \"depth_of_field\": \"moderately shallow, subject separated subtly from background\", \"movement\": \"static, documentary stillness\" }, \"color_and_texture\": { \"color_palette\": \"muted earth tones, soft greys, natural skin tones\", \"texture\": \"visible fabric weave, brick texture, light film grain\", \"grading\": \"neutral, slightly cool, filmic, no teal-orange\" }, \"aesthetic_constraints\": [ \"no plastic skin\", \"no beauty retouching\", \"no cinematic exaggeration\", \"no fashion editorial posing\", \"no artificial glow\", \"avoid AI symmetry\" ], \"overall_vibe\": \"quiet confidence, observational, grounded realism, modern street portrait\" }"
}
JSON
IM
图像
Photography nano-banana-2

{ "Objective": "Create an intense cinematic close-up portr...

{ "Objective": "Create an intense cinematic close-up portrait conveying survival, resilience, and raw human strength in a harsh winter environment", "PersonaDetails": { "Subject": { "Type": "Rugged adult man", "Eyes": { "Color": "Piercing icy blue", "Focus": "Primary focal point of the image, razor sharp" }, "FacialFeatures": { "Beard": "Thick, full beard", "Skin": "Weathered with visible pores, fine texture, and subtle scars" }, "Expression": "Intense, stoic, emotionally restrained", "Wardrobe": { "Outerwear": "Heavy winter coat with fur-lined hood", "Framing": "Hood partially framing the face" } } }, "EnvironmentalDetails": { "Season": "Winter", "Atmosphere": "Cold, harsh, unforgiving", "Snow": { "Details": "Snowflakes clinging to hair, eyelashes, eyebrows, and beard", "Motion": "Frozen mid-air and resting naturally on facial hair" } }, "Composition": { "Framing": "Extreme close-up portrait", "Crop": "Tight crop emphasizing eyes and facial texture", "DepthOfField": "Very shallow depth of field", "Focus": "Ultra-sharp on eyes, soft falloff toward edges" }, "LightingAndMood": { "LightingStyle": "Dramatic low-key cinematic lighting", "KeyLight": "Soft, directional light sculpting facial structure", "RimLight": "Cold rim light separating subject from background", "ColorGrading": "Moody cinematic tones with cold blues and warm brown accents", "Mood": "Intense, raw, powerful, solitary" }, "ArtDirection": { "Style": "Hyper-realistic cinematic photography", "Aesthetic": "Survival realism, raw human endurance", "TextureEmphasis": [ "Photorealistic skin pores", "Beard hair detail", "Fur-lined fabric texture", "Ice and snow particles" ] }, "PhotographyStyle": { "Genre": "Cinematic survival portrait photography", "RealismLevel": "Extreme photorealism", "DetailLevel": "8K ultra-high detail with controlled sharpness" }, "Theme": { "Concept": "Survival, resilience, endurance against nature", "EmotionalImpact": "Strength, determination, quiet defiance" }, "NegativePrompt": [ "smooth skin", "beauty retouching", "flat lighting", "low contrast", "cartoon", "anime", "fantasy illustration", "blurry eyes" ], "ResponseFormat": { "Type": "Single image", "Orientation": "Portrait", "AspectRatio": "2:3" } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"Objective\": \"Create an intense cinematic close-up portrait conveying survival, resilience, and raw human strength in a harsh winter environment\", \"PersonaDetails\": { \"Subject\": { \"Type\": \"Rugged adult man\", \"Eyes\": { \"Color\": \"Piercing icy blue\", \"Focus\": \"Primary focal point of the image, razor sharp\" }, \"FacialFeatures\": { \"Beard\": \"Thick, full beard\", \"Skin\": \"Weathered with visible pores, fine texture, and subtle scars\" }, \"Expression\": \"Intense, stoic, emotionally restrained\", \"Wardrobe\": { \"Outerwear\": \"Heavy winter coat with fur-lined hood\", \"Framing\": \"Hood partially framing the face\" } } }, \"EnvironmentalDetails\": { \"Season\": \"Winter\", \"Atmosphere\": \"Cold, harsh, unforgiving\", \"Snow\": { \"Details\": \"Snowflakes clinging to hair, eyelashes, eyebrows, and beard\", \"Motion\": \"Frozen mid-air and resting naturally on facial hair\" } }, \"Composition\": { \"Framing\": \"Extreme close-up portrait\", \"Crop\": \"Tight crop emphasizing eyes and facial texture\", \"DepthOfField\": \"Very shallow depth of field\", \"Focus\": \"Ultra-sharp on eyes, soft falloff toward edges\" }, \"LightingAndMood\": { \"LightingStyle\": \"Dramatic low-key cinematic lighting\", \"KeyLight\": \"Soft, directional light sculpting facial structure\", \"RimLight\": \"Cold rim light separating subject from background\", \"ColorGrading\": \"Moody cinematic tones with cold blues and warm brown accents\", \"Mood\": \"Intense, raw, powerful, solitary\" }, \"ArtDirection\": { \"Style\": \"Hyper-realistic cinematic photography\", \"Aesthetic\": \"Survival realism, raw human endurance\", \"TextureEmphasis\": [ \"Photorealistic skin pores\", \"Beard hair detail\", \"Fur-lined fabric texture\", \"Ice and snow particles\" ] }, \"PhotographyStyle\": { \"Genre\": \"Cinematic survival portrait photography\", \"RealismLevel\": \"Extreme photorealism\", \"DetailLevel\": \"8K ultra-high detail with controlled sharpness\" }, \"Theme\": { \"Concept\": \"Survival, resilience, endurance against nature\", \"EmotionalImpact\": \"Strength, determination, quiet defiance\" }, \"NegativePrompt\": [ \"smooth skin\", \"beauty retouching\", \"flat lighting\", \"low contrast\", \"cartoon\", \"anime\", \"fantasy illustration\", \"blurry eyes\" ], \"ResponseFormat\": { \"Type\": \"Single image\", \"Orientation\": \"Portrait\", \"AspectRatio\": \"2:3\" } }"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic moody Paris street editorial portrait, shot...

Ultra-realistic moody Paris street editorial portrait, shot outside a vintage shopfront at dusk/overcast twilight, film-scanned look. A young woman (early–mid 20s), fair skin, slim build, shoulder-length light brown/dark blonde hair with a soft center/loose part, slightly tousled ends. Expression: calm, distant, slightly tired gaze; lips relaxed, almost pouting; eyes looking straight at camera with subtle softness. Pose: standing close to the shop entrance, shoulders slightly forward, body angled 3/4; one hand tucked into the coat pocket (hand visible at pocket opening), the other arm relaxed inside the oversized coat. She is framed from mid-thigh to a little above head, vertical portrait. Wardrobe: oversized brown leather/bomber-style coat with a worn matte sheen, slightly wrinkled texture; very large fit with dropped shoulders. Collar: thick black shearling/faux-fur collar folded up around the neck. No visible logos, no jewelry emphasis. Location / Background details: •She stands at the edge of a dark green/black painted wooden doorframe with aged patina; the frame runs vertically on the right side of the image. •Behind her is a large shop window with reflective glass showing faint street reflections (trees/sky shapes), but interior objects remain visible. •At the very top of the window, large curved cream lettering reads: “VINS DE PROPRIÉTÉS” (French text, arched across the glass). •Inside the shop window, a botanical poster is visible on the left side (green leaves illustration), slightly blurred due to depth/reflection. •Lower left inside the window: a display area with dark surfaces and small objects (bottles/produce-like shapes), dimly lit. •On the far right edge, partially inside the frame, a black menu/chalkboard with small white writing is visible (text not fully readable), aligned vertically near the doorframe. Lighting: natural ambient street light, soft and diffused; gentle highlights on cheekbones and nose; shadows are deep but not crushed. No direct flash. The shop interior glows faintly warm compared to the cooler exterior. Color / Tone / Aesthetic: muted brown, olive-green, charcoal palette; cinematic, slightly desaturated; subtle warm sundayfunday undertone in skin and shop interior; overall dark, cozy, rainy-winter vibe (even if no rain visible). Film grain present, slight halation on highlights, mild vignette, soft contrast roll-off. Background softly blurred but readable; subject sharpest point is face and coat collar. Cooks. Composition / Camera: vertical portrait (approx 4:5 feel), subject centered slightly left; window text occupies upper third; doorframe and menu board anchor the right third; medium shot at eye level, ~50mm perspective, shallow-to-moderate depth of field, realistic lens softness toward edges. Surface / python Texture cues: aged paint on doorframe, smudged window reflections, leather coat creases, fur collar fibers visible, fine pores and natural skin texture. Negative constraints: no extra props, no different outfit, no hat, no scarf, no bright colors, no neon signs, no modern clean storefront, no heavy HDR, no glossy beauty retouching, no smiling, no dramatic rim light, no changed text—keep “VINS DE PROPRIÉTÉS” exactly, keep the same framing and moody film vibe. Render tags: ultra-realistic editorial street portrait, vintage Paris storefront, window typography, muted cinematic film scan, soft natural light, shallow DOF, fine grain, 4:5 vertical.

查看 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 moody Paris street editorial portrait, shot outside a vintage shopfront at dusk/overcast twilight, film-scanned look. A young woman (early–mid 20s), fair skin, slim build, shoulder-length light brown/dark blonde hair with a soft center/loose part, slightly tousled ends. Expression: calm, distant, slightly tired gaze; lips relaxed, almost pouting; eyes looking straight at camera with subtle softness. Pose: standing close to the shop entrance, shoulders slightly forward, body angled 3/4; one hand tucked into the coat pocket (hand visible at pocket opening), the other arm relaxed inside the oversized coat. She is framed from mid-thigh to a little above head, vertical portrait. Wardrobe: oversized brown leather/bomber-style coat with a worn matte sheen, slightly wrinkled texture; very large fit with dropped shoulders. Collar: thick black shearling/faux-fur collar folded up around the neck. No visible logos, no jewelry emphasis. Location / Background details: •She stands at the edge of a dark green/black painted wooden doorframe with aged patina; the frame runs vertically on the right side of the image. •Behind her is a large shop window with reflective glass showing faint street reflections (trees/sky shapes), but interior objects remain visible. •At the very top of the window, large curved cream lettering reads: “VINS DE PROPRIÉTÉS” (French text, arched across the glass). •Inside the shop window, a botanical poster is visible on the left side (green leaves illustration), slightly blurred due to depth/reflection. •Lower left inside the window: a display area with dark surfaces and small objects (bottles/produce-like shapes), dimly lit. •On the far right edge, partially inside the frame, a black menu/chalkboard with small white writing is visible (text not fully readable), aligned vertically near the doorframe. Lighting: natural ambient street light, soft and diffused; gentle highlights on cheekbones and nose; shadows are deep but not crushed. No direct flash. The shop interior glows faintly warm compared to the cooler exterior. Color / Tone / Aesthetic: muted brown, olive-green, charcoal palette; cinematic, slightly desaturated; subtle warm sundayfunday undertone in skin and shop interior; overall dark, cozy, rainy-winter vibe (even if no rain visible). Film grain present, slight halation on highlights, mild vignette, soft contrast roll-off. Background softly blurred but readable; subject sharpest point is face and coat collar. Cooks. Composition / Camera: vertical portrait (approx 4:5 feel), subject centered slightly left; window text occupies upper third; doorframe and menu board anchor the right third; medium shot at eye level, ~50mm perspective, shallow-to-moderate depth of field, realistic lens softness toward edges. Surface / python Texture cues: aged paint on doorframe, smudged window reflections, leather coat creases, fur collar fibers visible, fine pores and natural skin texture. Negative constraints: no extra props, no different outfit, no hat, no scarf, no bright colors, no neon signs, no modern clean storefront, no heavy HDR, no glossy beauty retouching, no smiling, no dramatic rim light, no changed text—keep “VINS DE PROPRIÉTÉS” exactly, keep the same framing and moody film vibe. Render tags: ultra-realistic editorial street portrait, vintage Paris storefront, window typography, muted cinematic film scan, soft natural light, shallow DOF, fine grain, 4:5 vertical."
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。