模型 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
图像
Illustration & 3D nano-banana-2

An architectural blueprint of {BUILDING_NAME} placed on a {S...

An architectural blueprint of {BUILDING_NAME} placed on a {SURFACE}, with a photorealistic miniature under-construction version of {BUILDING_NAME} emerging from it — {STRUCTURAL_ELEMENT_1}, {STRUCTURAL_ELEMENT_2}, {STRUCTURAL_ELEMENT_3}, {CONSTRUCTION_DETAIL}, {WORKER_SCENE}, {MATERIAL_ELEMENT}, and {EXTRA_DETAIL}. All elements grow from the blueprint like a 3D architectural diorama, steel beams rising from the drawn lines, scaffolding threading through the paper. Studio soft lighting, cinematic depth, 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": "An architectural blueprint of {BUILDING_NAME} placed on a {SURFACE}, with a photorealistic miniature under-construction version of {BUILDING_NAME} emerging from it — {STRUCTURAL_ELEMENT_1}, {STRUCTURAL_ELEMENT_2}, {STRUCTURAL_ELEMENT_3}, {CONSTRUCTION_DETAIL}, {WORKER_SCENE}, {MATERIAL_ELEMENT}, and {EXTRA_DETAIL}. All elements grow from the blueprint like a 3D architectural diorama, steel beams rising from the drawn lines, scaffolding threading through the paper. Studio soft lighting, cinematic depth, 2:3"
}
JSON
IM
图像
Food & Drink nano-banana-2

Ultra-realistic commercial product photography of a caramel...

Ultra-realistic commercial product photography of a caramel frappuccino in a clear plastic cup with dome lid and green straw, topped with whipped cream and caramel drizzle, floating mid-air. Coffee beans exploding around the cup with fine coffee powder dust particles suspended in the air, dynamic caramel splash trails swirling around the drink. Dark smoky background with dramatic spotlight from above, warm golden rim lighting, high contrast, sharp focus, macro details, cinematic depth of field, hyper-detailed texture, premium beverage advertisement, 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": "Ultra-realistic commercial product photography of a caramel frappuccino in a clear plastic cup with dome lid and green straw, topped with whipped cream and caramel drizzle, floating mid-air. Coffee beans exploding around the cup with fine coffee powder dust particles suspended in the air, dynamic caramel splash trails swirling around the drink. Dark smoky background with dramatic spotlight from above, warm golden rim lighting, high contrast, sharp focus, macro details, cinematic depth of field, hyper-detailed texture, premium beverage advertisement, 8K resolution."
}
JSON
IM
图像
Photography nano-banana-2

{ "objective": "Create a dramatic, high-contrast cinematic...

{ "objective": "Create a dramatic, high-contrast cinematic portrait of a stylish young man in a premium black suit with selective warm lighting and intense mood", "subject": { "type": "Young adult male", "age_appearance": "25-30", "hair": "Black, voluminous, slicked back pompadour style, perfectly styled with high shine", "facial_hair": "Well-groomed short boxed beard and mustache", "expression": "Intense, confident, serious, slightly mysterious", "pose": "Hand under chin thoughtful/contemplative pose, looking directly at camera", "accessories": { "sunglasses": "Classic aviator style, gold metal frame, strong yellow/orange tinted lenses", "clothing": { "outerwear": "Premium matte black tailored blazer/jacket, sharp lapels, high-end luxurious fabric texture", "innerwear": "Dark charcoal or black crew-neck t-shirt" } } }, "lighting": { "style": "Cinematic studio lighting", "main": "Strong side and rim lighting creating deep shadows and dramatic highlights", "background": "Dark gradient with circular warm spotlight array (vanity/makeup studio lights)", "contrast": "Very high contrast, deep blacks, bright highlights on face and hair", "mood": "Moody, masculine, powerful, film-noir inspired" }, "composition": { "framing": "Tight mid-close-up portrait, head and shoulders", "angle": "Slightly below eye level for commanding presence", "depth_of_field": "Shallow, sharp focus on face and sunglasses, soft background" }, "color_palette": { "dominant": "Black & deep charcoal", "accents": "Warm yellow-orange from sunglasses lenses and background lights", "skin_tone": "Natural with subtle cinematic glow" }, "style_references": [ "Modern film-noir", "High-end fashion editorial", "Hollywood dramatic portrait", "David LaChapelle meets classic menswear advertising" ], "image_quality": { "resolution": "Ultra-high detail, 8K", "sharpness": "Crisp facial features, hair strands visible", "texture": "Detailed skin pores, fabric weave, hair shine" }, "negative_prompt": [ "low quality", "blurry", "overexposed", "underexposed", "cartoon", "anime", "distorted face", "extra limbs", "bad anatomy", "logo", "text", "watermark", "bright colored clothing", "casual outfit" ], "aspect_ratio": "2:3 (portrait orientation)" }

查看 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 dramatic, high-contrast cinematic portrait of a stylish young man in a premium black suit with selective warm lighting and intense mood\", \"subject\": { \"type\": \"Young adult male\", \"age_appearance\": \"25-30\", \"hair\": \"Black, voluminous, slicked back pompadour style, perfectly styled with high shine\", \"facial_hair\": \"Well-groomed short boxed beard and mustache\", \"expression\": \"Intense, confident, serious, slightly mysterious\", \"pose\": \"Hand under chin thoughtful/contemplative pose, looking directly at camera\", \"accessories\": { \"sunglasses\": \"Classic aviator style, gold metal frame, strong yellow/orange tinted lenses\", \"clothing\": { \"outerwear\": \"Premium matte black tailored blazer/jacket, sharp lapels, high-end luxurious fabric texture\", \"innerwear\": \"Dark charcoal or black crew-neck t-shirt\" } } }, \"lighting\": { \"style\": \"Cinematic studio lighting\", \"main\": \"Strong side and rim lighting creating deep shadows and dramatic highlights\", \"background\": \"Dark gradient with circular warm spotlight array (vanity/makeup studio lights)\", \"contrast\": \"Very high contrast, deep blacks, bright highlights on face and hair\", \"mood\": \"Moody, masculine, powerful, film-noir inspired\" }, \"composition\": { \"framing\": \"Tight mid-close-up portrait, head and shoulders\", \"angle\": \"Slightly below eye level for commanding presence\", \"depth_of_field\": \"Shallow, sharp focus on face and sunglasses, soft background\" }, \"color_palette\": { \"dominant\": \"Black & deep charcoal\", \"accents\": \"Warm yellow-orange from sunglasses lenses and background lights\", \"skin_tone\": \"Natural with subtle cinematic glow\" }, \"style_references\": [ \"Modern film-noir\", \"High-end fashion editorial\", \"Hollywood dramatic portrait\", \"David LaChapelle meets classic menswear advertising\" ], \"image_quality\": { \"resolution\": \"Ultra-high detail, 8K\", \"sharpness\": \"Crisp facial features, hair strands visible\", \"texture\": \"Detailed skin pores, fabric weave, hair shine\" }, \"negative_prompt\": [ \"low quality\", \"blurry\", \"overexposed\", \"underexposed\", \"cartoon\", \"anime\", \"distorted face\", \"extra limbs\", \"bad anatomy\", \"logo\", \"text\", \"watermark\", \"bright colored clothing\", \"casual outfit\" ], \"aspect_ratio\": \"2:3 (portrait orientation)\" }"
}
JSON
IM
图像
Photography nano-banana-2

Young beautiful woman with long wavy hair, elegant sleeveles...

Young beautiful woman with long wavy hair, elegant sleeveless polka dot midi dress black and white pattern, sitting thoughtfully at stylish wine bar counter, hand near lips, luxury wine bottles wall background, Prada navy blue mini bag with silk scarf, gold jewelry, sophisticated chic atmosphere, soft warm lighting, cinematic, highly detailed, realistic Use my uploaded face image as the ONLY facial and identity reference. No other faces, models, datasets, or references are allowed.

查看 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": "Young beautiful woman with long wavy hair, elegant sleeveless polka dot midi dress black and white pattern, sitting thoughtfully at stylish wine bar counter, hand near lips, luxury wine bottles wall background, Prada navy blue mini bag with silk scarf, gold jewelry, sophisticated chic atmosphere, soft warm lighting, cinematic, highly detailed, realistic Use my uploaded face image as the ONLY facial and identity reference. No other faces, models, datasets, or references are allowed."
}
JSON
IM
图像
Photography nano-banana-2

A hyper-realistic surreal composite scene set on a wooden ta...

A hyper-realistic surreal composite scene set on a wooden tabletop. A large oversized smartphone dominates the frame, creating a strong dimensional-break illusion. On the phone screen, the woman from the reference image appears much larger in a close-up winter environment, smiling happily while holding a clear glass with a visible Pepsi logo on it. A real human hand pours dark Pepsi cola from a cold bottle covered in condensation droplets directly toward the phone screen. The liquid visually breaks through the display and flows into the glass she is holding inside the screen, creating a powerful surreal effect. A closed book and a black pen sit on the wooden table beside the oversized phone to emphasize scale distortion. Warm natural lighting, soft cinematic shadows, ultra-sharp liquid splash details, hyper-realistic skin texture, realistic reflections on glass and screen, surreal cinematic advertising look, professional commercial photography quality, 8K realism.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyper-realistic surreal composite scene set on a wooden tabletop. A large oversized smartphone dominates the frame, creating a strong dimensional-break illusion. On the phone screen, the woman from the reference image appears much larger in a close-up winter environment, smiling happily while holding a clear glass with a visible Pepsi logo on it. A real human hand pours dark Pepsi cola from a cold bottle covered in condensation droplets directly toward the phone screen. The liquid visually breaks through the display and flows into the glass she is holding inside the screen, creating a powerful surreal effect. A closed book and a black pen sit on the wooden table beside the oversized phone to emphasize scale distortion. Warm natural lighting, soft cinematic shadows, ultra-sharp liquid splash details, hyper-realistic skin texture, realistic reflections on glass and screen, surreal cinematic advertising look, professional commercial photography quality, 8K realism."
}
JSON
IM
图像
Photography nano-banana-2

[PERSON NAME]. Act as a high-end sports graphic designer c...

[PERSON NAME]. Act as a high-end sports graphic designer creating a conceptual tribute poster. The style is a complex "dual exposure photo-grid composite" with mixed-media textures. **CENTRAL STRUCTURE (THE VESSEL):** The central focus is a large-scale, high-contrast black and white portrait silhouette of [PERSON NAME]. This main portrait acts as the container. **THE GRID FILL & TEXTURES (MIXED MEDIA):** The interior of the silhouette is populated by a dense "photo mosaic grid" of action shots from the person's career. **CRITICAL TEXTURE INSTRUCTION:** Do not just paste flat photos. Apply artistic textures to various grid cells to create a tactile, collage feel. Use effects like: - **Halftone Dots:** Comic-book style raster patterns on some cells. - **Fabric/Embroidery:** Subtle thread or canvas textures suggesting a jersey or patch. - **Film Grain:** Heavy noise on specific high-contrast action shots. **COLOR STRATEGY:** The base is Monochrome B&W. Use selective color overlays (relevant to the team/flag) ONLY on specific grid cells to create a rhythm. **TYPOGRAPHY & BRANDING (STRICT MICRO-SCALING):** 1. **Top Left (The Name):** Write "[PERSON NAME]" strictly using the font **Inter Semibold**. - **Kerning:** Tight negative kerning (-4%). - **Size:** SMALL and discreet. It must occupy **MAXIMUM 20%** of the canvas width. Do NOT make it large or loud. 1. **Top Right (The Symbol):** Place the primary logo (Team/Brand/Flag). - **Size:** VERY SMALL. It must occupy **MAXIMUM 10%** of the canvas width. **COMPOSITION & BACKGROUND:** - **Background:** Off-white or light grey with a **visible high-quality paper or concrete texture**. It should not be flat digital white. - **Alignment:** Center the figure perfectly. Maintain wide negative space around the object.

查看 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": "[PERSON NAME]. Act as a high-end sports graphic designer creating a conceptual tribute poster. The style is a complex \"dual exposure photo-grid composite\" with mixed-media textures. **CENTRAL STRUCTURE (THE VESSEL):** The central focus is a large-scale, high-contrast black and white portrait silhouette of [PERSON NAME]. This main portrait acts as the container. **THE GRID FILL & TEXTURES (MIXED MEDIA):** The interior of the silhouette is populated by a dense \"photo mosaic grid\" of action shots from the person's career. **CRITICAL TEXTURE INSTRUCTION:** Do not just paste flat photos. Apply artistic textures to various grid cells to create a tactile, collage feel. Use effects like: - **Halftone Dots:** Comic-book style raster patterns on some cells. - **Fabric/Embroidery:** Subtle thread or canvas textures suggesting a jersey or patch. - **Film Grain:** Heavy noise on specific high-contrast action shots. **COLOR STRATEGY:** The base is Monochrome B&W. Use selective color overlays (relevant to the team/flag) ONLY on specific grid cells to create a rhythm. **TYPOGRAPHY & BRANDING (STRICT MICRO-SCALING):** 1. **Top Left (The Name):** Write \"[PERSON NAME]\" strictly using the font **Inter Semibold**. - **Kerning:** Tight negative kerning (-4%). - **Size:** SMALL and discreet. It must occupy **MAXIMUM 20%** of the canvas width. Do NOT make it large or loud. 1. **Top Right (The Symbol):** Place the primary logo (Team/Brand/Flag). - **Size:** VERY SMALL. It must occupy **MAXIMUM 10%** of the canvas width. **COMPOSITION & BACKGROUND:** - **Background:** Off-white or light grey with a **visible high-quality paper or concrete texture**. It should not be flat digital white. - **Alignment:** Center the figure perfectly. Maintain wide negative space around the object."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

[BRAND NAME]: Enter the brand name here. Goal: Generate a hy...

[BRAND NAME]: Enter the brand name here. Goal: Generate a hyper-realistic studio photograph where the stylized logo icon of [BRAND NAME] is a physical 3D ice sculpture lying directly on a snowy surface. Constraint: NO TEXT inside or immediately near the central ice icon. Only the bottom signature. Light, airy background. 1. THE CENTRAL ICE ARTIFACT - Main Subject: A large, 3D volumetric sculpture in the exact shape of the [BRAND NAME] logo icon. - Material: Crafted from high-purity crystalline ice with intricate internal textures, frost needles, and frozen air bubbles. - Details: The surface of the ice logo is covered with small, realistic water droplets and light condensation. - Perspective: The logo is positioned at a 3/4 angle, lying horizontally on the snow to show its depth and thickness. 2. ENVIRONMENT & LAYOUT - View: Eye-level macro perspective, 3/4 view. - Surface: The logo is resting on a field of crisp, detailed, white powdery snow. - Background: A flawless, uniform, very light pale blue and white gradient background (much lighter than the original). - Shadow: A soft, realistic shadow is cast on the snow directly beneath the ice icon to ground it. 3. BOTTOM BRAND SIGNATURE (CRITICAL) - Placement: A clean horizontal signature block centered at the bottom of the frame, far below the ice artifact. - Elements: A tiny, flat, minimalist black version of the [BRAND NAME] logo icon on the left. - Text: The word "[BRAND NAME]" in a clean, bold, black sans-serif typeface immediately to the right of the tiny logo. - Scale: The signature is very small and subtle compared to the main ice sculpture. 4. AESTHETIC - Premium product photography, cold and crisp atmosphere, hyper-realistic 8k resolution, cinematic lighting, ultra-detailed textures.

查看 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]: Enter the brand name here. Goal: Generate a hyper-realistic studio photograph where the stylized logo icon of [BRAND NAME] is a physical 3D ice sculpture lying directly on a snowy surface. Constraint: NO TEXT inside or immediately near the central ice icon. Only the bottom signature. Light, airy background. 1. THE CENTRAL ICE ARTIFACT - Main Subject: A large, 3D volumetric sculpture in the exact shape of the [BRAND NAME] logo icon. - Material: Crafted from high-purity crystalline ice with intricate internal textures, frost needles, and frozen air bubbles. - Details: The surface of the ice logo is covered with small, realistic water droplets and light condensation. - Perspective: The logo is positioned at a 3/4 angle, lying horizontally on the snow to show its depth and thickness. 2. ENVIRONMENT & LAYOUT - View: Eye-level macro perspective, 3/4 view. - Surface: The logo is resting on a field of crisp, detailed, white powdery snow. - Background: A flawless, uniform, very light pale blue and white gradient background (much lighter than the original). - Shadow: A soft, realistic shadow is cast on the snow directly beneath the ice icon to ground it. 3. BOTTOM BRAND SIGNATURE (CRITICAL) - Placement: A clean horizontal signature block centered at the bottom of the frame, far below the ice artifact. - Elements: A tiny, flat, minimalist black version of the [BRAND NAME] logo icon on the left. - Text: The word \"[BRAND NAME]\" in a clean, bold, black sans-serif typeface immediately to the right of the tiny logo. - Scale: The signature is very small and subtle compared to the main ice sculpture. 4. AESTHETIC - Premium product photography, cold and crisp atmosphere, hyper-realistic 8k resolution, cinematic lighting, ultra-detailed textures."
}
JSON
IM
图像
Photography nano-banana-2

{ A hyper-realistic, ultra-detailed 8K cinematic wide-shot o...

{ A hyper-realistic, ultra-detailed 8K cinematic wide-shot of a football scene, captured from a dramatic low-angle perspective with a wide-angle lens and shallow depth of field, emphasizing speed, power, and realism. The scene features only two players on a professional football pitch. The primary player, positioned slightly ahead and in control of the ball, is dribbling with explosive movement and confident body language. His face is generated using the uploaded face as reference (100% likeness). He wears an ultra-realistic AI Trends football kit, designed like a top-tier international club jersey. The kit has a blue-green gradient finish, breathable performance fabric, and subtle geometric textures. “AI Trends” branding is printed boldly on the chest and both shoulders in premium sports typography. The fabric reacts naturally to motion, showing realistic folds, tension, and subtle sweat details, giving a luxury global campaign aesthetic. Running beside him is Cristiano Ronaldo, wearing his iconic classic football kit, instantly recognizable by its design, colors, and number. Cristiano is not holding the ball. He matches pace powerfully, positioned slightly to the side, ready for a decisive run or finish. No other players are on the field. The grass pitch is extremely detailed, with visible blades, dirt particles, and subtle turf displacement beneath their feet. Water droplets and dust rise with each step, enhancing motion realism. The background features a massive stadium with a softly blurred crowd, cinematic depth, and powerful volumetric lighting creating dramatic rim light around both players. Subtle motion blur enhances speed while both faces remain sharp and detailed. The mood is powerful and cinematic, resembling a high-budget sports film still and a premium AI Trends global campaign, with natural color grading, hyper-realistic textures, and professional sports photography aesthetics.

查看 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, ultra-detailed 8K cinematic wide-shot of a football scene, captured from a dramatic low-angle perspective with a wide-angle lens and shallow depth of field, emphasizing speed, power, and realism. The scene features only two players on a professional football pitch. The primary player, positioned slightly ahead and in control of the ball, is dribbling with explosive movement and confident body language. His face is generated using the uploaded face as reference (100% likeness). He wears an ultra-realistic AI Trends football kit, designed like a top-tier international club jersey. The kit has a blue-green gradient finish, breathable performance fabric, and subtle geometric textures. “AI Trends” branding is printed boldly on the chest and both shoulders in premium sports typography. The fabric reacts naturally to motion, showing realistic folds, tension, and subtle sweat details, giving a luxury global campaign aesthetic. Running beside him is Cristiano Ronaldo, wearing his iconic classic football kit, instantly recognizable by its design, colors, and number. Cristiano is not holding the ball. He matches pace powerfully, positioned slightly to the side, ready for a decisive run or finish. No other players are on the field. The grass pitch is extremely detailed, with visible blades, dirt particles, and subtle turf displacement beneath their feet. Water droplets and dust rise with each step, enhancing motion realism. The background features a massive stadium with a softly blurred crowd, cinematic depth, and powerful volumetric lighting creating dramatic rim light around both players. Subtle motion blur enhances speed while both faces remain sharp and detailed. The mood is powerful and cinematic, resembling a high-budget sports film still and a premium AI Trends global campaign, with natural color grading, hyper-realistic textures, and professional sports photography aesthetics."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

Epic 3D scene: a weathered passport lies open, its visa stam...

Epic 3D scene: a weathered passport lies open, its visa stamps erupting into the destinations they represent. Each ink impression becomes a portal—[CITY 1] rises in miniature from one stamp with [DETAIL 1], [CITY 2] pushes through another with [DETAIL 2], [CITY 3] manifests with [DETAIL 3]. [LANDMARK 1], [LANDMARK 2], and [LANDMARK 3] stand at different scales across the pages. Flight paths arc overhead as glowing golden trajectories weaving between all the worlds. Coffee stains become lakes. Worn edges erode into coastlines. [ATMOSPHERIC ELEMENT 1] drifts from one destination while [ATMOSPHERIC ELEMENT 2] swirls near another. Dramatic raking light, tilt-shift depth of field, 8K, UE5, cinematic lighting. The bureaucratic document transformed into a living archive of adventures.

查看 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": "Epic 3D scene: a weathered passport lies open, its visa stamps erupting into the destinations they represent. Each ink impression becomes a portal—[CITY 1] rises in miniature from one stamp with [DETAIL 1], [CITY 2] pushes through another with [DETAIL 2], [CITY 3] manifests with [DETAIL 3]. [LANDMARK 1], [LANDMARK 2], and [LANDMARK 3] stand at different scales across the pages. Flight paths arc overhead as glowing golden trajectories weaving between all the worlds. Coffee stains become lakes. Worn edges erode into coastlines. [ATMOSPHERIC ELEMENT 1] drifts from one destination while [ATMOSPHERIC ELEMENT 2] swirls near another. Dramatic raking light, tilt-shift depth of field, 8K, UE5, cinematic lighting. The bureaucratic document transformed into a living archive of adventures."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

Create a high-quality stylized 3D render of a clear, translu...

Create a high-quality stylized 3D render of a clear, translucent glass skeleton wearing black-rimmed glasses sitting at a wooden desk. The skeleton MUST be looking down at an open textbook and holding a yellow highlighter, actively highlighting a line of text. The scene MUST feature a warm gold desk lamp on the right side casting a cozy, yellow light that creates glossy reflections on the skeleton's surface. The desk is cluttered with a white coffee mug, a stack of hardcover books on the right, and scattered pens and pastel pink and yellow highlighters. The background MUST be a solid, soft pink wall. The overall aesthetic should be warm, studious, and visually soft. Do not include any text overlays or watermarks.

查看 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 high-quality stylized 3D render of a clear, translucent glass skeleton wearing black-rimmed glasses sitting at a wooden desk. The skeleton MUST be looking down at an open textbook and holding a yellow highlighter, actively highlighting a line of text. The scene MUST feature a warm gold desk lamp on the right side casting a cozy, yellow light that creates glossy reflections on the skeleton's surface. The desk is cluttered with a white coffee mug, a stack of hardcover books on the right, and scattered pens and pastel pink and yellow highlighters. The background MUST be a solid, soft pink wall. The overall aesthetic should be warm, studious, and visually soft. Do not include any text overlays or watermarks."
}
JSON
IM
图像
Photography nano-banana-2

{ "prompt": "Cinematic full-body studio portrait of a subj...

{ "prompt": "Cinematic full-body studio portrait of a subject using the uploaded face as exact reference (preserve identity, facial structure, and proportions). Slightly low-angle perspective with a 35mm lens for a commanding, sophisticated presence. Subject leaning casually against a dark minimalist plinth, arms crossed. Wearing a perfectly tailored slim-fit olive green suit and a crisp white dress shirt, top buttons undone. Intense chiaroscuro lighting with a single powerful volumetric spotlight from the upper-left, cutting through subtle atmospheric haze with swirling smoke and micro-dust particles. Sharp rim highlights along shoulders and silhouette, deep velvety shadows across the body, high-contrast moody aesthetic. Hyper-realistic textures, visible fabric weave, subtle reflections on a polished studio floor, professional cinematic lighting, ultra-detailed, 8K resolution, no text, no watermark.", "resolution": "7680x4320", "camera": { "lens": "35mm", "angle": "slightly low-angle", "aperture": "f/2.0", "iso": "100", "shutter_speed": "1/125" }, "quality": "ultra-high", "style": "cinematic, hyper-realistic, studio photography", "negative_prompt": "blurry, low-resolution, overexposed, underexposed, flat lighting, cartoon, CGI, plastic skin, extra limbs, distorted hands, bad anatomy, asymmetry, watermark, logo, text" }

查看 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\": \"Cinematic full-body studio portrait of a subject using the uploaded face as exact reference (preserve identity, facial structure, and proportions). Slightly low-angle perspective with a 35mm lens for a commanding, sophisticated presence. Subject leaning casually against a dark minimalist plinth, arms crossed. Wearing a perfectly tailored slim-fit olive green suit and a crisp white dress shirt, top buttons undone. Intense chiaroscuro lighting with a single powerful volumetric spotlight from the upper-left, cutting through subtle atmospheric haze with swirling smoke and micro-dust particles. Sharp rim highlights along shoulders and silhouette, deep velvety shadows across the body, high-contrast moody aesthetic. Hyper-realistic textures, visible fabric weave, subtle reflections on a polished studio floor, professional cinematic lighting, ultra-detailed, 8K resolution, no text, no watermark.\", \"resolution\": \"7680x4320\", \"camera\": { \"lens\": \"35mm\", \"angle\": \"slightly low-angle\", \"aperture\": \"f/2.0\", \"iso\": \"100\", \"shutter_speed\": \"1/125\" }, \"quality\": \"ultra-high\", \"style\": \"cinematic, hyper-realistic, studio photography\", \"negative_prompt\": \"blurry, low-resolution, overexposed, underexposed, flat lighting, cartoon, CGI, plastic skin, extra limbs, distorted hands, bad anatomy, asymmetry, watermark, logo, text\" }"
}
JSON
IM
图像
Illustration & 3D nano-banana-2

{ "reference_images": { "scene_reference": "ATTACHED_IMAGE...

{ "reference_images": { "scene_reference": "ATTACHED_IMAGE", "usage_rule": "Use this image as the sole and exact source for scene layout, object placement, and composition. Do not reinterpret or replace the scene." }, "concept": { "type": "miniature diorama reconstruction", "intent": "Rebuild the attached scene as a clean, collectible-scale diorama while preserving the original spatial relationships" }, "environment": { "scale": "tabletop miniature", "ground": { "type": "sculpted base", "behavior": "supports all objects naturally without enclosure", "edges": "clean, minimal, slightly beveled" }, "background": { "type": "seamless studio backdrop", "color": "pure white", "constraint": "no environment beyond the diorama base" } }, "objects_and_elements": { "layout_rule": "All objects must remain in the same relative positions as in the reference image", "primary_elements": "exact vehicles, structures, props, and terrain visible in the reference", "detail_handling": "simplified but faithful miniature proportions", "characters": { "presence": "only if present in the reference", "style": "miniature figurines, no facial realism" } }, "composition": { "view": "isometric or slightly elevated 3/4 perspective", "framing": "entire diorama visible, centered", "cropping": "no zoom, no cinematic crop" }, "camera": { "lens_equivalent": "35mm–50mm", "perspective": "miniature realism", "distortion": "none" }, "lighting": { "type": "soft studio lighting", "direction": "overhead and slightly angled", "shadows": "subtle contact shadows only beneath objects", "avoid": [ "dramatic lighting", "spotlights", "cinematic contrast" ] }, "materials_and_style": { "surface_finish": "smooth, matte or lightly satin", "material_quality": "high-quality scale model materials", "aesthetic": "clean, modern, premium diorama" }, "quality_controls": { "image_clarity": "ultra-clean", "grain": "none", "noise": "none", "motion_blur": "none" }, "negative_prompts": [ "glass case", "display box", "museum enclosure", "transparent cube", "protective casing", "reflections on glass", "labels or plaques", "text overlays", "busy background", "cinematic blur" ] }

查看 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": "{ \"reference_images\": { \"scene_reference\": \"ATTACHED_IMAGE\", \"usage_rule\": \"Use this image as the sole and exact source for scene layout, object placement, and composition. Do not reinterpret or replace the scene.\" }, \"concept\": { \"type\": \"miniature diorama reconstruction\", \"intent\": \"Rebuild the attached scene as a clean, collectible-scale diorama while preserving the original spatial relationships\" }, \"environment\": { \"scale\": \"tabletop miniature\", \"ground\": { \"type\": \"sculpted base\", \"behavior\": \"supports all objects naturally without enclosure\", \"edges\": \"clean, minimal, slightly beveled\" }, \"background\": { \"type\": \"seamless studio backdrop\", \"color\": \"pure white\", \"constraint\": \"no environment beyond the diorama base\" } }, \"objects_and_elements\": { \"layout_rule\": \"All objects must remain in the same relative positions as in the reference image\", \"primary_elements\": \"exact vehicles, structures, props, and terrain visible in the reference\", \"detail_handling\": \"simplified but faithful miniature proportions\", \"characters\": { \"presence\": \"only if present in the reference\", \"style\": \"miniature figurines, no facial realism\" } }, \"composition\": { \"view\": \"isometric or slightly elevated 3/4 perspective\", \"framing\": \"entire diorama visible, centered\", \"cropping\": \"no zoom, no cinematic crop\" }, \"camera\": { \"lens_equivalent\": \"35mm–50mm\", \"perspective\": \"miniature realism\", \"distortion\": \"none\" }, \"lighting\": { \"type\": \"soft studio lighting\", \"direction\": \"overhead and slightly angled\", \"shadows\": \"subtle contact shadows only beneath objects\", \"avoid\": [ \"dramatic lighting\", \"spotlights\", \"cinematic contrast\" ] }, \"materials_and_style\": { \"surface_finish\": \"smooth, matte or lightly satin\", \"material_quality\": \"high-quality scale model materials\", \"aesthetic\": \"clean, modern, premium diorama\" }, \"quality_controls\": { \"image_clarity\": \"ultra-clean\", \"grain\": \"none\", \"noise\": \"none\", \"motion_blur\": \"none\" }, \"negative_prompts\": [ \"glass case\", \"display box\", \"museum enclosure\", \"transparent cube\", \"protective casing\", \"reflections on glass\", \"labels or plaques\", \"text overlays\", \"busy background\", \"cinematic blur\" ] }"
}
JSON
IM
图像
Product & Brand nano-banana-2

A high-quality professional product photography of a creativ...

A high-quality professional product photography of a creative structural packaging design for [Fruit Name]. The packaging is made of premium corrugated cardboard, intricately crafted into the literal shape of a giant stylized [Shape e.g. spherical, curved, elongated] [Fruit Name]. The exterior surface features a vibrant and sophisticated printed pattern of minimalist [Pattern Description e.g. geometric hexagons, organic wavy lines, dotted stippling, botanical line-art, or horizontal ridges], mimicking the Natural Skin of the Fruit in a duo-tone palette of [Color 1] and [Color 2]. Features clever die-cut windows that reveal the actual [Actual Product Inside] stored inside. Minimalist modern typography on the side saying "[NAME]". Includes eco-friendly details like a small recycling logo and a [3D Corrugated Cardboard Detail: Stem/green Leaf/Crown] on top. Soft studio lighting with gentle shadows, placed on a clean solid pastel [Background Color] background. 8k resolution, photorealistic, cinematic composition, industrial design 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 high-quality professional product photography of a creative structural packaging design for [Fruit Name]. The packaging is made of premium corrugated cardboard, intricately crafted into the literal shape of a giant stylized [Shape e.g. spherical, curved, elongated] [Fruit Name]. The exterior surface features a vibrant and sophisticated printed pattern of minimalist [Pattern Description e.g. geometric hexagons, organic wavy lines, dotted stippling, botanical line-art, or horizontal ridges], mimicking the Natural Skin of the Fruit in a duo-tone palette of [Color 1] and [Color 2]. Features clever die-cut windows that reveal the actual [Actual Product Inside] stored inside. Minimalist modern typography on the side saying \"[NAME]\". Includes eco-friendly details like a small recycling logo and a [3D Corrugated Cardboard Detail: Stem/green Leaf/Crown] on top. Soft studio lighting with gentle shadows, placed on a clean solid pastel [Background Color] background. 8k resolution, photorealistic, cinematic composition, industrial design aesthetic."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

A miniature isometric architectural diorama of [LANDMARK NAM...

A miniature isometric architectural diorama of [LANDMARK NAME], accurately reflecting its real-world structure and proportions, placed on a small floating base with subtle surrounding buildings and landscape elements inspired by [CITY / COUNTRY]. Realistic materials and natural textures, physically accurate stone, concrete, metal, and glass surfaces. True-to-life color palette based on the actual landmark, muted and realistic tones. Off-white studio background with soft, natural lighting, gentle shadows, and clean composition. High-detail, realistic yet refined 3D render, premium architectural model aesthetic, no people, no text.

查看 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 miniature isometric architectural diorama of [LANDMARK NAME], accurately reflecting its real-world structure and proportions, placed on a small floating base with subtle surrounding buildings and landscape elements inspired by [CITY / COUNTRY]. Realistic materials and natural textures, physically accurate stone, concrete, metal, and glass surfaces. True-to-life color palette based on the actual landmark, muted and realistic tones. Off-white studio background with soft, natural lighting, gentle shadows, and clean composition. High-detail, realistic yet refined 3D render, premium architectural model aesthetic, no people, no text."
}
JSON
IM
图像
Product & Brand nano-banana-2

{ "subject": { "person": "Woman, appears to be in her...

{ "subject": { "person": "Woman, appears to be in her 20s or 30s", "pose_and_expression": [ "Standing by window, looking out, relaxed", "Reaching for bottle on counter, hand focus", "Looking in mirror, slight smile", "Hand dispensing serum from bottle, close-up", "Serum drop on fingertip, macro shot", "Applying serum to face, eyes closed, serene", "Face close-up, eyes closed, content", "Bottle and orchid on counter, still life", "Walking away from camera, standing by window" ] }, "clothing": { "items": "White robe, white pajamas/loungewear", "material": "Soft, flowing fabric", "style": "Casual, luxurious" }, "hair": { "color": "Dark brown", "style": "Pulled back, neat bun or ponytail" }, "face": { "makeup": "Natural, minimal", "skin": "Clear, glowing", "expression": "Calm, serene, content" }, "accessories": { "jewelry": "Simple ring on ring finger", "props": [ "Glass skincare bottle with gold pump dispenser", "Product label: 'Promptopia'", "White orchid in a small white vase" ] }, "environment": { "location": "Modern, luxurious bathroom", "elements": [ "Large floor-to-ceiling windows", "Marble countertop and walls", "Round mirror", "View of trees/garden outside", "Fog or mist outside window" ], "atmosphere": "Serene, spa-like, tranquil" }, "lighting": { "source": "Natural daylight", "quality": "Warm, golden, soft, diffused", "time_of_day": "Sunrise or golden hour" }, "camera": { "type": "Photography collage", "shots": [ "Wide shot", "Medium shot", "Close-up", "Macro shot" ], "focus": "Sharp on subject and product, soft background blur (bokeh)" }, "style": { "aesthetic": "Cinematic, editorial, beauty, wellness, clean, minimalist", "color_palette": "Warm neutrals, white, gold, natural greens" } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"subject\": { \"person\": \"Woman, appears to be in her 20s or 30s\", \"pose_and_expression\": [ \"Standing by window, looking out, relaxed\", \"Reaching for bottle on counter, hand focus\", \"Looking in mirror, slight smile\", \"Hand dispensing serum from bottle, close-up\", \"Serum drop on fingertip, macro shot\", \"Applying serum to face, eyes closed, serene\", \"Face close-up, eyes closed, content\", \"Bottle and orchid on counter, still life\", \"Walking away from camera, standing by window\" ] }, \"clothing\": { \"items\": \"White robe, white pajamas/loungewear\", \"material\": \"Soft, flowing fabric\", \"style\": \"Casual, luxurious\" }, \"hair\": { \"color\": \"Dark brown\", \"style\": \"Pulled back, neat bun or ponytail\" }, \"face\": { \"makeup\": \"Natural, minimal\", \"skin\": \"Clear, glowing\", \"expression\": \"Calm, serene, content\" }, \"accessories\": { \"jewelry\": \"Simple ring on ring finger\", \"props\": [ \"Glass skincare bottle with gold pump dispenser\", \"Product label: 'Promptopia'\", \"White orchid in a small white vase\" ] }, \"environment\": { \"location\": \"Modern, luxurious bathroom\", \"elements\": [ \"Large floor-to-ceiling windows\", \"Marble countertop and walls\", \"Round mirror\", \"View of trees/garden outside\", \"Fog or mist outside window\" ], \"atmosphere\": \"Serene, spa-like, tranquil\" }, \"lighting\": { \"source\": \"Natural daylight\", \"quality\": \"Warm, golden, soft, diffused\", \"time_of_day\": \"Sunrise or golden hour\" }, \"camera\": { \"type\": \"Photography collage\", \"shots\": [ \"Wide shot\", \"Medium shot\", \"Close-up\", \"Macro shot\" ], \"focus\": \"Sharp on subject and product, soft background blur (bokeh)\" }, \"style\": { \"aesthetic\": \"Cinematic, editorial, beauty, wellness, clean, minimalist\", \"color_palette\": \"Warm neutrals, white, gold, natural greens\" } }"
}
JSON
IM
图像
Illustration & 3D nano-banana-2

Abstract liquid typography spelling "text", thick transparen...

Abstract liquid typography spelling "text", thick transparent water-gel material, hyper realistic refraction and subtle caustics, realistic surface tension, sculpted droplet forms merged into smooth letter curves, glossy highlights, micro bubbles inside the gel, soft contact shadows on a pure white seamless background, scattered water droplets on the surface with sharp specular reflections, studio lighting, crisp photorealistic 3D render, macro detail, sharp focus, 8k, 1:1, no watermark, no extra text

查看 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": "Abstract liquid typography spelling \"text\", thick transparent water-gel material, hyper realistic refraction and subtle caustics, realistic surface tension, sculpted droplet forms merged into smooth letter curves, glossy highlights, micro bubbles inside the gel, soft contact shadows on a pure white seamless background, scattered water droplets on the surface with sharp specular reflections, studio lighting, crisp photorealistic 3D render, macro detail, sharp focus, 8k, 1:1, no watermark, no extra text"
}
JSON
IM
图像
Photography nano-banana-2

3x3 Photo Collage / 9-Panel Grid.",       "layout": "Nine ve...

3x3 Photo Collage / 9-Panel Grid.", "layout": "Nine vertical portrait images arranged in a square grid.", "consistency": "Same subject, same outfit, and same lighting across all 9 panels." }, "aesthetic_style": { "theme": "Gen Z Home Party / 'Maiden Pavilion' Photoshoot.", "lighting_technique": "Direct On-Camera Flash (Hard Light).", "visuals": "High contrast, sharp shadows, chaotic fun, vibrant colors against a white background." }, "subject_details": { "appearance": "Young Asian woman, fair skin, long dark wavy hair with volume.", "outfit": "White floral camisole top, blue denim shorts.", "makeup": "Heavy pink blush (Igari style), red lips, glitter on cheeks." }, "environment_and_props": { "background": "White wall with taped photos, white bed sheets.", "decor": "Silver disco balls (various sizes), colorful metallic confetti scattered everywhere, brown teddy bear, pink retro corded phone." }, "panel_pose_breakdown": { "1_top_left": "Lying on stomach (prone), resting chin on crossed arms, looking at camera. Confetti in hair.", "2_top_center": "Top-down view lying on back, winking one eye, making a peace sign near face. Hair fanned out.", "3_top_right": "Sitting sideways, knees bent, laughing candidly while throwing a handful of confetti in the air.", "4_middle_left": "Leaning upper body over a large silver disco ball, looking intensely at the camera.", "5_middle_center": "Close-up portrait. Hands touching cheeks in a 'surprised' or 'shy' gesture. Confetti stuck to cheeks.", "6_middle_right": "Lying on back amongst the disco balls, one arm reaching up towards the ceiling/camera.", "7_bottom_left": "Upside-down perspective (head at bottom of frame), playful expression, hair cascading down.", "8_bottom_center": "Sitting cross-legged (Lotus position), hugging the brown teddy bear tight, pouting slightly.", "9_bottom_right": "Sitting up, holding the pink retro telephone receiver to ear, looking sideways as if listening to gossip." }, "camera_technical_values": { "focal_length": "35mm (Versatile environmental portrait lens).", "aperture": "f/5.6 (Ensures subject and props are in focus).", "shutter_speed": "1/200s (Flash sync to freeze confetti motion).", "iso": "ISO 200.", "lighting": "Hard flash creates a distinct drop shadow behind the subject on the white wall and specular highlights on the disco balls." } }, "midjourney_string": "3x3 photo grid collage of a cute Asian girl at a home party, wearing white floral top and

查看 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": "3x3 Photo Collage / 9-Panel Grid.\", \"layout\": \"Nine vertical portrait images arranged in a square grid.\", \"consistency\": \"Same subject, same outfit, and same lighting across all 9 panels.\" }, \"aesthetic_style\": { \"theme\": \"Gen Z Home Party / 'Maiden Pavilion' Photoshoot.\", \"lighting_technique\": \"Direct On-Camera Flash (Hard Light).\", \"visuals\": \"High contrast, sharp shadows, chaotic fun, vibrant colors against a white background.\" }, \"subject_details\": { \"appearance\": \"Young Asian woman, fair skin, long dark wavy hair with volume.\", \"outfit\": \"White floral camisole top, blue denim shorts.\", \"makeup\": \"Heavy pink blush (Igari style), red lips, glitter on cheeks.\" }, \"environment_and_props\": { \"background\": \"White wall with taped photos, white bed sheets.\", \"decor\": \"Silver disco balls (various sizes), colorful metallic confetti scattered everywhere, brown teddy bear, pink retro corded phone.\" }, \"panel_pose_breakdown\": { \"1_top_left\": \"Lying on stomach (prone), resting chin on crossed arms, looking at camera. Confetti in hair.\", \"2_top_center\": \"Top-down view lying on back, winking one eye, making a peace sign near face. Hair fanned out.\", \"3_top_right\": \"Sitting sideways, knees bent, laughing candidly while throwing a handful of confetti in the air.\", \"4_middle_left\": \"Leaning upper body over a large silver disco ball, looking intensely at the camera.\", \"5_middle_center\": \"Close-up portrait. Hands touching cheeks in a 'surprised' or 'shy' gesture. Confetti stuck to cheeks.\", \"6_middle_right\": \"Lying on back amongst the disco balls, one arm reaching up towards the ceiling/camera.\", \"7_bottom_left\": \"Upside-down perspective (head at bottom of frame), playful expression, hair cascading down.\", \"8_bottom_center\": \"Sitting cross-legged (Lotus position), hugging the brown teddy bear tight, pouting slightly.\", \"9_bottom_right\": \"Sitting up, holding the pink retro telephone receiver to ear, looking sideways as if listening to gossip.\" }, \"camera_technical_values\": { \"focal_length\": \"35mm (Versatile environmental portrait lens).\", \"aperture\": \"f/5.6 (Ensures subject and props are in focus).\", \"shutter_speed\": \"1/200s (Flash sync to freeze confetti motion).\", \"iso\": \"ISO 200.\", \"lighting\": \"Hard flash creates a distinct drop shadow behind the subject on the white wall and specular highlights on the disco balls.\" } }, \"midjourney_string\": \"3x3 photo grid collage of a cute Asian girl at a home party, wearing white floral top and"
}
JSON
IM
图像
Photography nano-banana-2

A cinematic 1970s-inspired fashion portrait of a graceful yo...

A cinematic 1970s-inspired fashion portrait of a graceful young woman seated on worn stone steps outside a cozy street café. She holds an ornate deep-green ceramic coffee cup with delicate gold rim accents, gently resting it in her hands as she gazes softly toward the camera with calm confidence. Her expression feels serene, thoughtful, and timeless. Her hair falls in soft, natural waves with loose strands framing her face, styled in a classic vintage manner. Makeup reflects 1970s elegance: matte crimson-red lips, subtle winged eyeliner, warm-toned blush, and softly defined brows. She wears a luxurious forest-green knitted sweater with a relaxed fit, paired with a flowing black tulle skirt that moves lightly with the air. A warm plaid scarf in earthy browns, burnt orange, and muted reds is draped casually around her neck. Beside her rests a premium dark-green leather crossbody bag with gold filigree hardware and a delicate chain strap. The background features an autumn café street with scattered fallen leaves, glowing amber lights behind glass windows, and a soft urban stillness. Shot with an 85mm lens at f/1.8, shallow depth of field, warm analog film grain, muted earthy palette, dreamy cinematic mood, ultra-realistic fashion editorial photography inspired by classic 1970s film aesthetics.

查看 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 1970s-inspired fashion portrait of a graceful young woman seated on worn stone steps outside a cozy street café. She holds an ornate deep-green ceramic coffee cup with delicate gold rim accents, gently resting it in her hands as she gazes softly toward the camera with calm confidence. Her expression feels serene, thoughtful, and timeless. Her hair falls in soft, natural waves with loose strands framing her face, styled in a classic vintage manner. Makeup reflects 1970s elegance: matte crimson-red lips, subtle winged eyeliner, warm-toned blush, and softly defined brows. She wears a luxurious forest-green knitted sweater with a relaxed fit, paired with a flowing black tulle skirt that moves lightly with the air. A warm plaid scarf in earthy browns, burnt orange, and muted reds is draped casually around her neck. Beside her rests a premium dark-green leather crossbody bag with gold filigree hardware and a delicate chain strap. The background features an autumn café street with scattered fallen leaves, glowing amber lights behind glass windows, and a soft urban stillness. Shot with an 85mm lens at f/1.8, shallow depth of field, warm analog film grain, muted earthy palette, dreamy cinematic mood, ultra-realistic fashion editorial photography inspired by classic 1970s film aesthetics."
}
JSON
IM
图像
UI & Graphic nano-banana-2

Ultra-clean modern editorial infographic poster (1080x1080),...

Ultra-clean modern editorial infographic poster (1080x1080), premium magazine layout meets lifestyle photography/illustration. **TITLE:** Large, bold sans-serif text at top center: "HUMAN LIVER" **CENTRAL VISUAL:** A realistic, high-fidelity 3D illustration of the Human Liver (showing Right/Left lobes and Gallbladder). Color palette: Terracotta, deep brownish-red, and soft coral, set against a clean soft beige/off-white background. Lighting is studio-soft. **LAYOUT SECTIONS (Matching the reference):** * **Section 1 - Quick Facts (Top Left/Right floating bubbles):** * "Weight: ~1.5 kg (Heaviest internal organ)" * "Regeneration: Can grow back from 25%" * "Location: Upper Right Abdomen" * "Blood Flow: Filters 1.4 Liters/min" * **Section 2 - Core Parts / Systems (Labels pointing to central organ):** * Right Lobe * Left Lobe * Gallbladder (Greenish sac underneath) * Common Bile Duct * Hepatic Portal Vein * **Section 4 - Functions / Uses (Left side list with minimal icons):** * **Detoxification:** Filters toxins from blood. * **Bile Production:** Digestion of fats. * **Metabolism:** Processes carbs & proteins. * **Storage:** Stores Glycogen, Iron, Vitamins. * **Section 5 - Related Highlights (Right side list with minimal icons):** * **Chemical Factory:** Performs 500+ vital functions. * **Immune Defense:** Fights infections in blood. * **Clotting:** Produces proteins for blood clotting. * **Section 6 - Tips / Best Practices (Bottom row, card style with icons):** 1. **Limit Alcohol:** Prevents cirrhosis/fatty liver. 2. **Hydration:** Water helps flush toxins. 3. **Balanced Diet:** Low sugar, high fiber. 4. **Vaccination:** Hepatitis A & B protection. 5. **Exercise:** Burn triglycerides/fat. **STYLE:** Glassmorphism effects on text boxes, soft drop shadows, medical accuracy mixed with high-end graphic design aesthetics.

查看 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 editorial infographic poster (1080x1080), premium magazine layout meets lifestyle photography/illustration. **TITLE:** Large, bold sans-serif text at top center: \"HUMAN LIVER\" **CENTRAL VISUAL:** A realistic, high-fidelity 3D illustration of the Human Liver (showing Right/Left lobes and Gallbladder). Color palette: Terracotta, deep brownish-red, and soft coral, set against a clean soft beige/off-white background. Lighting is studio-soft. **LAYOUT SECTIONS (Matching the reference):** * **Section 1 - Quick Facts (Top Left/Right floating bubbles):** * \"Weight: ~1.5 kg (Heaviest internal organ)\" * \"Regeneration: Can grow back from 25%\" * \"Location: Upper Right Abdomen\" * \"Blood Flow: Filters 1.4 Liters/min\" * **Section 2 - Core Parts / Systems (Labels pointing to central organ):** * Right Lobe * Left Lobe * Gallbladder (Greenish sac underneath) * Common Bile Duct * Hepatic Portal Vein * **Section 4 - Functions / Uses (Left side list with minimal icons):** * **Detoxification:** Filters toxins from blood. * **Bile Production:** Digestion of fats. * **Metabolism:** Processes carbs & proteins. * **Storage:** Stores Glycogen, Iron, Vitamins. * **Section 5 - Related Highlights (Right side list with minimal icons):** * **Chemical Factory:** Performs 500+ vital functions. * **Immune Defense:** Fights infections in blood. * **Clotting:** Produces proteins for blood clotting. * **Section 6 - Tips / Best Practices (Bottom row, card style with icons):** 1. **Limit Alcohol:** Prevents cirrhosis/fatty liver. 2. **Hydration:** Water helps flush toxins. 3. **Balanced Diet:** Low sugar, high fiber. 4. **Vaccination:** Hepatitis A & B protection. 5. **Exercise:** Burn triglycerides/fat. **STYLE:** Glassmorphism effects on text boxes, soft drop shadows, medical accuracy mixed with high-end graphic design aesthetics."
}
JSON
IM
图像
Product & Brand nano-banana-2

A beverage can branded [BRAND NAME], entirely made from vibr...

A beverage can branded [BRAND NAME], entirely made from vibrant, fluffy plush fabric, positioned centrally against a soft, plush background in the signature colors of [BRAND NAME]. Bold Pop Art and Memphis design style, playful yet premium aesthetic. Bright, clean studio lighting that strongly emphasizes the plush texture, visible fibers, softness, and tactile depth. Sharp focus, high color saturation, smooth shadows, modern commercial product shot, minimal composition, ultra-high 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 beverage can branded [BRAND NAME], entirely made from vibrant, fluffy plush fabric, positioned centrally against a soft, plush background in the signature colors of [BRAND NAME]. Bold Pop Art and Memphis design style, playful yet premium aesthetic. Bright, clean studio lighting that strongly emphasizes the plush texture, visible fibers, softness, and tactile depth. Sharp focus, high color saturation, smooth shadows, modern commercial product shot, minimal composition, ultra-high resolution."
}
JSON
IM
图像
Product & Brand nano-banana-2

[BRAND NAME]. Act as a Senior 3D Product Visualization Artis...

[BRAND NAME]. Act as a Senior 3D Product Visualization Artist and Cinematic Art Director specializing in luxury brand key visuals for high-end editorial and streetwear campaigns. PHASE 1: LOGO SUBJECT Autonomously identify the official, universally recognized logo/logotype of [BRAND NAME]. Reproduce it with maximum fidelity to the original silhouette, proportions, andgeometry — no stylistic distortion, no graffiti interpretation. The logo shape must be instantlyrecognizable as the real [BRAND NAME] mark. Extrude the logo into a solid 3D object with a depth of approximately 15–20% of its height. All surfaces — front face, side extrusion, and beveled edges — must be coated in a single unified material: Surface material: hyper-polished liquid chrome. Reflectance value 0.98 — near-perfect mirror finish. Apply full Ray-Traced environment reflections: the logo must visibly reflect the surrounding sky gradient, flower field, and light sources within its curved and flat surfaces. Bevel radius on all hard edges: moderate (enough to catch sharp specular highlights). Add Subsurface Scattering on the thinnest structural parts of the logo (fine lines, serifs, icon details) to create a subtle inner glow at the edges. Place 4–8 prismatic star-shaped lens-flare sparkles (4-point) at the highest specular peaks — corners, tips, and curved peaks of the logo geometry. The sparkles must feel organic, not uniformly distributed. Zero matte surfaces. Zero plastic look. The entire object must read as cast from liquid silver. PHASE 2: ENVIRONMENT & BACKGROUND Background: a wide cinematic landscape at the golden-lilac hour (just after sunset). A vast flower field fills the lower third — densely packed lavender and white wildflowers with realistic micro-texture and subtle wind motion-blur on the far clusters. Middle ground fades into soft purple-grey bokeh haze. Sky: gradient from warm blush rose (#E8A0BF) at the horizon through lilac (#C3A6D4) to cool powder blue (#A8C4D8) at the top. Add 3–5 loose silhouetted bird clusters (starlings, small and sharp) scattered across the upper left and right quadrants. Volumetric atmospheric haze sits on the horizon line. Autonomously shift the environment's color palette to reflect [BRAND NAME]'s iconic brand identity — introduce the brand's signature hue as a tonal wash in the sky gradient or as the dominant flower color in the field. Preserve the overall ethereal, editorial mood. The environment must feel like it was art-directed specifically for this brand — not generic. PHASE 3: COMPOSITION & LAYOUT Format: 1:1 square. The chrome logo is centered horizontally and placed at the vertical midpoint — monumental in scale, spanning 65–80% of frame width.Apply a subtle forced perspective tilt (2–4 degrees) for dynamic energy without distorting logo recognition. The bottom edge of the logo object grazes or slightly overlaps the top of the flower field, integrating the 3D object naturally into the environment. The logo casts a soft diffused shadow downward into the flowers. Lower-left corner: 2–3 lines of micro-copy in clean white sans-serif at minimal optical size. Autonomously generate a poetic 3-line brand statement relevant to [BRAND NAME]'s world, heritage, and aesthetic language. Bottom-left: "[BRAND NAME]" in small caps logotype label. Bottom-right: a secondary flat 2D chrome version of the same logo rendered small as a finishing mark. PHASE 4: LIGHTING Primary: large soft area light from upper-left simulating post-sunset overcast sky — fully diffused, no hard shadows, color temperature 5800K with a lilac tint overlay. Secondary: warm rim light (3200K) grazing the bottom and side edges of the logo from behind — creates a golden separation halo between the object and the field. Global Illumination enabled — the chrome logo must realistically bounce and absorb the landscape's ambient color. The flower field's purple tones should be faintly visible in the lower reflective surfaces of the logo. Volumetric god rays faintly visible through any negative space or cutouts within the logo geometry. TECH SPECS Render engine: Octane Render aesthetic. Ray Tracing: maximum bounces (16+). Depth of Field: f/11 equivalent — full logo sharp, far background in soft bokeh only. Tone mapping: lifted blacks, compressed highlights, filmic S-curve. Color grade: desaturated midtones, preserved pastels, cool shadow tones. Film grain: subtle (ISO 200 equivalent). Chromatic Aberration: 0.2–0.3px on peripheral logo edges only. Anti-aliasing: maximum. Strictly no AI-plastic normals. No smooth uniform shading. Microscopic surface imperfections on the chrome required for realism (micro-scratches, 0.5% roughness noise map). Mood reference: luxury brand retrospective editorial for Highsnobiety or AnOther 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": "[BRAND NAME]. Act as a Senior 3D Product Visualization Artist and Cinematic Art Director specializing in luxury brand key visuals for high-end editorial and streetwear campaigns. PHASE 1: LOGO SUBJECT Autonomously identify the official, universally recognized logo/logotype of [BRAND NAME]. Reproduce it with maximum fidelity to the original silhouette, proportions, andgeometry — no stylistic distortion, no graffiti interpretation. The logo shape must be instantlyrecognizable as the real [BRAND NAME] mark. Extrude the logo into a solid 3D object with a depth of approximately 15–20% of its height. All surfaces — front face, side extrusion, and beveled edges — must be coated in a single unified material: Surface material: hyper-polished liquid chrome. Reflectance value 0.98 — near-perfect mirror finish. Apply full Ray-Traced environment reflections: the logo must visibly reflect the surrounding sky gradient, flower field, and light sources within its curved and flat surfaces. Bevel radius on all hard edges: moderate (enough to catch sharp specular highlights). Add Subsurface Scattering on the thinnest structural parts of the logo (fine lines, serifs, icon details) to create a subtle inner glow at the edges. Place 4–8 prismatic star-shaped lens-flare sparkles (4-point) at the highest specular peaks — corners, tips, and curved peaks of the logo geometry. The sparkles must feel organic, not uniformly distributed. Zero matte surfaces. Zero plastic look. The entire object must read as cast from liquid silver. PHASE 2: ENVIRONMENT & BACKGROUND Background: a wide cinematic landscape at the golden-lilac hour (just after sunset). A vast flower field fills the lower third — densely packed lavender and white wildflowers with realistic micro-texture and subtle wind motion-blur on the far clusters. Middle ground fades into soft purple-grey bokeh haze. Sky: gradient from warm blush rose (#E8A0BF) at the horizon through lilac (#C3A6D4) to cool powder blue (#A8C4D8) at the top. Add 3–5 loose silhouetted bird clusters (starlings, small and sharp) scattered across the upper left and right quadrants. Volumetric atmospheric haze sits on the horizon line. Autonomously shift the environment's color palette to reflect [BRAND NAME]'s iconic brand identity — introduce the brand's signature hue as a tonal wash in the sky gradient or as the dominant flower color in the field. Preserve the overall ethereal, editorial mood. The environment must feel like it was art-directed specifically for this brand — not generic. PHASE 3: COMPOSITION & LAYOUT Format: 1:1 square. The chrome logo is centered horizontally and placed at the vertical midpoint — monumental in scale, spanning 65–80% of frame width.Apply a subtle forced perspective tilt (2–4 degrees) for dynamic energy without distorting logo recognition. The bottom edge of the logo object grazes or slightly overlaps the top of the flower field, integrating the 3D object naturally into the environment. The logo casts a soft diffused shadow downward into the flowers. Lower-left corner: 2–3 lines of micro-copy in clean white sans-serif at minimal optical size. Autonomously generate a poetic 3-line brand statement relevant to [BRAND NAME]'s world, heritage, and aesthetic language. Bottom-left: \"[BRAND NAME]\" in small caps logotype label. Bottom-right: a secondary flat 2D chrome version of the same logo rendered small as a finishing mark. PHASE 4: LIGHTING Primary: large soft area light from upper-left simulating post-sunset overcast sky — fully diffused, no hard shadows, color temperature 5800K with a lilac tint overlay. Secondary: warm rim light (3200K) grazing the bottom and side edges of the logo from behind — creates a golden separation halo between the object and the field. Global Illumination enabled — the chrome logo must realistically bounce and absorb the landscape's ambient color. The flower field's purple tones should be faintly visible in the lower reflective surfaces of the logo. Volumetric god rays faintly visible through any negative space or cutouts within the logo geometry. TECH SPECS Render engine: Octane Render aesthetic. Ray Tracing: maximum bounces (16+). Depth of Field: f/11 equivalent — full logo sharp, far background in soft bokeh only. Tone mapping: lifted blacks, compressed highlights, filmic S-curve. Color grade: desaturated midtones, preserved pastels, cool shadow tones. Film grain: subtle (ISO 200 equivalent). Chromatic Aberration: 0.2–0.3px on peripheral logo edges only. Anti-aliasing: maximum. Strictly no AI-plastic normals. No smooth uniform shading. Microscopic surface imperfections on the chrome required for realism (micro-scratches, 0.5% roughness noise map). Mood reference: luxury brand retrospective editorial for Highsnobiety or AnOther Magazine."
}
JSON
IM
图像
Photography nano-banana-2

A hyperrealistic 8K black and white extreme close-up portrai...

A hyperrealistic 8K black and white extreme close-up portrait of a young man's face, focusing tightly on his eye, cheekbone, and lips. Bright sunlight breaks into soft, wavy luminous lines that ripple across his skin like underwater reflections. The light flows diagonally, wrapping around the contours of his face in surreal patterns, while the shadows dissolve into smooth mid-gray tones instead of deep black. The skin is rendered in lifelike detail-visible pores, faint freckles, subtle stubble, and natural imperfections catch the glowing light realistically. The lips are softly highlighted, and the eye reflects fragments of the luminous waves, adding depth and emotion without artificial glow. The camera framing feels macro, pressed close to the face, with razor-thin depth of field: one illuminated ridge of skin is perfectly sharp, while the rest melts into velvety blur. The glassy, fluid quality of the light lines gives the portrait a surreal dreamlike aesthetic while remaining grounded in photographic realism. The background disappears into soft gray gradients, leaving only the interplay of skin texture and luminous wave-like rays. Fine cinematic grain overlays the frame, enhancing the tactile analog feel. The overall mood is intimate, surreal, and emotionally evocative - a monochrome portrait.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A hyperrealistic 8K black and white extreme close-up portrait of a young man's face, focusing tightly on his eye, cheekbone, and lips. Bright sunlight breaks into soft, wavy luminous lines that ripple across his skin like underwater reflections. The light flows diagonally, wrapping around the contours of his face in surreal patterns, while the shadows dissolve into smooth mid-gray tones instead of deep black. The skin is rendered in lifelike detail-visible pores, faint freckles, subtle stubble, and natural imperfections catch the glowing light realistically. The lips are softly highlighted, and the eye reflects fragments of the luminous waves, adding depth and emotion without artificial glow. The camera framing feels macro, pressed close to the face, with razor-thin depth of field: one illuminated ridge of skin is perfectly sharp, while the rest melts into velvety blur. The glassy, fluid quality of the light lines gives the portrait a surreal dreamlike aesthetic while remaining grounded in photographic realism. The background disappears into soft gray gradients, leaving only the interplay of skin texture and luminous wave-like rays. Fine cinematic grain overlays the frame, enhancing the tactile analog feel. The overall mood is intimate, surreal, and emotionally evocative - a monochrome portrait."
}
JSON
IM
图像
Product & Brand nano-banana-2

Using the attached image, create a professional industrial p...

Using the attached image, create a professional industrial packaging design illustration sheet for the packaging of [PRODUCT NAME] Feature a centered hero 3D render with realistic materials, soft studio lighting, and commercial-grade finish quality. Surround the hero render with technical views: front, side, top, bottom, angled perspective, and flat layout. Include structural construction sketches, fold lines, seam details, and dimension arrows with measurements in millimeters. Show materials and finishes (matte, glossy print, plastic, paper, glass, etc.) using handwritten-style annotations. Add color swatches, realistic product illustrations, and subtle shadows. Background should resemble clean sketchbook paper, combining realistic rendering with pencil sketch overlays. Modern industrial design aesthetic, ultra-detailed, portfolio-ready presentation. Stable Diffusion settings: CFG: 7–9 Steps: 30–40 Sampler: DPM++ Resolution: 1024×1280 or higher Aspect Ratio: 3:4

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Using the attached image, create a professional industrial packaging design illustration sheet for the packaging of [PRODUCT NAME] Feature a centered hero 3D render with realistic materials, soft studio lighting, and commercial-grade finish quality. Surround the hero render with technical views: front, side, top, bottom, angled perspective, and flat layout. Include structural construction sketches, fold lines, seam details, and dimension arrows with measurements in millimeters. Show materials and finishes (matte, glossy print, plastic, paper, glass, etc.) using handwritten-style annotations. Add color swatches, realistic product illustrations, and subtle shadows. Background should resemble clean sketchbook paper, combining realistic rendering with pencil sketch overlays. Modern industrial design aesthetic, ultra-detailed, portfolio-ready presentation. Stable Diffusion settings: CFG: 7–9 Steps: 30–40 Sampler: DPM++ Resolution: 1024×1280 or higher Aspect Ratio: 3:4"
}
JSON
IM
图像
Photography nano-banana-2

The generated image uses the uploaded image as a reference f...

The generated image uses the uploaded image as a reference for the character, wearing a high-necked, tight-fitting black long-sleeved dress. A cluster of withered wood and orange-pink flowers lies beside an old newsstand, the grainy texture of vintage film interwoven, the blurred background with noticeable trailing shadows, and the double-image effect creating a fantastical atmosphere. A bewitchingly beautiful girl, carrying flowers, is shown in profile, her fair skin delicate and translucent. Her exquisite face is blurred with motion, the outline of her figure slightly swaying with the panning camera, the soft focus making the image even more hazy and languid. A warm-toned, low-saturation filter enhances the effect, her long, backlit hair glowing with a soft glow, the messy strands sweeping wildly across her jawline, the details concealing a captivating yet dangerous allure. Cute movements add dynamism, the motion blur blending with the film grain, creating a trendy, Instagram-worthy image while the blurred image outlines a dynamic scene full of story, cleverly balancing bewitching and sweetness.

查看 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": "The generated image uses the uploaded image as a reference for the character, wearing a high-necked, tight-fitting black long-sleeved dress. A cluster of withered wood and orange-pink flowers lies beside an old newsstand, the grainy texture of vintage film interwoven, the blurred background with noticeable trailing shadows, and the double-image effect creating a fantastical atmosphere. A bewitchingly beautiful girl, carrying flowers, is shown in profile, her fair skin delicate and translucent. Her exquisite face is blurred with motion, the outline of her figure slightly swaying with the panning camera, the soft focus making the image even more hazy and languid. A warm-toned, low-saturation filter enhances the effect, her long, backlit hair glowing with a soft glow, the messy strands sweeping wildly across her jawline, the details concealing a captivating yet dangerous allure. Cute movements add dynamism, the motion blur blending with the film grain, creating a trendy, Instagram-worthy image while the blurred image outlines a dynamic scene full of story, cleverly balancing bewitching and sweetness."
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。