模型 PROMPTS

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

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

模型

nano-banana-2

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

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

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

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

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

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

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

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

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

Ultra-realistic cinematic medium close-up portrait of the re...

Ultra-realistic cinematic medium close-up portrait of the reference person, slightly turned to the side while looking toward the camera. Wearing a black turtleneck and dark jacket, modern and minimalist fashion style. Deep blue background with a smooth gradient, combined with contrasting magenta and blue lighting. Strong blue light coming from one side and magenta light from the opposite side, both colors reflecting clearly on the face and skin, creating a dramatic color contrast. High-end editorial lighting, sharp focus, realistic skin texture, cinematic mood, shallow depth of field.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic cinematic medium close-up portrait of the reference person, slightly turned to the side while looking toward the camera. Wearing a black turtleneck and dark jacket, modern and minimalist fashion style. Deep blue background with a smooth gradient, combined with contrasting magenta and blue lighting. Strong blue light coming from one side and magenta light from the opposite side, both colors reflecting clearly on the face and skin, creating a dramatic color contrast. High-end editorial lighting, sharp focus, realistic skin texture, cinematic mood, shallow depth of field."
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "High-contrast monochromatic studio portrait of...

{ "prompt": "High-contrast monochromatic studio portrait of a European woman around 25 years old. She has natural facial proportions, delicate cheekbones, expressive eyes, and realistic skin texture with visible pores and fine detail. Her expression is calm, elegant, and confident, looking softly toward the camera. She is posed gracefully with one hand lightly touching her neck and shoulders slightly angled. She is wearing a simple elegant black dress that softly frames her collarbones and shoulders. Hair is natural and softly styled with visible strand detail. Use minimal modern studio lighting with a single focused key light slightly above eye level, creating soft sculpted highlights on the face and subtle shadows for depth. Background is pure black, clean and textureless. Composition is a tight head-and-shoulders portrait with sharp focus on the eyes and shallow depth of field. Style: cinematic fine-art monochrome photography, modern editorial studio aesthetic, ultra-realistic, high contrast, 8K resolution, sharp micro-details." }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"prompt\": \"High-contrast monochromatic studio portrait of a European woman around 25 years old. She has natural facial proportions, delicate cheekbones, expressive eyes, and realistic skin texture with visible pores and fine detail. Her expression is calm, elegant, and confident, looking softly toward the camera. She is posed gracefully with one hand lightly touching her neck and shoulders slightly angled. She is wearing a simple elegant black dress that softly frames her collarbones and shoulders. Hair is natural and softly styled with visible strand detail. Use minimal modern studio lighting with a single focused key light slightly above eye level, creating soft sculpted highlights on the face and subtle shadows for depth. Background is pure black, clean and textureless. Composition is a tight head-and-shoulders portrait with sharp focus on the eyes and shallow depth of field. Style: cinematic fine-art monochrome photography, modern editorial studio aesthetic, ultra-realistic, high contrast, 8K resolution, sharp micro-details.\" }"
}
JSON
IM
图像
Photography nano-banana-2

Photorealistic cinematic photo, 3:4 vertical frame, shooting...

Photorealistic cinematic photo, 3:4 vertical frame, shooting from a very low point of grass/flowers (worm's-eye view) on a wide-angle lens-24-28mm. In the center of the frame, chest-deep, is a 25-year-old young woman with fair skin and dark brown hair, wearing a dark blue/black sweatshirt with a small white inscription on the chest, and a thin chain around his neck. The pose is calm, the body is slightly turned to the right, the head looks straight at the viewer and is raised; the focus is on the upper body. Foreground: large blurred yellow bees, yellow flowers and green stems, strong sideways, one large warm orange glare/spot at the bottom of the frame. Middle ground: around the model there are wild plants and flowers, some of the stems are sharp, some are in a soft blur. Background/sky: a large turquoise-blue open sky with large white cumulus clouds on the left and above. There are a lot of small orange petals/seeds/leaves in the air above and around the model, as if they were picked up by the wind; they are at different distances and partially blurred (motion blur + shallow DOF), creating the effect of "floating particles". Lighting: natural daylight, the sun is high / slightly behind on the left; soft contour illumination of hair and shoulders, sun is on accents + cool sky, light teal-orange grading, moderate vignette. Parameters/style: shallow depth of field, foreground bokeh, crisp subject, cinematic, ultra realistic, high detail, natural film look, slight haze, no text overlays, no logos, no watermark. Negative promt: illustration, CGI, cartoon, plastic skin, overexposure, strong noise, dirty background, superfluous people, buildings, wires, large readable inscriptions on clothes, artifacts, deformity of arms/shoulders.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Photorealistic cinematic photo, 3:4 vertical frame, shooting from a very low point of grass/flowers (worm's-eye view) on a wide-angle lens-24-28mm. In the center of the frame, chest-deep, is a 25-year-old young woman with fair skin and dark brown hair, wearing a dark blue/black sweatshirt with a small white inscription on the chest, and a thin chain around his neck. The pose is calm, the body is slightly turned to the right, the head looks straight at the viewer and is raised; the focus is on the upper body. Foreground: large blurred yellow bees, yellow flowers and green stems, strong sideways, one large warm orange glare/spot at the bottom of the frame. Middle ground: around the model there are wild plants and flowers, some of the stems are sharp, some are in a soft blur. Background/sky: a large turquoise-blue open sky with large white cumulus clouds on the left and above. There are a lot of small orange petals/seeds/leaves in the air above and around the model, as if they were picked up by the wind; they are at different distances and partially blurred (motion blur + shallow DOF), creating the effect of \"floating particles\". Lighting: natural daylight, the sun is high / slightly behind on the left; soft contour illumination of hair and shoulders, sun is on accents + cool sky, light teal-orange grading, moderate vignette. Parameters/style: shallow depth of field, foreground bokeh, crisp subject, cinematic, ultra realistic, high detail, natural film look, slight haze, no text overlays, no logos, no watermark. Negative promt: illustration, CGI, cartoon, plastic skin, overexposure, strong noise, dirty background, superfluous people, buildings, wires, large readable inscriptions on clothes, artifacts, deformity of arms/shoulders."
}
JSON
IM
图像
Photography nano-banana-2

A cinematic portrait of a young man standing still in the mi...

A cinematic portrait of a young man standing still in the middle of a busy crowd, sharp focus on the subject while people around him are heavily motion blurred, creating a dynamic sense of movement. The subject has a calm, serious expression, wearing a dark coat over a minimal outfit. Shot in a crowded urban environment, natural soft lighting, shallow depth of field, center composition. Long exposure effect with streaking motion blur surrounding the subject, ultra-realistic, 8K, high detail, cinematic color grading.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A cinematic portrait of a young man standing still in the middle of a busy crowd, sharp focus on the subject while people around him are heavily motion blurred, creating a dynamic sense of movement. The subject has a calm, serious expression, wearing a dark coat over a minimal outfit. Shot in a crowded urban environment, natural soft lighting, shallow depth of field, center composition. Long exposure effect with streaking motion blur surrounding the subject, ultra-realistic, 8K, high detail, cinematic color grading."
}
JSON
IM
图像
Photography nano-banana-2

unlimited nano banana pro, AI photo collage, vintage film lo...

unlimited nano banana pro, AI photo collage, vintage film look, black and white editorial, cinematic , analog photography aesthetic, collage, film grain texture, Ilford HP5 style, moody portrait lighting, street photography vibe, retro zine layout, AI photography workflow, prompt sharing, generative art prompts, editorial collage design

查看 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": "unlimited nano banana pro, AI photo collage, vintage film look, black and white editorial, cinematic , analog photography aesthetic, collage, film grain texture, Ilford HP5 style, moody portrait lighting, street photography vibe, retro zine layout, AI photography workflow, prompt sharing, generative art prompts, editorial collage design"
}
JSON
IM
图像
Photography nano-banana-2

Create a highly cinematic, realistic photo of a person using...

Create a highly cinematic, realistic photo of a person using the face from the uploaded image. The person is standing alone under a single streetlight at night in heavy rain. The rain is pouring down dramatically, with visible droplets and water splashing on the ground. The streetlight casts a strong golden glow, lighting only the person while the surroundings fade into darkness. The ground is wet and reflective, creating beautiful reflections of the light. The camera angle is slightly low and centered, giving a powerful, movie-like look. The person is wearing a dark stylish outfit like a long coat or jacket, with water dripping from clothes and hair. Their expression is calm and intense. Cinematic lighting, dramatic contrast, volumetric light rays through rain, ultra realistic photography, Hollywood movie scene, high detail, atmospheric depth.

查看 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 highly cinematic, realistic photo of a person using the face from the uploaded image. The person is standing alone under a single streetlight at night in heavy rain. The rain is pouring down dramatically, with visible droplets and water splashing on the ground. The streetlight casts a strong golden glow, lighting only the person while the surroundings fade into darkness. The ground is wet and reflective, creating beautiful reflections of the light. The camera angle is slightly low and centered, giving a powerful, movie-like look. The person is wearing a dark stylish outfit like a long coat or jacket, with water dripping from clothes and hair. Their expression is calm and intense. Cinematic lighting, dramatic contrast, volumetric light rays through rain, ultra realistic photography, Hollywood movie scene, high detail, atmospheric depth."
}
JSON
IM
图像
Photography nano-banana-2

High-quality realistic commercial shot of a cocoa plantation...

High-quality realistic commercial shot of a cocoa plantation in landscape orientation, cocoa tree as background, one cocoa pod partially split open on the branch in the center, fresh cocoa beans clearly visible inside with fibrous natural texture, slight irregular opening, surrounding pods and leaves softly out of focus, rich earthy brown and green tones, warm natural daylight with soft directional highlights, shallow depth of field, premium agricultural realism, no text, no people, no branding.

查看 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-quality realistic commercial shot of a cocoa plantation in landscape orientation, cocoa tree as background, one cocoa pod partially split open on the branch in the center, fresh cocoa beans clearly visible inside with fibrous natural texture, slight irregular opening, surrounding pods and leaves softly out of focus, rich earthy brown and green tones, warm natural daylight with soft directional highlights, shallow depth of field, premium agricultural realism, no text, no people, no branding."
}
JSON
IM
图像
Photography nano-banana-2

A surreal, high-concept masterpiece featuring “uploaded face...

A surreal, high-concept masterpiece featuring “uploaded face as reference” seated casually on the edge of a colossal, floating smartphone suspended high above a snow-capped mountain range. The subject is dressed in a monochromatic cyan ensemble, wearing a fitted mini dress, a plush faux-fur jacket, and knee-high suede boots, while holding a large cluster of matching light-blue helium balloons. The giant smartphone, resembling a high-end device with a triple-lens camera array and metallic silver edges, floats horizontally, displaying realistic charging ports and speaker grills. Bright, crisp daylight casts sharp shadows on the phone’s surface, highlighting the texture of the fur and the sleek glass. The background is a breathtaking aerial vista of jagged, snowy alpine peaks under a clear blue sky, rendered in 8K resolution with hyper-realistic textures, deep depth of field, and a commercial photography aesthetic.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A surreal, high-concept masterpiece featuring “uploaded face as reference” seated casually on the edge of a colossal, floating smartphone suspended high above a snow-capped mountain range. The subject is dressed in a monochromatic cyan ensemble, wearing a fitted mini dress, a plush faux-fur jacket, and knee-high suede boots, while holding a large cluster of matching light-blue helium balloons. The giant smartphone, resembling a high-end device with a triple-lens camera array and metallic silver edges, floats horizontally, displaying realistic charging ports and speaker grills. Bright, crisp daylight casts sharp shadows on the phone’s surface, highlighting the texture of the fur and the sleek glass. The background is a breathtaking aerial vista of jagged, snowy alpine peaks under a clear blue sky, rendered in 8K resolution with hyper-realistic textures, deep depth of field, and a commercial photography aesthetic."
}
JSON
IM
图像
Photography nano-banana-2

A cinematic portrait of an Asian woman standing in a quiet f...

A cinematic portrait of an Asian woman standing in a quiet forest, captured in a spontaneous moment as she turns her head slightly back toward the camera. Soft sunlight filters through tall trees, creating dramatic patches of light and shadow across her face and body. A distinct vertical light leak streak cuts through the frame, adding a striking analog imperfection. Her hair moves gently in the breeze, with loose strands catching the light, adding natural motion and softness. She wears a simple light-colored blouse layered with dark suspenders, creating a subtle contrast against the deep forest tones. Her expression is calm, slightly distant, and introspective, with her eyes softly meeting the camera. The background is filled with blurred tree trunks and glowing bokeh highlights, creating depth and atmosphere. The color grading features rich teal shadows and warm orange highlights, giving a cinematic teal-and-orange contrast. The image has a strong analog film aesthetic with visible grain, soft haze, slight blur, and light distortion. Imperfect framing, natural light flare, and film burn elements enhance the nostalgic 35mm film look. Cinematic film still, dreamy and moody atmosphere, poetic forest setting, high detail, hd 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 cinematic portrait of an Asian woman standing in a quiet forest, captured in a spontaneous moment as she turns her head slightly back toward the camera. Soft sunlight filters through tall trees, creating dramatic patches of light and shadow across her face and body. A distinct vertical light leak streak cuts through the frame, adding a striking analog imperfection. Her hair moves gently in the breeze, with loose strands catching the light, adding natural motion and softness. She wears a simple light-colored blouse layered with dark suspenders, creating a subtle contrast against the deep forest tones. Her expression is calm, slightly distant, and introspective, with her eyes softly meeting the camera. The background is filled with blurred tree trunks and glowing bokeh highlights, creating depth and atmosphere. The color grading features rich teal shadows and warm orange highlights, giving a cinematic teal-and-orange contrast. The image has a strong analog film aesthetic with visible grain, soft haze, slight blur, and light distortion. Imperfect framing, natural light flare, and film burn elements enhance the nostalgic 35mm film look. Cinematic film still, dreamy and moody atmosphere, poetic forest setting, high detail, hd quality."
}
JSON
IM
图像
Photography nano-banana-2

Role: high-end fashion editorial photographer shooting a lux...

Role: high-end fashion editorial photographer shooting a luxury minimalist studio campaign, ultra-realistic photography Subject: use the attached face photo as the exact facial identity (100% identity preservation, anatomical precision, original proportions, natural skin texture, no AI beautification, no facial reshaping), seamlessly replace the model's face from the reference image with the attached face, perfect alignment of jawline, cheekbones, eye spacing, nose structure, skin tone matching and lighting consistency, no visible blending artifacts Body Adjustment: slightly slimmer silhouette, more refined waistline, subtly leaner arms and thighs, elegant elongated body proportions, natural anatomy preserved (no distortion), realistic bone structure and muscle definition Pose & Composition (match reference exactly): deep squat pose, body in full side profile, torso leaning slightly forward, one arm wrapped across chest holding opposite shoulder, other arm extended forward holding a single white lily, head lifted slightly upward, lips relaxed (natural neutral expression, no pursed lips, no blowing expression), elegant elongated neck posture, full body visible within frame, minimalistic light grey seamless studio background, soft diagonal shadow on background and floor Outfit (exact replication): cream/off-white fitted long-sleeve dress, asymmetrical off-shoulder neckline, exposed upper back and shoulders, soft stretch fabric tightly fitted to body, natural fabric tension and realistic fold compression at knees and waist, floor-length hem, no necklace, delicate drop earrings, clean natural manicure Hair (match styling exactly): low textured bun, soft loose face-framing tendrils, elegant romantic styling, natural volume, subtle shine Makeup (exact replication): neutral glam makeup, matte skin with soft highlight, subtle contour, defined brows, soft brown smoky eye, nude lips (relaxed natural shape, not puckered), refined editorial finish Props (must match exactly): single white lily held in extended hand, additional lilies placed on floor behind, realistic botanical detail, accurate leaf texture, natural stem structure, correct shadow interaction with floor Lighting & Realism: professional studio lighting, soft directional key light from left side, smooth shadow gradient, high dynamic range, ultra high resolution, sharp focus on eyes, realistic skin pores, accurate fabric physics with natural stretch and compression, realistic floor reflections, no plastic skin, no oversmoothing Camera: full-frame camera, 85mm lens, shallow depth of field, luxury fashion editorial color grading, clean neutral tones Negative prompt: low resolution, distorted face, incorrect anatomy, exaggerated thinness, unhealthy body proportions, asymmetry errors, extra limbs, warped hands, artificial skin texture, over-smoothed skin, wrong dress style, different color dress, added jewelry, incorrect flowers, wrong pose, different background, harsh lighting, blurry eyes, visible face merge artifacts, AI look, cartoonish rendering, oversaturated colors.

查看 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": "Role: high-end fashion editorial photographer shooting a luxury minimalist studio campaign, ultra-realistic photography Subject: use the attached face photo as the exact facial identity (100% identity preservation, anatomical precision, original proportions, natural skin texture, no AI beautification, no facial reshaping), seamlessly replace the model's face from the reference image with the attached face, perfect alignment of jawline, cheekbones, eye spacing, nose structure, skin tone matching and lighting consistency, no visible blending artifacts Body Adjustment: slightly slimmer silhouette, more refined waistline, subtly leaner arms and thighs, elegant elongated body proportions, natural anatomy preserved (no distortion), realistic bone structure and muscle definition Pose & Composition (match reference exactly): deep squat pose, body in full side profile, torso leaning slightly forward, one arm wrapped across chest holding opposite shoulder, other arm extended forward holding a single white lily, head lifted slightly upward, lips relaxed (natural neutral expression, no pursed lips, no blowing expression), elegant elongated neck posture, full body visible within frame, minimalistic light grey seamless studio background, soft diagonal shadow on background and floor Outfit (exact replication): cream/off-white fitted long-sleeve dress, asymmetrical off-shoulder neckline, exposed upper back and shoulders, soft stretch fabric tightly fitted to body, natural fabric tension and realistic fold compression at knees and waist, floor-length hem, no necklace, delicate drop earrings, clean natural manicure Hair (match styling exactly): low textured bun, soft loose face-framing tendrils, elegant romantic styling, natural volume, subtle shine Makeup (exact replication): neutral glam makeup, matte skin with soft highlight, subtle contour, defined brows, soft brown smoky eye, nude lips (relaxed natural shape, not puckered), refined editorial finish Props (must match exactly): single white lily held in extended hand, additional lilies placed on floor behind, realistic botanical detail, accurate leaf texture, natural stem structure, correct shadow interaction with floor Lighting & Realism: professional studio lighting, soft directional key light from left side, smooth shadow gradient, high dynamic range, ultra high resolution, sharp focus on eyes, realistic skin pores, accurate fabric physics with natural stretch and compression, realistic floor reflections, no plastic skin, no oversmoothing Camera: full-frame camera, 85mm lens, shallow depth of field, luxury fashion editorial color grading, clean neutral tones Negative prompt: low resolution, distorted face, incorrect anatomy, exaggerated thinness, unhealthy body proportions, asymmetry errors, extra limbs, warped hands, artificial skin texture, over-smoothed skin, wrong dress style, different color dress, added jewelry, incorrect flowers, wrong pose, different background, harsh lighting, blurry eyes, visible face merge artifacts, AI look, cartoonish rendering, oversaturated colors."
}
JSON
IM
图像
Photography nano-banana-2

A minimalist studio photograph fashion ad. At the top center...

A minimalist studio photograph fashion ad. At the top center, the bold sans-serif text "[TEXT]" is positioned above the smaller sans-serif text "[TEXT]", which is above the italic script text "[TEXT]". Below the text, a man in a black suit, black t-shirt, and polished black dress shoes sits in profile, facing left. He is seated in a modern chair with a black leather seat and backrest suspended on a tubular black metal frame. His right leg is extended, and he holds a pair of glasses in his right hand near his mouth. The background and floor are a seamless, stark white studio space with soft, diffused lighting that casts grounded shadows beneath the man and chair.

查看 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 minimalist studio photograph fashion ad. At the top center, the bold sans-serif text \"[TEXT]\" is positioned above the smaller sans-serif text \"[TEXT]\", which is above the italic script text \"[TEXT]\". Below the text, a man in a black suit, black t-shirt, and polished black dress shoes sits in profile, facing left. He is seated in a modern chair with a black leather seat and backrest suspended on a tubular black metal frame. His right leg is extended, and he holds a pair of glasses in his right hand near his mouth. The background and floor are a seamless, stark white studio space with soft, diffused lighting that casts grounded shadows beneath the man and chair."
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic full-body studio fashion portrait of a styli...

Ultra-realistic full-body studio fashion portrait of a stylish young man standing confidently, looking slightly upward. He wears a black puffer jacket, white t-shirt, loose white cargo pants, and chunky white sneakers. Accessories include round clear glasses and a black knit beanie. Hands in pockets, relaxed confident posture. Clean seamless solid red studio background. Soft professional studio lighting, sharp clothing texture, editorial fashion photography.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic full-body studio fashion portrait of a stylish young man standing confidently, looking slightly upward. He wears a black puffer jacket, white t-shirt, loose white cargo pants, and chunky white sneakers. Accessories include round clear glasses and a black knit beanie. Hands in pockets, relaxed confident posture. Clean seamless solid red studio background. Soft professional studio lighting, sharp clothing texture, editorial fashion photography."
}
JSON
IM
图像
Photography nano-banana-2

Shirtless male subject, hyper-realistic skin texture, deep t...

Shirtless male subject, hyper-realistic skin texture, deep tan, 1970s Hollywood aesthetic, vintage gold-rimmed aviator sunglasses with amber tint, unlit cigarette held in mouth, masculine ruggedness, medium close-up, low-angle perspective, background of blurred palm trees and hazy Los Angeles hillside, high-key natural sunlight, warm tungsten glow, golden hour color grading, shot on 35mm film, Arriflex 35 BL, 50mm T1.3, heavy film grain, authentic Kodak Portra 400 stock, slight lens flare, sun-bleached highlights, retro film-still style, directed by Quentin Tarantino

查看 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": "Shirtless male subject, hyper-realistic skin texture, deep tan, 1970s Hollywood aesthetic, vintage gold-rimmed aviator sunglasses with amber tint, unlit cigarette held in mouth, masculine ruggedness, medium close-up, low-angle perspective, background of blurred palm trees and hazy Los Angeles hillside, high-key natural sunlight, warm tungsten glow, golden hour color grading, shot on 35mm film, Arriflex 35 BL, 50mm T1.3, heavy film grain, authentic Kodak Portra 400 stock, slight lens flare, sun-bleached highlights, retro film-still style, directed by Quentin Tarantino"
}
JSON
IM
图像
Photography nano-banana-2

(Masterpiece, Best Quality, 8K UHD, RAW photo), photorealist...

(Masterpiece, Best Quality, 8K UHD, RAW photo), photorealistic portrait, the exact same beautiful Korean female k-pop idol every time, innocent baby face, straight eyebrows, big doe eyes with aegyosal, gradient glossy pink lips, light blush, messy long black wavy hair fanning out across the white pillow, sun-kissed highlights on select strands, Layer 2 : white string bikini top, tied at back of neck, Layer 5 white string bikini bottom with side bows, bare legs slightly bent at the knees, feet crossed in the air, lying on her stomach on a white bed, propped up on elbows, chin resting on hands, legs lazily crossed and kicked up behind her, shoulders relaxed and open, natural effortless sensual pose, maximum breathing space in composition, looking back over her shoulder at the camera, playful smile, eyes bright and inviting, expression: carefree, natural beauty, innocent allure, relaxed brow, slight head tilt, white bed with soft rumpled linen sheets, one white pillow beneath her elbows, sheer white curtains with morning light pouring through, large overexposed white background area on the right side, strong negative space for breathing room, dreamy hazy soft-focus atmosphere, golden morning sunlight from the right side through sheer curtains, warm light illuminating her face and upper body, soft shadows, high-key overall, dust motes floating in light beams, gentle hair backlight creating angelic glow, Canon R5, 50mm f/1.4, eye-level intimate POV, moderate depth of field, soft bokeh on background, sharp focus on eyes and face, airy, luminous, dreamy morning atmosphere, youthful sensuality, effortless beauty, ultra-detailed skin, realistic hair strands, fabric texture, 8K resolution, photorealistic, no artifacts, no watermark

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "(Masterpiece, Best Quality, 8K UHD, RAW photo), photorealistic portrait, the exact same beautiful Korean female k-pop idol every time, innocent baby face, straight eyebrows, big doe eyes with aegyosal, gradient glossy pink lips, light blush, messy long black wavy hair fanning out across the white pillow, sun-kissed highlights on select strands, Layer 2 : white string bikini top, tied at back of neck, Layer 5 white string bikini bottom with side bows, bare legs slightly bent at the knees, feet crossed in the air, lying on her stomach on a white bed, propped up on elbows, chin resting on hands, legs lazily crossed and kicked up behind her, shoulders relaxed and open, natural effortless sensual pose, maximum breathing space in composition, looking back over her shoulder at the camera, playful smile, eyes bright and inviting, expression: carefree, natural beauty, innocent allure, relaxed brow, slight head tilt, white bed with soft rumpled linen sheets, one white pillow beneath her elbows, sheer white curtains with morning light pouring through, large overexposed white background area on the right side, strong negative space for breathing room, dreamy hazy soft-focus atmosphere, golden morning sunlight from the right side through sheer curtains, warm light illuminating her face and upper body, soft shadows, high-key overall, dust motes floating in light beams, gentle hair backlight creating angelic glow, Canon R5, 50mm f/1.4, eye-level intimate POV, moderate depth of field, soft bokeh on background, sharp focus on eyes and face, airy, luminous, dreamy morning atmosphere, youthful sensuality, effortless beauty, ultra-detailed skin, realistic hair strands, fabric texture, 8K resolution, photorealistic, no artifacts, no watermark"
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt_details": { "subject": { "description"...

{ "prompt_details": { "subject": { "description": "Handsome male trekker, dark wavy hair (no cap), full beard, rugged appearance", "expression": "Relaxed, calm, enjoying the nature", "clothing": "Green check flannel shirt layered over a black T-shirt, black cargo trekking pants, blue hiking boots, wristwatch, neck gaiter" }, "environment": { "location": "Mountain campsite", "elements": "Pitched camping tent in background, lush green hills, rocky ground, perhaps a small campfire", "time_of_day": "Golden hour or soft afternoon light" }, "style": { "type": "Hyper-realistic outdoor photography", "quality": "8k resolution, cinematic lighting, sharp focus, detailed texture", "camera_angle": "Eye-level or slightly low angle" } }, "full_prompt_text": "A handsome male trekker sitting comfortably at a mountain campsite, no cap, showing dark wavy hair and a beard. He is wearing a green check shirt over a black t-shirt, black cargo pants, and blue hiking boots. A camping tent is visible in the background amidst lush green mountains. Soft natural lighting, realistic skin texture, cinematic outdoor adventure style, 8k resolution." }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"prompt_details\": { \"subject\": { \"description\": \"Handsome male trekker, dark wavy hair (no cap), full beard, rugged appearance\", \"expression\": \"Relaxed, calm, enjoying the nature\", \"clothing\": \"Green check flannel shirt layered over a black T-shirt, black cargo trekking pants, blue hiking boots, wristwatch, neck gaiter\" }, \"environment\": { \"location\": \"Mountain campsite\", \"elements\": \"Pitched camping tent in background, lush green hills, rocky ground, perhaps a small campfire\", \"time_of_day\": \"Golden hour or soft afternoon light\" }, \"style\": { \"type\": \"Hyper-realistic outdoor photography\", \"quality\": \"8k resolution, cinematic lighting, sharp focus, detailed texture\", \"camera_angle\": \"Eye-level or slightly low angle\" } }, \"full_prompt_text\": \"A handsome male trekker sitting comfortably at a mountain campsite, no cap, showing dark wavy hair and a beard. He is wearing a green check shirt over a black t-shirt, black cargo pants, and blue hiking boots. A camping tent is visible in the background amidst lush green mountains. Soft natural lighting, realistic skin texture, cinematic outdoor adventure style, 8k resolution.\" }"
}
JSON
IM
图像
Photography nano-banana-2

{ "task": "temporal_motion_echo_portrait_effect", "input":...

{ "task": "temporal_motion_echo_portrait_effect", "input": { "source_image": "USER_UPLOADED_IMAGE", "preserve_identity": true, "preserve_pose": true, "preserve_outfit": true, "preserve_composition": true }, "output": { "type": "single_image", "resolution": "ultra_high_resolution", "detail_preservation": "high", "ai_artifacts": "none" }, "effect_design": { "core_effect": "motion_echo_time_displacement", "echo_direction": "horizontal", "echo_behavior": { "center_subject": "sharp_and_fully_in_focus", "echo_layers": "multiple_time_offset_duplicates", "blur_progression": "increasing_blur_with_distance_from_center", "opacity_falloff": "soft_fade_outward", "alignment": "perfectly_registered_with_original_subject" }, "motion_style": { "type": "temporal_smear", "speed_feel": "slow_motion_time_stretch", "distortion": "none" } }, "visual_style": { "background": { "treatment": "smooth_minimal_gradient", "blur": "subtle", "color_continuity": "match_original_background" }, "lighting": { "preserve_original_lighting": true, "contrast": "controlled", "highlights": "soft", "shadows": "clean" }, "color": { "grade": "cinematic_muted", "saturation": "natural", "skin_tones": "accurate" } }, "restrictions": { "no_new_elements": true, "no_pose_change": true, "no_face_warping": true, "no_outfit_modification": true, "no_background_replacement": true } }

查看 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": "{ \"task\": \"temporal_motion_echo_portrait_effect\", \"input\": { \"source_image\": \"USER_UPLOADED_IMAGE\", \"preserve_identity\": true, \"preserve_pose\": true, \"preserve_outfit\": true, \"preserve_composition\": true }, \"output\": { \"type\": \"single_image\", \"resolution\": \"ultra_high_resolution\", \"detail_preservation\": \"high\", \"ai_artifacts\": \"none\" }, \"effect_design\": { \"core_effect\": \"motion_echo_time_displacement\", \"echo_direction\": \"horizontal\", \"echo_behavior\": { \"center_subject\": \"sharp_and_fully_in_focus\", \"echo_layers\": \"multiple_time_offset_duplicates\", \"blur_progression\": \"increasing_blur_with_distance_from_center\", \"opacity_falloff\": \"soft_fade_outward\", \"alignment\": \"perfectly_registered_with_original_subject\" }, \"motion_style\": { \"type\": \"temporal_smear\", \"speed_feel\": \"slow_motion_time_stretch\", \"distortion\": \"none\" } }, \"visual_style\": { \"background\": { \"treatment\": \"smooth_minimal_gradient\", \"blur\": \"subtle\", \"color_continuity\": \"match_original_background\" }, \"lighting\": { \"preserve_original_lighting\": true, \"contrast\": \"controlled\", \"highlights\": \"soft\", \"shadows\": \"clean\" }, \"color\": { \"grade\": \"cinematic_muted\", \"saturation\": \"natural\", \"skin_tones\": \"accurate\" } }, \"restrictions\": { \"no_new_elements\": true, \"no_pose_change\": true, \"no_face_warping\": true, \"no_outfit_modification\": true, \"no_background_replacement\": true } }"
}
JSON
IM
图像
Photography nano-banana-2

Cinematic realistic street scene, beautiful young woman with...

Cinematic realistic street scene, beautiful young woman with short wavy bob haircut, natural hourglass body shape with correct human proportions, sitting relaxed on a wooden bench in front of a small restaurant, graffiti wall behind her, late afternoon side sunlight with strong shadows. Casual urban outfit: inner t-shirt with a light open outer jacket, relaxed denim pants, sneakers. Soft cinematic color grading, shallow depth of field, ultra-detailed, photorealistic

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Cinematic realistic street scene, beautiful young woman with short wavy bob haircut, natural hourglass body shape with correct human proportions, sitting relaxed on a wooden bench in front of a small restaurant, graffiti wall behind her, late afternoon side sunlight with strong shadows. Casual urban outfit: inner t-shirt with a light open outer jacket, relaxed denim pants, sneakers. Soft cinematic color grading, shallow depth of field, ultra-detailed, photorealistic"
}
JSON
IM
图像
Photography nano-banana-2

{ "Objective": "Create a realistic candid street photograp...

{ "Objective": "Create a realistic candid street photograph with cinematic documentary realism", "PersonaDetails": { "Subject": { "Type": "Young woman", "Pose": "Standing at a city crosswalk, captured mid-turn", "Gaze": "Looking directly toward the camera", "Expression": "Calm, introspective, slightly distant", "Hair": "Loosely tied back with soft strands framing the face", "Wardrobe": { "Outerwear": "Beige trench coat", "Accessories": "Thin gold chain shoulder bag" } } }, "SceneDescription": { "Location": "Busy urban crosswalk", "BackgroundElements": [ "Pedestrians in motion", "Yellow taxis", "Tall city buildings" ], "Motion": "Subtle background movement suggesting city life" }, "Composition": { "Framing": "Waist-up candid framing", "Moment": "Unposed, spontaneous mid-turn capture", "DepthOfField": "Shallow depth of field", "Focus": "Ultra-sharp subject with background motion blur" }, "LightingAndColor": { "Lighting": "Natural overcast daylight", "ColorPalette": "Muted neutral tones", "Bokeh": "Soft cinematic bokeh" }, "PhotographyStyle": { "Genre": "Street photography", "Aesthetic": "Documentary-style realism", "LensLook": "85mm lens perspective", "DetailLevel": "High detail, photorealistic textures" }, "Mood": { "Tone": "Quiet, reflective, urban", "Atmosphere": "Authentic, lived-in city moment" }, "ArtDirection": { "Style": "Photorealistic", "RealismLevel": "True-to-life, candid capture", "Processing": "Minimal, natural post-processing" }, "NegativePrompt": [ "posed look", "fashion editorial", "studio lighting", "oversaturated colors", "heavy retouching", "cartoon", "anime", "blurry subject" ], "ResponseFormat": { "Type": "Single image", "Orientation": "Portrait", "AspectRatio": "2:3" } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"Objective\": \"Create a realistic candid street photograph with cinematic documentary realism\", \"PersonaDetails\": { \"Subject\": { \"Type\": \"Young woman\", \"Pose\": \"Standing at a city crosswalk, captured mid-turn\", \"Gaze\": \"Looking directly toward the camera\", \"Expression\": \"Calm, introspective, slightly distant\", \"Hair\": \"Loosely tied back with soft strands framing the face\", \"Wardrobe\": { \"Outerwear\": \"Beige trench coat\", \"Accessories\": \"Thin gold chain shoulder bag\" } } }, \"SceneDescription\": { \"Location\": \"Busy urban crosswalk\", \"BackgroundElements\": [ \"Pedestrians in motion\", \"Yellow taxis\", \"Tall city buildings\" ], \"Motion\": \"Subtle background movement suggesting city life\" }, \"Composition\": { \"Framing\": \"Waist-up candid framing\", \"Moment\": \"Unposed, spontaneous mid-turn capture\", \"DepthOfField\": \"Shallow depth of field\", \"Focus\": \"Ultra-sharp subject with background motion blur\" }, \"LightingAndColor\": { \"Lighting\": \"Natural overcast daylight\", \"ColorPalette\": \"Muted neutral tones\", \"Bokeh\": \"Soft cinematic bokeh\" }, \"PhotographyStyle\": { \"Genre\": \"Street photography\", \"Aesthetic\": \"Documentary-style realism\", \"LensLook\": \"85mm lens perspective\", \"DetailLevel\": \"High detail, photorealistic textures\" }, \"Mood\": { \"Tone\": \"Quiet, reflective, urban\", \"Atmosphere\": \"Authentic, lived-in city moment\" }, \"ArtDirection\": { \"Style\": \"Photorealistic\", \"RealismLevel\": \"True-to-life, candid capture\", \"Processing\": \"Minimal, natural post-processing\" }, \"NegativePrompt\": [ \"posed look\", \"fashion editorial\", \"studio lighting\", \"oversaturated colors\", \"heavy retouching\", \"cartoon\", \"anime\", \"blurry subject\" ], \"ResponseFormat\": { \"Type\": \"Single image\", \"Orientation\": \"Portrait\", \"AspectRatio\": \"2:3\" } }"
}
JSON
IM
图像
Photography nano-banana-2

Use the reference photo to create a realistic female charact...

Use the reference photo to create a realistic female character, soft smile, with a fun and natural expression, without changing the facial structure or features, keeping it as realistic as possible. Hair: Same as in the reference photo, with natural movement and shine. Outfit: Modern, stylish casual clothing. Scene: Set in a cute pink office, showing her being creative. Around her, include mini chibi versions of herself doing funny actions (drinking coffee from a cup, pulling her hair, making silly faces, lying on her stomach on the desk drawing in a notebook). Add doodles and emojis, and include a matching phrase. Lighting & Format: Natural light, aspect ratio 1080:1350 (4:5).

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Use the reference photo to create a realistic female character, soft smile, with a fun and natural expression, without changing the facial structure or features, keeping it as realistic as possible. Hair: Same as in the reference photo, with natural movement and shine. Outfit: Modern, stylish casual clothing. Scene: Set in a cute pink office, showing her being creative. Around her, include mini chibi versions of herself doing funny actions (drinking coffee from a cup, pulling her hair, making silly faces, lying on her stomach on the desk drawing in a notebook). Add doodles and emojis, and include a matching phrase. Lighting & Format: Natural light, aspect ratio 1080:1350 (4:5)."
}
JSON
IM
图像
Photography nano-banana-2

A cinematic close-up profile of a weathered women with a sal...

A cinematic close-up profile of a weathered women with a salt-and-pepper face, wearing brass-rimmed aviator goggles pushed up. Low-key lighting with a heavy amber glow; thick molten copper droplets and incandescent heat waves shimmering in the air. Dark, soot-stained background layered with vintage patent blueprints, floating golden gear-ratio calculations, and radial HUD overlays. High contrast, grit-textured skin, hyper-realistic sweat beads, heavy industrial atmosphere, cinematic sepia grading, 8K, epic digital concept art..

查看 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 close-up profile of a weathered women with a salt-and-pepper face, wearing brass-rimmed aviator goggles pushed up. Low-key lighting with a heavy amber glow; thick molten copper droplets and incandescent heat waves shimmering in the air. Dark, soot-stained background layered with vintage patent blueprints, floating golden gear-ratio calculations, and radial HUD overlays. High contrast, grit-textured skin, hyper-realistic sweat beads, heavy industrial atmosphere, cinematic sepia grading, 8K, epic digital concept art.."
}
JSON
IM
图像
Photography nano-banana-2

A cinematic night-time portrait of a young woman standing ou...

A cinematic night-time portrait of a young woman standing outdoors, softly lit by ambient city lights. She wears a dark elegant coat with a thick wool scarf wrapped around her neck. Loose strands of hair gently blown by the wind frame her face. Moody teal-green color grading, soft cinematic lighting, shallow depth of field, creamy bokeh city lights glowing in the background. Calm, introspective expression, natural skin texture, subtle makeup, film-like softness, atmospheric and emotional tone. Shot on a fast lens (85mm f/1.4 look), ultra-realistic photography, high detail, low noise, 8K 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 cinematic night-time portrait of a young woman standing outdoors, softly lit by ambient city lights. She wears a dark elegant coat with a thick wool scarf wrapped around her neck. Loose strands of hair gently blown by the wind frame her face. Moody teal-green color grading, soft cinematic lighting, shallow depth of field, creamy bokeh city lights glowing in the background. Calm, introspective expression, natural skin texture, subtle makeup, film-like softness, atmospheric and emotional tone. Shot on a fast lens (85mm f/1.4 look), ultra-realistic photography, high detail, low noise, 8K quality."
}
JSON
IM
图像
Photography nano-banana-2

{ "style": "cinematic realism, surreal moment frozen in time...

{ "style": "cinematic realism, surreal moment frozen in time", "scene": "a suburban street in front of an old slightly worn house with muted yellow walls, white window frames, and a red wooden fence, overcast daylight with soft diffused lighting", "subject": { "type": "young woman", "appearance": "blonde hair mid-motion, slightly messy, expressive shocked face with wide eyes and open mouth", "outfit": "mustard yellow jumpsuit, white socks with stripes, white sneakers", "pose": "falling backward in mid-air, body tilted diagonally, one leg raised high, arms flailing for balance", "emotion": "surprised, chaotic, comedic panic" }, "action": "a grocery bag has exploded mid-air, items floating above her as if gravity paused for a split second", "objects": { "floating_items": [ "brown paper grocery bag", "kale leaves", "cherry tomatoes", "oranges", "egg carton", "baguette bread", "milk carton" ], "ground_element": "a banana peel on the sidewalk directly below her, implying the cause of the fall" }, "environment": { "foreground": "concrete sidewalk with subtle cracks and dirt", "midground": "red wooden fence", "background": "vintage suburban house with slightly weathered texture, curtains visible in windows, greenery on the sides" }, "camera": { "angle": "low angle, slightly tilted upward to enhance the floating effect", "lens": "35mm cinematic lens", "focus": "sharp focus on subject, slight depth of field blur on background", "framing": "subject centered with floating objects forming a loose arc above" }, "lighting": { "type": "natural overcast daylight", "quality": "soft shadows, diffused light, realistic skin tones", "direction": "top-front lighting" }, "motion": { "effect": "frozen action, subtle motion blur on hair and some objects for realism", "physics": "objects distributed unevenly with slight randomness, realistic gravity interruption feel" }, "color_palette": "muted cinematic tones with mustard yellow as the dominant accent, soft greens and reds for contrast", "mood": "quirky, unexpected, slightly absurd but grounded in realism", "details": { "textures": "visible fabric folds, realistic food textures, worn paint on house, concrete grain", "imperfections": "slight asymmetry in object placement, natural facial tension, non-perfect alignment" }, "quality": { "resolution": "high detail, 4k", "rendering": "photorealistic, minimal AI artifacts, natural skin texture (no plastic 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": "{ \"style\": \"cinematic realism, surreal moment frozen in time\", \"scene\": \"a suburban street in front of an old slightly worn house with muted yellow walls, white window frames, and a red wooden fence, overcast daylight with soft diffused lighting\", \"subject\": { \"type\": \"young woman\", \"appearance\": \"blonde hair mid-motion, slightly messy, expressive shocked face with wide eyes and open mouth\", \"outfit\": \"mustard yellow jumpsuit, white socks with stripes, white sneakers\", \"pose\": \"falling backward in mid-air, body tilted diagonally, one leg raised high, arms flailing for balance\", \"emotion\": \"surprised, chaotic, comedic panic\" }, \"action\": \"a grocery bag has exploded mid-air, items floating above her as if gravity paused for a split second\", \"objects\": { \"floating_items\": [ \"brown paper grocery bag\", \"kale leaves\", \"cherry tomatoes\", \"oranges\", \"egg carton\", \"baguette bread\", \"milk carton\" ], \"ground_element\": \"a banana peel on the sidewalk directly below her, implying the cause of the fall\" }, \"environment\": { \"foreground\": \"concrete sidewalk with subtle cracks and dirt\", \"midground\": \"red wooden fence\", \"background\": \"vintage suburban house with slightly weathered texture, curtains visible in windows, greenery on the sides\" }, \"camera\": { \"angle\": \"low angle, slightly tilted upward to enhance the floating effect\", \"lens\": \"35mm cinematic lens\", \"focus\": \"sharp focus on subject, slight depth of field blur on background\", \"framing\": \"subject centered with floating objects forming a loose arc above\" }, \"lighting\": { \"type\": \"natural overcast daylight\", \"quality\": \"soft shadows, diffused light, realistic skin tones\", \"direction\": \"top-front lighting\" }, \"motion\": { \"effect\": \"frozen action, subtle motion blur on hair and some objects for realism\", \"physics\": \"objects distributed unevenly with slight randomness, realistic gravity interruption feel\" }, \"color_palette\": \"muted cinematic tones with mustard yellow as the dominant accent, soft greens and reds for contrast\", \"mood\": \"quirky, unexpected, slightly absurd but grounded in realism\", \"details\": { \"textures\": \"visible fabric folds, realistic food textures, worn paint on house, concrete grain\", \"imperfections\": \"slight asymmetry in object placement, natural facial tension, non-perfect alignment\" }, \"quality\": { \"resolution\": \"high detail, 4k\", \"rendering\": \"photorealistic, minimal AI artifacts, natural skin texture (no plastic look)\" } }"
}
JSON
IM
图像
Photography nano-banana-2

A dramatic double exposure portrait of a professional footba...

A dramatic double exposure portrait of a professional football player, large side-profile face in black and white with intense expression, combined with a smaller full-body action shot of the same player running in a red jersey, dynamic motion, dust and smoke particles blending the layers, high contrast lighting, textured grain, minimal clean background, editorial sports poster style, ultra-detailed, sharp focus, cinematic composition, 8K resolution.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A dramatic double exposure portrait of a professional football player, large side-profile face in black and white with intense expression, combined with a smaller full-body action shot of the same player running in a red jersey, dynamic motion, dust and smoke particles blending the layers, high contrast lighting, textured grain, minimal clean background, editorial sports poster style, ultra-detailed, sharp focus, cinematic composition, 8K resolution."
}
JSON
IM
图像
Photography nano-banana-2

A cinematic side-profile portrait of a young woman standing...

A cinematic side-profile portrait of a young woman standing in a grocery store aisle, carefully looking at a shelf filled with wine bottles. She has her hair tied in a loose messy bun and wears a simple dark outfit. The environment is softly lit with warm indoor lighting, creating a cozy, realistic atmosphere. The shelves are filled with neatly arranged bottles, while other shoppers appear blurred in the background. Shallow depth of field with strong foreground and background blur, creamy bokeh lights, natural skin tones, documentary-style photography, candid moment, 50mm lens, f/1.8, ultra-realistic detail, cinematic color grading, 8K.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A cinematic side-profile portrait of a young woman standing in a grocery store aisle, carefully looking at a shelf filled with wine bottles. She has her hair tied in a loose messy bun and wears a simple dark outfit. The environment is softly lit with warm indoor lighting, creating a cozy, realistic atmosphere. The shelves are filled with neatly arranged bottles, while other shoppers appear blurred in the background. Shallow depth of field with strong foreground and background blur, creamy bokeh lights, natural skin tones, documentary-style photography, candid moment, 50mm lens, f/1.8, ultra-realistic detail, cinematic color grading, 8K."
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。