模型 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
图像
Product & Brand nano-banana-2

[BRAND NAME]. Act as a Creative Director and Brand Strategis...

[BRAND NAME]. Act as a Creative Director and Brand Strategist. PHASE 1: CONCEPT & COMPOSITION. Create a multi-panel fashion lookbook collage (grid layout) on a clean off-white background. - Main Shot: A full-body editorial pose of a model wearing a signature [BRAND NAME] piece. - Detail Shots: 3-4 smaller rectangular frames showing macro crops of fabric, hardware, and stitching. - Autonomously determine the garment type based on the brand's current hype items. PHASE 2: VISUAL STYLE & TEXTURE. "High-End Lo-fi" aesthetic. Intense film grain, analog noise, and scanline artifacts. Heavy, premium clothing textures: faded vintage washes, distressed edges, and high-quality "cracked" screen prints. Muted, moody color palette with brand-specific accents. PHASE 3: DYNAMIC TYPOGRAPHY & LOGIC. Autonomously analyze the [BRAND NAME] heritage and core identity to generate unique typography. - Content: Instead of generic "Drop" labels, generate text based on the brand’s DNA: - Style: Match the font to the brand's era (e.g., brutalist sans-serif for modern labels, elegant serif for luxury house heritage). Integrate the [BRAND NAME] logo with a distressed, "Xerox-copied" texture. TECH SPECS: 35mm film look (Kodak Portra 400), f/5.6 for raw sharpness, high ISO grain. High-contrast editorial flash, deep shadows. Octane render quality with an analog scan soul.

查看 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": "[BRAND NAME]. Act as a Creative Director and Brand Strategist. PHASE 1: CONCEPT & COMPOSITION. Create a multi-panel fashion lookbook collage (grid layout) on a clean off-white background. - Main Shot: A full-body editorial pose of a model wearing a signature [BRAND NAME] piece. - Detail Shots: 3-4 smaller rectangular frames showing macro crops of fabric, hardware, and stitching. - Autonomously determine the garment type based on the brand's current hype items. PHASE 2: VISUAL STYLE & TEXTURE. \"High-End Lo-fi\" aesthetic. Intense film grain, analog noise, and scanline artifacts. Heavy, premium clothing textures: faded vintage washes, distressed edges, and high-quality \"cracked\" screen prints. Muted, moody color palette with brand-specific accents. PHASE 3: DYNAMIC TYPOGRAPHY & LOGIC. Autonomously analyze the [BRAND NAME] heritage and core identity to generate unique typography. - Content: Instead of generic \"Drop\" labels, generate text based on the brand’s DNA: - Style: Match the font to the brand's era (e.g., brutalist sans-serif for modern labels, elegant serif for luxury house heritage). Integrate the [BRAND NAME] logo with a distressed, \"Xerox-copied\" texture. TECH SPECS: 35mm film look (Kodak Portra 400), f/5.6 for raw sharpness, high ISO grain. High-contrast editorial flash, deep shadows. Octane render quality with an analog scan soul."
}
JSON
IM
图像
Poster Design nano-banana-2

Create a digital modern maximalism style sports collage of [...

Create a digital modern maximalism style sports collage of [TEAm Name] [Player name] visuals with grainy textures, abstract geometric shapes, dynamic grid layout, minimal background, contemporary editorial composition, inspired by [BRAND NAME ex Nike...] campaigns and modern sports graphic design, strong visual rhythm, bold and emotional atmosphere. Post-process film grain, and specially cinematic color-graded tones for serious intensity.

查看 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 digital modern maximalism style sports collage of [TEAm Name] [Player name] visuals with grainy textures, abstract geometric shapes, dynamic grid layout, minimal background, contemporary editorial composition, inspired by [BRAND NAME ex Nike...] campaigns and modern sports graphic design, strong visual rhythm, bold and emotional atmosphere. Post-process film grain, and specially cinematic color-graded tones for serious intensity."
}
JSON
IM
图像
Food & Drink nano-banana-2

[DISH] captured at the exact millisecond of a dramatic liqui...

[DISH] captured at the exact millisecond of a dramatic liquid explosion, high-speed photography frozen in time, every droplet suspended mid-air with razor precision. Hero [DISH] at center perfectly intact and hyperreal, surrounded by an orchestrated explosion of its own sauce, broth, or glaze erupting outward in every direction. Droplets catching dramatic single-source warm light like liquid diamonds. Each floating ingredient or droplet labeled with ultra-thin lines in clean uppercase: "[INGREDIENT] [descriptor]". Dish name in bold editorial typography: "[DISH NAME]". Subtitle: "[TAGLINE]". Pure [COLOR] background. Mood: Harold Edgerton high-speed photography meets Michelin-star food editorial. 4K, tack sharp every droplet, extraordinary and craveable. Check ALTs for ideas 👇 @AdobeFirefly

查看 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": "[DISH] captured at the exact millisecond of a dramatic liquid explosion, high-speed photography frozen in time, every droplet suspended mid-air with razor precision. Hero [DISH] at center perfectly intact and hyperreal, surrounded by an orchestrated explosion of its own sauce, broth, or glaze erupting outward in every direction. Droplets catching dramatic single-source warm light like liquid diamonds. Each floating ingredient or droplet labeled with ultra-thin lines in clean uppercase: \"[INGREDIENT] [descriptor]\". Dish name in bold editorial typography: \"[DISH NAME]\". Subtitle: \"[TAGLINE]\". Pure [COLOR] background. Mood: Harold Edgerton high-speed photography meets Michelin-star food editorial. 4K, tack sharp every droplet, extraordinary and craveable. Check ALTs for ideas 👇 @AdobeFirefly"
}
JSON
IM
图像
Product & Brand nano-banana-2

Industrial engineering-style infographic of an object (match...

Industrial engineering-style infographic of an object (match exactly the object from the uploaded photo reference). Ultra-precise technical rendering of the object placed at the center, with accurate proportions, textures, materials, and surface details identical to the reference photo. Surround the object with industrial–grade technical elements: • Blueprint-inspired dimension lines (length, width, height, radius, angle, tolerances). • Cross-section cutaway view revealing internal components with engineering hatching patterns. • Exploded-view assembly diagram showing bolts, brackets, joints, wiring, bearings, or internal mechanisms. • Material specification blocks (steel type, plastics, alloys, coatings, finishes). • Process flow arrows describing manufacturing steps (CNC, casting, welding, injection, stamping). • Load & stress indicator graphics with arrows, vector force diagrams, thermal flow, or torque direction. • Part numbering following industrial annotation style (Part A01, A02, etc). • Tech data panels like: weight, volume, tolerances, rated load, pressure, RPM, operating temperature. • QR-style data block or barcode element for extra industrial feel. Design style: • clean, structured, engineering-oriented layout • color palette of steel grey, dark navy, orange/yellow safety accents • background like a technical drafting sheet or industrial metal texture (subtle, not distracting) • sharp sans-serif typeface using actual engineering annotation style • shadows minimal, prioritizing clarity and precision Overall vibe: serius, presisi, manufaktur-grade, seperti poster teknik pabrik atau katalog industrial tooling. Aspect Ratio: 9:16

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Industrial engineering-style infographic of an object (match exactly the object from the uploaded photo reference). Ultra-precise technical rendering of the object placed at the center, with accurate proportions, textures, materials, and surface details identical to the reference photo. Surround the object with industrial–grade technical elements: • Blueprint-inspired dimension lines (length, width, height, radius, angle, tolerances). • Cross-section cutaway view revealing internal components with engineering hatching patterns. • Exploded-view assembly diagram showing bolts, brackets, joints, wiring, bearings, or internal mechanisms. • Material specification blocks (steel type, plastics, alloys, coatings, finishes). • Process flow arrows describing manufacturing steps (CNC, casting, welding, injection, stamping). • Load & stress indicator graphics with arrows, vector force diagrams, thermal flow, or torque direction. • Part numbering following industrial annotation style (Part A01, A02, etc). • Tech data panels like: weight, volume, tolerances, rated load, pressure, RPM, operating temperature. • QR-style data block or barcode element for extra industrial feel. Design style: • clean, structured, engineering-oriented layout • color palette of steel grey, dark navy, orange/yellow safety accents • background like a technical drafting sheet or industrial metal texture (subtle, not distracting) • sharp sans-serif typeface using actual engineering annotation style • shadows minimal, prioritizing clarity and precision Overall vibe: serius, presisi, manufaktur-grade, seperti poster teknik pabrik atau katalog industrial tooling. Aspect Ratio: 9:16"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic night cityscape inspired by Times...

Ultra-realistic cinematic night cityscape inspired by Times Square, New York. A wide-angle street-level view of a busy urban intersection at night with wet asphalt reflecting neon lights. Massive curved LED billboard on a corner building displaying a hyper-realistic gourmet burger advertisement, glowing vividly and dominating the scene. Surrounding skyscrapers covered with bright digital screens, brand signage, and colorful ads. Motion-blurred traffic trails from passing cars, subtle pedestrians near sidewalks, dramatic contrast between dark sky and illuminated buildings. Cyber-urban atmosphere, commercial advertising aesthetic, long-exposure photography look, sharp architectural details, realistic lighting and reflections, ultra-high resolution, 8K photorealism, cinematic depth, no text overlay.

查看 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 night cityscape inspired by Times Square, New York. A wide-angle street-level view of a busy urban intersection at night with wet asphalt reflecting neon lights. Massive curved LED billboard on a corner building displaying a hyper-realistic gourmet burger advertisement, glowing vividly and dominating the scene. Surrounding skyscrapers covered with bright digital screens, brand signage, and colorful ads. Motion-blurred traffic trails from passing cars, subtle pedestrians near sidewalks, dramatic contrast between dark sky and illuminated buildings. Cyber-urban atmosphere, commercial advertising aesthetic, long-exposure photography look, sharp architectural details, realistic lighting and reflections, ultra-high resolution, 8K photorealism, cinematic depth, no text overlay."
}
JSON
IM
图像
Food & Drink nano-banana-2

“Luxury golden-hour styled hero shot of [FOOD] bathed in war...

“Luxury golden-hour styled hero shot of [FOOD] bathed in warm directional sunlight. Long soft shadows, glowing highlights, natural lens flares. Minimal white set with subtle texture. Editorial lifestyle food photography aesthetic, rich color depth, atmospheric warmth, ultra-realistic detail, premium ad quality, 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": "“Luxury golden-hour styled hero shot of [FOOD] bathed in warm directional sunlight. Long soft shadows, glowing highlights, natural lens flares. Minimal white set with subtle texture. Editorial lifestyle food photography aesthetic, rich color depth, atmospheric warmth, ultra-realistic detail, premium ad quality, 8K resolution.”"
}
JSON
IM
图像
Product & Brand nano-banana-2

A wide-angle, studio fashion advertisement with a sophistica...

A wide-angle, studio fashion advertisement with a sophisticated retro-modern aesthetic. The scene is set against a monochromatic teal-grey (#506D6D) architectural backdrop featuring minimalist geometric props, including a fluted column and stepped circular platforms. The lighting is professionally diffused studio light, creating soft, graduated shadows that provide depth without harshness. The Subjects: Four models are posed in a cohesive, stylish group dynamic: A Black man on the far left, standing tall in a brown tweed blazer, a deep burgundy turtleneck, and dark yellow-and-brown checkered trousers. He is smiling and warmly holding the hand of the woman next to him. A Black woman with a voluminous afro, sitting sideways on a vintage 1950s wooden television set. She wears a dark brown knit top and vibrant burnt orange (#E88D4D) trousers with sleek brown leather boots. A White woman sitting on the floor in the center, leaning forward with her hand to her face. she wears a vintage-style headband, an argyle-patterned sleeveless top in orange and slate blue, a brown wool skirt, and white wedge sandals. A White man leaning into the frame from the center-right, hands on his knees. He wears a heavy cream-colored cable-knit sweater with dark trim and tailored brown trousers. Furniture & Props: To the right stands a minimalist dark teal industrial clothing rack. It displays curated garments including hanging shirts, a wide-brimmed white fedora, and a prominent structured orange leather messenger bag. At the base of the rack are white high-top sneakers and sandals. A single, truncated orange cone prop sits in the foreground. Primary Text: A massive, high-contrast white serif font (Bodoni-style) reading "KAIRO" is overlaid across the center-left, partially occluding the models to create a layered, 3D effect. Header: At the top center, the words "winter" (in orange cursive script) and "COLLECTION" (in white clean sans-serif) are centered. Footer: The URL "http://KAIROFASHION.COM" is printed in small, wide-tracked white sans-serif in the bottom right corner. Color Palette: A sophisticated mix of Teal-Grey, Burnt Orange, Chocolate Brown, and Crisp White, creating a warm yet muted autumnal 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 wide-angle, studio fashion advertisement with a sophisticated retro-modern aesthetic. The scene is set against a monochromatic teal-grey (#506D6D) architectural backdrop featuring minimalist geometric props, including a fluted column and stepped circular platforms. The lighting is professionally diffused studio light, creating soft, graduated shadows that provide depth without harshness. The Subjects: Four models are posed in a cohesive, stylish group dynamic: A Black man on the far left, standing tall in a brown tweed blazer, a deep burgundy turtleneck, and dark yellow-and-brown checkered trousers. He is smiling and warmly holding the hand of the woman next to him. A Black woman with a voluminous afro, sitting sideways on a vintage 1950s wooden television set. She wears a dark brown knit top and vibrant burnt orange (#E88D4D) trousers with sleek brown leather boots. A White woman sitting on the floor in the center, leaning forward with her hand to her face. she wears a vintage-style headband, an argyle-patterned sleeveless top in orange and slate blue, a brown wool skirt, and white wedge sandals. A White man leaning into the frame from the center-right, hands on his knees. He wears a heavy cream-colored cable-knit sweater with dark trim and tailored brown trousers. Furniture & Props: To the right stands a minimalist dark teal industrial clothing rack. It displays curated garments including hanging shirts, a wide-brimmed white fedora, and a prominent structured orange leather messenger bag. At the base of the rack are white high-top sneakers and sandals. A single, truncated orange cone prop sits in the foreground. Primary Text: A massive, high-contrast white serif font (Bodoni-style) reading \"KAIRO\" is overlaid across the center-left, partially occluding the models to create a layered, 3D effect. Header: At the top center, the words \"winter\" (in orange cursive script) and \"COLLECTION\" (in white clean sans-serif) are centered. Footer: The URL \"http://KAIROFASHION.COM\" is printed in small, wide-tracked white sans-serif in the bottom right corner. Color Palette: A sophisticated mix of Teal-Grey, Burnt Orange, Chocolate Brown, and Crisp White, creating a warm yet muted autumnal atmosphere."
}
JSON
IM
图像
Photography nano-banana-2

A hyper-realistic cinematic 3:4 vertical half-body portrait...

A hyper-realistic cinematic 3:4 vertical half-body portrait of a young man with the exact face from reference image, leaning casually against a 1920s smoky bar table, holding a vintage walking cane. He wears Peaky Blinders-inspired attire-tailored wool three-piece suit, waistcoat, tie, and flat cap. Head slightly down, eyes locked on camera with an intense, confident stare. Warm, ambient lighting casts moody shadows; blurred crowd and glowing whisky bottles in soft bokeh create depth. Shot with 85mm f/1.4 lens, 8K quality, highlighting fabric textures and facial expression.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic cinematic 3:4 vertical half-body portrait of a young man with the exact face from reference image, leaning casually against a 1920s smoky bar table, holding a vintage walking cane. He wears Peaky Blinders-inspired attire-tailored wool three-piece suit, waistcoat, tie, and flat cap. Head slightly down, eyes locked on camera with an intense, confident stare. Warm, ambient lighting casts moody shadows; blurred crowd and glowing whisky bottles in soft bokeh create depth. Shot with 85mm f/1.4 lens, 8K quality, highlighting fabric textures and facial expression."
}
JSON
IM
图像
Poster Design nano-banana-2

Pixar 3D CGI animated movie poster style, ensemble cast feat...

Pixar 3D CGI animated movie poster style, ensemble cast featuring the most iconic and recognizable characters from [MOVIE/SHOW], all rendered as Pixar-style 3D animated characters with exaggerated expressive faces, smooth stylized skin, big eyes, chunky proportions. Characters automatically selected as the most famous heroes and villains from [MOVIE/SHOW]. Dramatic layered composition: central hero front and center, others fanned behind in dynamic action poses. Background color automatically chosen to match the iconic tone and palette of [MOVIE/SHOW]. Bold title text at bottom: [MOVIE/SHOW] in the original film's iconic font style. Cinematic lighting, rim light on characters, deep shadows. 3:4 vertical aspect ratio. High detail, polished Pixar feature film 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": "Pixar 3D CGI animated movie poster style, ensemble cast featuring the most iconic and recognizable characters from [MOVIE/SHOW], all rendered as Pixar-style 3D animated characters with exaggerated expressive faces, smooth stylized skin, big eyes, chunky proportions. Characters automatically selected as the most famous heroes and villains from [MOVIE/SHOW]. Dramatic layered composition: central hero front and center, others fanned behind in dynamic action poses. Background color automatically chosen to match the iconic tone and palette of [MOVIE/SHOW]. Bold title text at bottom: [MOVIE/SHOW] in the original film's iconic font style. Cinematic lighting, rim light on characters, deep shadows. 3:4 vertical aspect ratio. High detail, polished Pixar feature film aesthetic."
}
JSON
IM
图像
Poster Design nano-banana-2

[upload luxury product photo] BRAND NAME: [Put the brand nam...

[upload luxury product photo] BRAND NAME: [Put the brand name here] Create ONE luxury editorial poster. Keep the product EXACT and unchanged. Use the BRAND NAME to infer identity and place the REAL official logo (correct proportions) in the most brand-appropriate position with subtle print texture. Add a perfectly matched attractive model wearing the product naturally. Rich deep colors, HDR, premium studio lighting, clean background, strong negative space, ultra-sharp 8K. No extra text, no watermark.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "[upload luxury product photo] BRAND NAME: [Put the brand name here] Create ONE luxury editorial poster. Keep the product EXACT and unchanged. Use the BRAND NAME to infer identity and place the REAL official logo (correct proportions) in the most brand-appropriate position with subtle print texture. Add a perfectly matched attractive model wearing the product naturally. Rich deep colors, HDR, premium studio lighting, clean background, strong negative space, ultra-sharp 8K. No extra text, no watermark."
}
JSON
IM
图像
Photography nano-banana-2

unfolds beside a tranquil pond, where gentle ripples catch t...

unfolds beside a tranquil pond, where gentle ripples catch the warm, golden sunlight. A young woman sits peacefully on the grassy bank at the water’s edge, her posture relaxed yet slightly leaning forward, as if immersed in quiet contemplation. Soft rays from the high, diffused sun bathe her face and shoulders in a tender glow, highlighting her delicate features and casting subtle, natural shadows. She wears light, flowy summer clothes in soft pastel tones that harmoniously blend with the lush surroundings—perhaps a breezy linen dress fluttering faintly in the still air. The pond mirrors the surrounding trees, their vibrant green leaves shimmering under the sunlight, while delicate reflections dance across the calm surface. The atmosphere feels utterly peaceful, warm, and timeless, with no breeze to disturb the stillness. Her expression is calm and introspective, eyes softly gazing toward the water, conveying a deep emotional serenity—as though she’s savoring the beauty of solitude amid nature’s embrace. This cinematic, highly detailed scene evokes a profound sense of tranquility, capturing the quiet magic of a slow afternoon in perfect harmony with the natural world. Realistic lighting, natural colors, soft bokeh, and exquisite realism throughout

查看 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": "unfolds beside a tranquil pond, where gentle ripples catch the warm, golden sunlight. A young woman sits peacefully on the grassy bank at the water’s edge, her posture relaxed yet slightly leaning forward, as if immersed in quiet contemplation. Soft rays from the high, diffused sun bathe her face and shoulders in a tender glow, highlighting her delicate features and casting subtle, natural shadows. She wears light, flowy summer clothes in soft pastel tones that harmoniously blend with the lush surroundings—perhaps a breezy linen dress fluttering faintly in the still air. The pond mirrors the surrounding trees, their vibrant green leaves shimmering under the sunlight, while delicate reflections dance across the calm surface. The atmosphere feels utterly peaceful, warm, and timeless, with no breeze to disturb the stillness. Her expression is calm and introspective, eyes softly gazing toward the water, conveying a deep emotional serenity—as though she’s savoring the beauty of solitude amid nature’s embrace. This cinematic, highly detailed scene evokes a profound sense of tranquility, capturing the quiet magic of a slow afternoon in perfect harmony with the natural world. Realistic lighting, natural colors, soft bokeh, and exquisite realism throughout"
}
JSON
IM
图像
Photography nano-banana-2

Ultra-realistic cinematic close-up portrait of a young man w...

Ultra-realistic cinematic close-up portrait of a young man with wet skin and damp, messy hair. He is lightly touching the frame of dark, rectangular aviator sunglasses beaded with clear water droplets. The lighting is low-key and dramatic, creating deep shadows that emphasize the moisture on his skin and the fine texture of his beard. He wears a plain, form-fitting matte black t-shirt that blends into a dark, minimal background. Detailed hand gesture showing defined knuckles and a silver ring with stone on the pinky finger. Razor-sharp micro-details, shallow depth of field, 85mm f/1.4 lens effect, moody high-contrast realism, and a high-end fashion editorial aesthetic. Use my uploaded face image as the facial and identity 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": "Ultra-realistic cinematic close-up portrait of a young man with wet skin and damp, messy hair. He is lightly touching the frame of dark, rectangular aviator sunglasses beaded with clear water droplets. The lighting is low-key and dramatic, creating deep shadows that emphasize the moisture on his skin and the fine texture of his beard. He wears a plain, form-fitting matte black t-shirt that blends into a dark, minimal background. Detailed hand gesture showing defined knuckles and a silver ring with stone on the pinky finger. Razor-sharp micro-details, shallow depth of field, 85mm f/1.4 lens effect, moody high-contrast realism, and a high-end fashion editorial aesthetic. Use my uploaded face image as the facial and identity reference."
}
JSON
IM
图像
Photography nano-banana-2

A hyper-realistic cinematic scene of a giant woman filmmaker...

A hyper-realistic cinematic scene of a giant woman filmmaker carefully adjusting a miniature vintage film camera on a tripod, inside a professional studio setup. A tiny elegant woman in a flowing pastel blue dress stands beside the camera like a model on set. Surrounding them are detailed studio lights, softboxes, film reels, cables, and a clapperboard. The giant woman has soft natural makeup, blonde hair tied back, and an intense focused expression. Dramatic soft lighting, shallow depth of field, ultra-detailed textures, 8K, photorealistic, cinematic composition, studio photography, volumetric 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": "A hyper-realistic cinematic scene of a giant woman filmmaker carefully adjusting a miniature vintage film camera on a tripod, inside a professional studio setup. A tiny elegant woman in a flowing pastel blue dress stands beside the camera like a model on set. Surrounding them are detailed studio lights, softboxes, film reels, cables, and a clapperboard. The giant woman has soft natural makeup, blonde hair tied back, and an intense focused expression. Dramatic soft lighting, shallow depth of field, ultra-detailed textures, 8K, photorealistic, cinematic composition, studio photography, volumetric lighting."
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "Hyper-realistic 8K black-and-white studio por...

{ "prompt": "Hyper-realistic 8K black-and-white studio portrait captured as a medium shot from a slightly low-angle perspective, using a 50mm lens for a natural field of view. The composition features a female subject, 100% using the uploaded face as reference (do not alter facial features or identity), seated off-center to the right, leaving strong negative space above and to the left. She wears a wide-brimmed fedora-style hat, a loose white linen blouse unbuttoned at the collar revealing layered silver necklaces, white linen trousers, and dark leather loafers, with delicate beaded bracelets on both wrists. The subject is seated comfortably in a sleek modern black leather lounge chair, left leg crossed over the right, left hand lightly touching the brim of the hat, and right arm casually resting on the chair’s armrest. Dramatic high-contrast chiaroscuro lighting dominates the scene, with a strong key light from the front-left creating deep shadows and bright highlights that emphasize the detailed textures of the linen fabric, leather chair, felt hat, and hair. Subtle rim lighting outlines the subject and chair, separating them from a pure deep-black background, enhancing cinematic depth and a professional luxury studio photography aesthetic.", "color_style": "black and white", "resolution": "8K", "camera_lens": "50mm", "camera_angle": "slightly low-angle", "style": "cinematic studio portrait, luxury editorial", "lighting": "chiaroscuro, high-contrast studio lighting", "reference_image": "strictly use uploaded image only" }

查看 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\": \"Hyper-realistic 8K black-and-white studio portrait captured as a medium shot from a slightly low-angle perspective, using a 50mm lens for a natural field of view. The composition features a female subject, 100% using the uploaded face as reference (do not alter facial features or identity), seated off-center to the right, leaving strong negative space above and to the left. She wears a wide-brimmed fedora-style hat, a loose white linen blouse unbuttoned at the collar revealing layered silver necklaces, white linen trousers, and dark leather loafers, with delicate beaded bracelets on both wrists. The subject is seated comfortably in a sleek modern black leather lounge chair, left leg crossed over the right, left hand lightly touching the brim of the hat, and right arm casually resting on the chair’s armrest. Dramatic high-contrast chiaroscuro lighting dominates the scene, with a strong key light from the front-left creating deep shadows and bright highlights that emphasize the detailed textures of the linen fabric, leather chair, felt hat, and hair. Subtle rim lighting outlines the subject and chair, separating them from a pure deep-black background, enhancing cinematic depth and a professional luxury studio photography aesthetic.\", \"color_style\": \"black and white\", \"resolution\": \"8K\", \"camera_lens\": \"50mm\", \"camera_angle\": \"slightly low-angle\", \"style\": \"cinematic studio portrait, luxury editorial\", \"lighting\": \"chiaroscuro, high-contrast studio lighting\", \"reference_image\": \"strictly use uploaded image only\" }"
}
JSON
IM
图像
Photography nano-banana-2

{ "image_type": "High-end fitness editorial / Cinematic l...

{ "image_type": "High-end fitness editorial / Cinematic lifestyle photography", "visual_style": "Minimalist luxury, ultra-photorealistic, soft-focus realism", "composition": { "framing": "Wide-angle side profile to capture the full silhouette", "camera_angle": "Low-angle shot to emphasize the height and strength of the arch", "perspective": "Clean, linear perspective against a flat, snowy horizon" }, "subject": { "description": "A fit, graceful woman with athletic poise and natural blonde hair tied in a sleek low bun", "pose": "Performing a perfect Yoga Arch (Urdhva Dhanurasana / Wheel Pose)", "body_language": "Strong and stable; back arched beautifully with palms and feet firmly planted in the snow", "expression": "A serene, focused look; eyes closed in a state of meditative calm" }, "facial_details": { "emotion": "Peaceful determination and internal quietude", "micro_details": "Soft natural skin texture, subtle flush from the cold, and faint visible breath in the air" }, "wardrobe": { "clothing": "Premium emerald green velvet high-waist yoga leggings; matching velvet sports bra; a thin, cream-colored thermal scarf draped elegantly nearby", "textures": "Rich, light-reflecting velvet fabric against the soft, matte texture of fresh snow", "color_tones": "Vibrant emerald green contrasted against a monochrome white landscape" }, "environment": { "location": "A vast, silent arctic landscape of pristine white snow", "background": "Empty, minimalist snowy field meeting a soft, misty gray sky at the horizon", "atmosphere": "Quiet, ethereal, and crisp; very light snowfall with tiny drifting flakes" }, "lighting": { "type": "Soft, natural overcast daylight", "quality": "Diffused and ethereal, creating gentle highlights on the velvet curves", "direction": "Side-ambient lighting to define the muscular form of the yoga pose" }, "color_palette": { "primary": ["Deep Emerald Green", "Pristine White", "Charcoal Black"], "mood": "Sophisticated, calm, and visually striking" }, "camera_details": { "lens": "50mm prime lens for realistic human proportions", "focus": "Sharp focus on the subject; creamy, soft-focus (bokeh) on the distant snowy background", "realism": "8K resolution, capturing every fiber of the velvet and the granular detail of the snow" }, "overall_mood": "Graceful, powerful, and serene; a high-fashion approach to wellness", "intended_use": "Luxury fitness branding, Pinterest aesthetic editorial, or premium wellness magazine" }

查看 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\": \"High-end fitness editorial / Cinematic lifestyle photography\", \"visual_style\": \"Minimalist luxury, ultra-photorealistic, soft-focus realism\", \"composition\": { \"framing\": \"Wide-angle side profile to capture the full silhouette\", \"camera_angle\": \"Low-angle shot to emphasize the height and strength of the arch\", \"perspective\": \"Clean, linear perspective against a flat, snowy horizon\" }, \"subject\": { \"description\": \"A fit, graceful woman with athletic poise and natural blonde hair tied in a sleek low bun\", \"pose\": \"Performing a perfect Yoga Arch (Urdhva Dhanurasana / Wheel Pose)\", \"body_language\": \"Strong and stable; back arched beautifully with palms and feet firmly planted in the snow\", \"expression\": \"A serene, focused look; eyes closed in a state of meditative calm\" }, \"facial_details\": { \"emotion\": \"Peaceful determination and internal quietude\", \"micro_details\": \"Soft natural skin texture, subtle flush from the cold, and faint visible breath in the air\" }, \"wardrobe\": { \"clothing\": \"Premium emerald green velvet high-waist yoga leggings; matching velvet sports bra; a thin, cream-colored thermal scarf draped elegantly nearby\", \"textures\": \"Rich, light-reflecting velvet fabric against the soft, matte texture of fresh snow\", \"color_tones\": \"Vibrant emerald green contrasted against a monochrome white landscape\" }, \"environment\": { \"location\": \"A vast, silent arctic landscape of pristine white snow\", \"background\": \"Empty, minimalist snowy field meeting a soft, misty gray sky at the horizon\", \"atmosphere\": \"Quiet, ethereal, and crisp; very light snowfall with tiny drifting flakes\" }, \"lighting\": { \"type\": \"Soft, natural overcast daylight\", \"quality\": \"Diffused and ethereal, creating gentle highlights on the velvet curves\", \"direction\": \"Side-ambient lighting to define the muscular form of the yoga pose\" }, \"color_palette\": { \"primary\": [\"Deep Emerald Green\", \"Pristine White\", \"Charcoal Black\"], \"mood\": \"Sophisticated, calm, and visually striking\" }, \"camera_details\": { \"lens\": \"50mm prime lens for realistic human proportions\", \"focus\": \"Sharp focus on the subject; creamy, soft-focus (bokeh) on the distant snowy background\", \"realism\": \"8K resolution, capturing every fiber of the velvet and the granular detail of the snow\" }, \"overall_mood\": \"Graceful, powerful, and serene; a high-fashion approach to wellness\", \"intended_use\": \"Luxury fitness branding, Pinterest aesthetic editorial, or premium wellness magazine\" }"
}
JSON
IM
图像
Photography nano-banana-2

Panels are NOT edge-to-edge Visible thin white spacing betwe...

Panels are NOT edge-to-edge Visible thin white spacing between panels Subtle outer white margin around the entire grid clean modern UI-style layout Slight rounded corners on each tile Panel 1 — Joyful / Celebratory (Yellow) Bright yellow gradient background Arms raised Eyes closed Big open laugh Energetic posture Panel 2 — Shocked (Blue) Blue gradient background Hands on cheeks Wide eyes Open mouth Raised brows Panel 3 — Serious / Stern (Red) Red background Arms crossed Furrowed brows Neutral tight lips Wearing dark hoodie Panel 4 — Affectionate (Pink) Soft pink gradient Holding small brown puppy Gentle smile Cozy knit sweater Panel 5 — Confident / Sassy (Purple) Purple gradient background One hand on hip Slight smirk Graphic t-shirt Relaxed stance Panel 6 — Friendly / Casual Approval (Green) Green gradient background Wearing cap + denim jacket Thumbs-up Relaxed smile Panel 7 — Sad / Emotional (Gray) Gray gradient background Slight downward gaze Eyebrows slightly raised in center Lips slightly curved downward

查看 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": "Panels are NOT edge-to-edge Visible thin white spacing between panels Subtle outer white margin around the entire grid clean modern UI-style layout Slight rounded corners on each tile Panel 1 — Joyful / Celebratory (Yellow) Bright yellow gradient background Arms raised Eyes closed Big open laugh Energetic posture Panel 2 — Shocked (Blue) Blue gradient background Hands on cheeks Wide eyes Open mouth Raised brows Panel 3 — Serious / Stern (Red) Red background Arms crossed Furrowed brows Neutral tight lips Wearing dark hoodie Panel 4 — Affectionate (Pink) Soft pink gradient Holding small brown puppy Gentle smile Cozy knit sweater Panel 5 — Confident / Sassy (Purple) Purple gradient background One hand on hip Slight smirk Graphic t-shirt Relaxed stance Panel 6 — Friendly / Casual Approval (Green) Green gradient background Wearing cap + denim jacket Thumbs-up Relaxed smile Panel 7 — Sad / Emotional (Gray) Gray gradient background Slight downward gaze Eyebrows slightly raised in center Lips slightly curved downward"
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-high-quality, hyper-realistic commercial food photogra...

Ultra-high-quality, hyper-realistic commercial food photography of [COUNTRY FOOD NAME], rendered in 8K detail with a (4:3 or 3:4) aspect ratio. The food is shown in multiple premium visual variations, each highlighting texture, layers, and freshness in a cinematic way. Food details: – Authentic [COUNTRY] cuisine presentation – Clearly visible layers, fillings, or structure specific to [FOOD TYPE] – Rich, natural colors and realistic textures Motion & drama: – Subtle mid-air elements (crumbs, ingredients, sauce, or spices) – Natural gravity realism, frozen motion – No mess, clean and controlled composition Lighting & camera: – Controlled studio lighting emphasizing texture and shine – High-speed photography look – Shallow to medium depth of field Background: – Solid or soft gradient background in [BACKGROUND COLOR] – Clean, seamless, distraction-free Style & finish: – Luxury food advertising aesthetic – Rich contrast, warm natural tones – Ultra-sharp focus, no artificial glow Negative prompt: Text, logos, branding, hands, people, utensils, plates, tables, cartoon style, burnt food, overexposure, low-detail textures, artificial shine.

查看 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-high-quality, hyper-realistic commercial food photography of [COUNTRY FOOD NAME], rendered in 8K detail with a (4:3 or 3:4) aspect ratio. The food is shown in multiple premium visual variations, each highlighting texture, layers, and freshness in a cinematic way. Food details: – Authentic [COUNTRY] cuisine presentation – Clearly visible layers, fillings, or structure specific to [FOOD TYPE] – Rich, natural colors and realistic textures Motion & drama: – Subtle mid-air elements (crumbs, ingredients, sauce, or spices) – Natural gravity realism, frozen motion – No mess, clean and controlled composition Lighting & camera: – Controlled studio lighting emphasizing texture and shine – High-speed photography look – Shallow to medium depth of field Background: – Solid or soft gradient background in [BACKGROUND COLOR] – Clean, seamless, distraction-free Style & finish: – Luxury food advertising aesthetic – Rich contrast, warm natural tones – Ultra-sharp focus, no artificial glow Negative prompt: Text, logos, branding, hands, people, utensils, plates, tables, cartoon style, burnt food, overexposure, low-detail textures, artificial shine."
}
JSON
IM
图像
Product & Brand nano-banana-2

Ultra-realistic summer skincare product photography of a bro...

Ultra-realistic summer skincare product photography of a bronzing drop bottle named "Golden Glow - Bronzing Elixir", rectangular matte bottle in warm sun-kissed bronze tone with a clean white cap, placed diagonally on wet beach sand as a gentle ocean wave washes over it, delicate sea foam and tiny bubbles surrounding the base, water partially flowing across the label, fine sand texture visible beneath shallow clear water, golden sunlight casting natural highlights and soft shadows, high-detail water ripples and realistic foam patterns, fresh summer aesthetic, minimal clean branding centered and sharp, warm golden-hour beach lighting, cinematic top-down flat lay composition, natural reflections on wet surface, editorial beauty campaign style, ultra-detailed, photorealistic 8K, soft warm color grading, luxury skincare advertisement Aspect ratio 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": "Ultra-realistic summer skincare product photography of a bronzing drop bottle named \"Golden Glow - Bronzing Elixir\", rectangular matte bottle in warm sun-kissed bronze tone with a clean white cap, placed diagonally on wet beach sand as a gentle ocean wave washes over it, delicate sea foam and tiny bubbles surrounding the base, water partially flowing across the label, fine sand texture visible beneath shallow clear water, golden sunlight casting natural highlights and soft shadows, high-detail water ripples and realistic foam patterns, fresh summer aesthetic, minimal clean branding centered and sharp, warm golden-hour beach lighting, cinematic top-down flat lay composition, natural reflections on wet surface, editorial beauty campaign style, ultra-detailed, photorealistic 8K, soft warm color grading, luxury skincare advertisement Aspect ratio 4.5"
}
JSON
IM
图像
Photography nano-banana-2

{ "scene_type": "outdoor urban street portrait", "compositio...

{ "scene_type": "outdoor urban street portrait", "composition": { "framing": "vertical portrait orientation", "shot_type": "mid-length shot from head to mid-thigh", "camera_angle": "eye-level", "subject_position": "centered with slight rightward offset", "leading_lines": "sidewalk and building facade create linear depth", "depth_of_field": "moderate depth, background softly detailed but not blurred", "balance": "subject balanced against architectural mass on left and greenery on right" }, "subject": { "gender_presentation": "female-presenting", "pose": "relaxed standing pose, one hand in pocket, one arm relaxed", "expression": "neutral to confident with subtle smile", "gaze": "looking directly at camera", "hair": { "style": "long, loose waves", "part": "side-parted", "color": "dark brown with warm undertones", "texture": "soft, voluminous" }, "accessories": [ "round metal-frame sunglasses with dark lenses", "small hoop earrings", "wristwatch with metallic band", "brown leather shoulder bag" ] }, "clothing": { "top": { "type": "sleeveless fitted tank top", "color": "warm beige", "pattern": "thin horizontal white stripes", "fit": "form-fitting" }, "bottom": { "type": baggy pant", "color": "off-white / cream", "fabric_appearance": "structured cotton or linen blend" }, "belt": { "color": "light brown", "buckle": "gold-toned minimalist buckle" } }, "environment": { "location_type": "historic city street", "architecture": { "style": "classical or colonial stone facade", "features": "arched windows, ornate stone detailing, balconies" }, "natural_elements": "trees and shrubs lining the sidewalk", "ground": "concrete sidewalk with adjacent landscaped soil area", "background_activity": "parked cars partially visible, quiet street ambiance" }, "lighting": { "source": "natural sunlight", "time_of_day": "late morning or afternoon", "quality": "soft directional light", "shadows": "gentle shadows cast by trees and buildings", "skin_tone_rendering": "warm and even" }, "color_palette": { "dominant_colors": ["beige", "cream", "brown", "stone gray", "green"], "overall_tone": "warm, natural, lifestyle aesthetic", "contrast": "moderate contrast between subject and background" }, "camera_characteristics": { "lens_look": "standard to short telephoto perspective", "distortion": "minimal distortion", "sharpness": "sharp focus on subject with clear texture detail", "noise": "low noise, clean image" }, "artistic_style": { "genre": "fashion lifestyle photography", "mood": "casual elegance, confident, relaxed", "styling_influence": "modern minimalist with classic elements", "social_media_aesthetic": "Instagram-style street fashion portrait" }, "post_processing": { "color_grading": "warm tones with natural saturation", "contrast_adjustment": "slightly enhanced", "retouching": "minimal, natural skin texture preserved", "overall_finish": "clean and polished" }, "typography": { "present": false } }

查看 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_type\": \"outdoor urban street portrait\", \"composition\": { \"framing\": \"vertical portrait orientation\", \"shot_type\": \"mid-length shot from head to mid-thigh\", \"camera_angle\": \"eye-level\", \"subject_position\": \"centered with slight rightward offset\", \"leading_lines\": \"sidewalk and building facade create linear depth\", \"depth_of_field\": \"moderate depth, background softly detailed but not blurred\", \"balance\": \"subject balanced against architectural mass on left and greenery on right\" }, \"subject\": { \"gender_presentation\": \"female-presenting\", \"pose\": \"relaxed standing pose, one hand in pocket, one arm relaxed\", \"expression\": \"neutral to confident with subtle smile\", \"gaze\": \"looking directly at camera\", \"hair\": { \"style\": \"long, loose waves\", \"part\": \"side-parted\", \"color\": \"dark brown with warm undertones\", \"texture\": \"soft, voluminous\" }, \"accessories\": [ \"round metal-frame sunglasses with dark lenses\", \"small hoop earrings\", \"wristwatch with metallic band\", \"brown leather shoulder bag\" ] }, \"clothing\": { \"top\": { \"type\": \"sleeveless fitted tank top\", \"color\": \"warm beige\", \"pattern\": \"thin horizontal white stripes\", \"fit\": \"form-fitting\" }, \"bottom\": { \"type\": baggy pant\", \"color\": \"off-white / cream\", \"fabric_appearance\": \"structured cotton or linen blend\" }, \"belt\": { \"color\": \"light brown\", \"buckle\": \"gold-toned minimalist buckle\" } }, \"environment\": { \"location_type\": \"historic city street\", \"architecture\": { \"style\": \"classical or colonial stone facade\", \"features\": \"arched windows, ornate stone detailing, balconies\" }, \"natural_elements\": \"trees and shrubs lining the sidewalk\", \"ground\": \"concrete sidewalk with adjacent landscaped soil area\", \"background_activity\": \"parked cars partially visible, quiet street ambiance\" }, \"lighting\": { \"source\": \"natural sunlight\", \"time_of_day\": \"late morning or afternoon\", \"quality\": \"soft directional light\", \"shadows\": \"gentle shadows cast by trees and buildings\", \"skin_tone_rendering\": \"warm and even\" }, \"color_palette\": { \"dominant_colors\": [\"beige\", \"cream\", \"brown\", \"stone gray\", \"green\"], \"overall_tone\": \"warm, natural, lifestyle aesthetic\", \"contrast\": \"moderate contrast between subject and background\" }, \"camera_characteristics\": { \"lens_look\": \"standard to short telephoto perspective\", \"distortion\": \"minimal distortion\", \"sharpness\": \"sharp focus on subject with clear texture detail\", \"noise\": \"low noise, clean image\" }, \"artistic_style\": { \"genre\": \"fashion lifestyle photography\", \"mood\": \"casual elegance, confident, relaxed\", \"styling_influence\": \"modern minimalist with classic elements\", \"social_media_aesthetic\": \"Instagram-style street fashion portrait\" }, \"post_processing\": { \"color_grading\": \"warm tones with natural saturation\", \"contrast_adjustment\": \"slightly enhanced\", \"retouching\": \"minimal, natural skin texture preserved\", \"overall_finish\": \"clean and polished\" }, \"typography\": { \"present\": false } }"
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-clean modern recipe infographic. Showcase chowmin in a...

Ultra-clean modern recipe infographic. Showcase chowmin in a visually appealing finished form sliced, plated, or portioned floating slightly in perspective or angled view. Arrange ingredients, steps, and tips around the dish in a dynamic editorial layout, not restricted to top-down. Ingredients Section: Include icons or mini illustrations for each ingredient with quantities. Arrange them in clusters, lists, or circular flows connected visually to the dish. Steps Section: Show preparation steps with numbered panels, arrows, or lines, forming a logical flow around the main dish. Include small cooking icons (knife, pan, oven, timer) where helpful. Additional Info (optional): Total calories, prep/cook time, servings, spice level—displayed as clean bubbles or badges near the dish. Visual Style: Editorial infographic meets lifestyle food photography. Vibrant, natural food colors, subtle drop shadows, clean vector icons, modern typography, soft gradients or glassmorphism for step panels. Accent colors can highlight key info (calories, prep time). Composition Guidelines: Finished meal as hero visual (perspective or angled) Ingredients and steps flow dynamically around the dish Clear visual hierarchy: dish > steps > ingredients > optional stats Enough negative space to keep design airy and readable Lighting & Background: Soft, natural studio lighting, minimal textured or gradient background for premium editorial feel. Output: 1080×1080, ultra-crisp, social-feed optimized, no watermark.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-clean modern recipe infographic. Showcase chowmin in a visually appealing finished form sliced, plated, or portioned floating slightly in perspective or angled view. Arrange ingredients, steps, and tips around the dish in a dynamic editorial layout, not restricted to top-down. Ingredients Section: Include icons or mini illustrations for each ingredient with quantities. Arrange them in clusters, lists, or circular flows connected visually to the dish. Steps Section: Show preparation steps with numbered panels, arrows, or lines, forming a logical flow around the main dish. Include small cooking icons (knife, pan, oven, timer) where helpful. Additional Info (optional): Total calories, prep/cook time, servings, spice level—displayed as clean bubbles or badges near the dish. Visual Style: Editorial infographic meets lifestyle food photography. Vibrant, natural food colors, subtle drop shadows, clean vector icons, modern typography, soft gradients or glassmorphism for step panels. Accent colors can highlight key info (calories, prep time). Composition Guidelines: Finished meal as hero visual (perspective or angled) Ingredients and steps flow dynamically around the dish Clear visual hierarchy: dish > steps > ingredients > optional stats Enough negative space to keep design airy and readable Lighting & Background: Soft, natural studio lighting, minimal textured or gradient background for premium editorial feel. Output: 1080×1080, ultra-crisp, social-feed optimized, no watermark."
}
JSON
IM
图像
Product & Brand nano-banana-2

studio shot of [PRODUCT], placed on a [background], surround...

studio shot of [PRODUCT], placed on a [background], surrounded by soft shadows and gradient background, high-key lighting, shallow depth of field, ultra-sharp focus on the object, premium product photography, shot on a DSLR, minimal aesthetic, subtle reflections, commercial lighting setup

查看 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": "studio shot of [PRODUCT], placed on a [background], surrounded by soft shadows and gradient background, high-key lighting, shallow depth of field, ultra-sharp focus on the object, premium product photography, shot on a DSLR, minimal aesthetic, subtle reflections, commercial lighting setup"
}
JSON
IM
图像
Food & Drink nano-banana-2

two hands pulling apart a grilled cheese sandwich, strands o...

two hands pulling apart a grilled cheese sandwich, strands of melted cheddar stretching dramatically between the halves, toasted bread edges crisp and golden, crumbs falling mid-air, warm cozy light, cinematic food action 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": "two hands pulling apart a grilled cheese sandwich, strands of melted cheddar stretching dramatically between the halves, toasted bread edges crisp and golden, crumbs falling mid-air, warm cozy light, cinematic food action photography"
}
JSON
IM
图像
Illustration & 3D nano-banana-2

A 3D Pixar-style animated young male character showcased in...

A 3D Pixar-style animated young male character showcased in a 6-panel grid layout, each panel featuring a different facial expression and outfit. Bright solid color backgrounds (yellow, blue, red, pink, purple, green). The character has soft brown wavy hair, expressive large eyes, smooth skin, and stylized cartoon proportions.

查看 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 3D Pixar-style animated young male character showcased in a 6-panel grid layout, each panel featuring a different facial expression and outfit. Bright solid color backgrounds (yellow, blue, red, pink, purple, green). The character has soft brown wavy hair, expressive large eyes, smooth skin, and stylized cartoon proportions."
}
JSON
IM
图像
Photography nano-banana-2

{ "content_goal": "viral athletic jump freeze post", "i...

{ "content_goal": "viral athletic jump freeze post", "image_type": "jump freeze action photography", "visual_style": "cinematic sports editorial, high-impact, premium", "motion_concept": { "action_type": "jump freeze", "timing": "captured at peak height", "motion_state": "completely frozen mid-air", "energy": "explosive yet controlled" }, "pose_details": { "pose_name": "jump freeze flex pose", "body_position": "mid-air jump with legs extended or flexed symmetrically", "core_engagement": "tight core with visible strength", "arm_position": "balanced, expressive, athletic alignment", "freeze_quality": "sharp, suspended, gravity-defying" }, "subject": { "description": "athletic feminine body performing a powerful jump freeze", "physique": "lean, flexible, toned", "body_language": "confident, fearless, strong", "expression": "focused intensity with calm control" }, "facial_details": { "emotion": "determination mixed with ease", "micro_details": "relaxed face, steady eyes, natural expression" }, "wardrobe": { "clothing": "professional athletic performance wear", "fit": "body-contoured to emphasize motion lines", "fabric": "stretch performance fabric, non-reflective", "color_tones": "solid neutral or bold single color" }, "environment": { "location": "minimal studio or clean gym space", "background": "plain or gradient backdrop", "atmosphere": "focused, powerful, distraction-free" }, "lighting": { "type": "high-speed studio lighting", "quality": "crisp, clean, cinematic", "direction": "side and top lighting", "effect": "freeze motion sharply with defined muscle highlights" }, "camera_details": { "angle": "slightly low angle for power emphasis", "framing": "full body mid-air capture", "lens_feel": "sports editorial realism", "focus": "ultra-sharp subject with zero motion blur" }, "color_palette": { "primary_colors": ["neutral background", "natural skin tone"], "contrast_level": "high", "mood": "bold, energetic, inspiring" }, "emotional_impact": { "viewer_reaction": "scroll-stopping shock and admiration", "message": "power, balance, and control in one moment" }, "quality_control": { "realism": "ultra-realistic photography", "detail_level": "high-definition muscle and fabric texture", "ai_artifacts": "none", "professional_standard": "editorial-grade" }, "intended_use": { "primary": "viral jump freeze post on X", "secondary": "fitness branding, athletic inspiration" } }

查看 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": "{ \"content_goal\": \"viral athletic jump freeze post\", \"image_type\": \"jump freeze action photography\", \"visual_style\": \"cinematic sports editorial, high-impact, premium\", \"motion_concept\": { \"action_type\": \"jump freeze\", \"timing\": \"captured at peak height\", \"motion_state\": \"completely frozen mid-air\", \"energy\": \"explosive yet controlled\" }, \"pose_details\": { \"pose_name\": \"jump freeze flex pose\", \"body_position\": \"mid-air jump with legs extended or flexed symmetrically\", \"core_engagement\": \"tight core with visible strength\", \"arm_position\": \"balanced, expressive, athletic alignment\", \"freeze_quality\": \"sharp, suspended, gravity-defying\" }, \"subject\": { \"description\": \"athletic feminine body performing a powerful jump freeze\", \"physique\": \"lean, flexible, toned\", \"body_language\": \"confident, fearless, strong\", \"expression\": \"focused intensity with calm control\" }, \"facial_details\": { \"emotion\": \"determination mixed with ease\", \"micro_details\": \"relaxed face, steady eyes, natural expression\" }, \"wardrobe\": { \"clothing\": \"professional athletic performance wear\", \"fit\": \"body-contoured to emphasize motion lines\", \"fabric\": \"stretch performance fabric, non-reflective\", \"color_tones\": \"solid neutral or bold single color\" }, \"environment\": { \"location\": \"minimal studio or clean gym space\", \"background\": \"plain or gradient backdrop\", \"atmosphere\": \"focused, powerful, distraction-free\" }, \"lighting\": { \"type\": \"high-speed studio lighting\", \"quality\": \"crisp, clean, cinematic\", \"direction\": \"side and top lighting\", \"effect\": \"freeze motion sharply with defined muscle highlights\" }, \"camera_details\": { \"angle\": \"slightly low angle for power emphasis\", \"framing\": \"full body mid-air capture\", \"lens_feel\": \"sports editorial realism\", \"focus\": \"ultra-sharp subject with zero motion blur\" }, \"color_palette\": { \"primary_colors\": [\"neutral background\", \"natural skin tone\"], \"contrast_level\": \"high\", \"mood\": \"bold, energetic, inspiring\" }, \"emotional_impact\": { \"viewer_reaction\": \"scroll-stopping shock and admiration\", \"message\": \"power, balance, and control in one moment\" }, \"quality_control\": { \"realism\": \"ultra-realistic photography\", \"detail_level\": \"high-definition muscle and fabric texture\", \"ai_artifacts\": \"none\", \"professional_standard\": \"editorial-grade\" }, \"intended_use\": { \"primary\": \"viral jump freeze post on X\", \"secondary\": \"fitness branding, athletic inspiration\" } }"
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。