模型 PROMPTS

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

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

模型

nano-banana-2

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

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

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

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

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

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

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

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

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

Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME...

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]”

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic 8K 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
IM
图像
Food & Drink nano-banana-2

Ultra-clean modern recipe infographic. Showcase [FOOD] in a...

Ultra-clean modern recipe infographic. Showcase [FOOD] 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 [FOOD] 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
图像
UI & Graphic nano-banana-2

Create a branded technical infographic of a [SNACK], combini...

Create a branded technical infographic of a [SNACK], combining a realistic photograph or photoreal render of the product with technical annotation overlays placed directly on top. Use black ink–style line drawings with strategic [BRAND COLOR] accents (architectural sketch look) on a pure white studio background, including: • Key component labels • Internal cross-section showing structure, layering, or internal design • Measurements, dimensions, and specifications • Material callouts with composition and quantities • Arrows indicating function for primary features and structural integrity • Simple schematic or sectional diagram showing key mechanical or design elements • Sustainability callouts Title placement: Inside a hand-drawn technical annotation box with accent border reading the product name in bold font, positioned in upper corner. Style & layout rules: • The realistic product remains clearly visible • Annotations feel sketched, technical, and architectural • Accents used for highlight (20-30% of linework), black for primary technical lines (70-80%) • Clean composition with balanced negative space • Educational, food-engineering vibe with premium branding • Include subtle brand logo mark in corner Visual style: Minimal technical illustration aesthetic, black linework with accents over realistic imagery, precise but slightly hand-drawn feel. Color palette: White background, black annotation lines/text, [BRAND COLOR] for accents and key callouts only. 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": "Create a branded technical infographic of a [SNACK], combining a realistic photograph or photoreal render of the product with technical annotation overlays placed directly on top. Use black ink–style line drawings with strategic [BRAND COLOR] accents (architectural sketch look) on a pure white studio background, including: • Key component labels • Internal cross-section showing structure, layering, or internal design • Measurements, dimensions, and specifications • Material callouts with composition and quantities • Arrows indicating function for primary features and structural integrity • Simple schematic or sectional diagram showing key mechanical or design elements • Sustainability callouts Title placement: Inside a hand-drawn technical annotation box with accent border reading the product name in bold font, positioned in upper corner. Style & layout rules: • The realistic product remains clearly visible • Annotations feel sketched, technical, and architectural • Accents used for highlight (20-30% of linework), black for primary technical lines (70-80%) • Clean composition with balanced negative space • Educational, food-engineering vibe with premium branding • Include subtle brand logo mark in corner Visual style: Minimal technical illustration aesthetic, black linework with accents over realistic imagery, precise but slightly hand-drawn feel. Color palette: White background, black annotation lines/text, [BRAND COLOR] for accents and key callouts only. Output: 1080×1080, ultra-crisp, social-feed optimized, no watermark"
}
JSON
IM
图像
Product & Brand nano-banana-2

[product], luxury packaging reveal scene, premium unboxing m...

[product], luxury packaging reveal scene, premium unboxing moment, pristine hands partially visible at the edges, delicate interaction with the packaging, lid slightly lifted to reveal the product inside, crisp folds and precise alignment, tactile materials [ ex: matte paper, soft touch coating, embossed details, foil accents], subtle micro texture and dust free finish, clean white background, soft diffused studio lighting, controlled specular highlights, realistic shadows, macro product photography look, shallow depth of field with sharp focus on the product and branding area, high end editorial commercial style, ultra realistic, 4k, 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": "[product], luxury packaging reveal scene, premium unboxing moment, pristine hands partially visible at the edges, delicate interaction with the packaging, lid slightly lifted to reveal the product inside, crisp folds and precise alignment, tactile materials [ ex: matte paper, soft touch coating, embossed details, foil accents], subtle micro texture and dust free finish, clean white background, soft diffused studio lighting, controlled specular highlights, realistic shadows, macro product photography look, shallow depth of field with sharp focus on the product and branding area, high end editorial commercial style, ultra realistic, 4k, 1:1, no watermark, no extra text"
}
JSON
IM
图像
Product & Brand nano-banana-2

Create a 3×3 grid in 3:4 aspect ratio for a high-end commerc...

Create a 3×3 grid in 3:4 aspect ratio for a high-end commercial marketing campaign using the uploaded product as the central subject. Each frame must present a distinct visual concept while maintaining perfect product consistency across all nine images. Grid Concepts (one per cell): 1. Iconic hero still life with bold composition 2. Extreme macro detail highlighting material, surface, or texture 3. Dynamic liquid or particle interaction surrounding the product 4. Minimal sculptural arrangement with abstract forms 5. Floating elements composition suggesting lightness and innovation 6. Sensory close-up emphasizing tactility and realism 7. Color-driven conceptual scene inspired by the product palette 8. Ingredient or component abstraction (non-literal, symbolic) 9. Surreal yet elegant fusion scene combining realism and imagination Visual Rules: Product must remain 100% accurate in shape, proportions, label, typography, color, and branding No distortion, deformation, or redesign of the product Clean separation between product and background Lighting & Style: Soft, controlled studio lighting Subtle highlights, realistic shadows High dynamic range, ultra-sharp focus Editorial luxury advertising aesthetic Premium sensory marketing look Overall Feel: Modern, refined, visually cohesive High-end commercial campaign Designed for brand websites, social grids, and digital billboards Hyperreal, cinematic, polished, and aspirational

查看 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 3×3 grid in 3:4 aspect ratio for a high-end commercial marketing campaign using the uploaded product as the central subject. Each frame must present a distinct visual concept while maintaining perfect product consistency across all nine images. Grid Concepts (one per cell): 1. Iconic hero still life with bold composition 2. Extreme macro detail highlighting material, surface, or texture 3. Dynamic liquid or particle interaction surrounding the product 4. Minimal sculptural arrangement with abstract forms 5. Floating elements composition suggesting lightness and innovation 6. Sensory close-up emphasizing tactility and realism 7. Color-driven conceptual scene inspired by the product palette 8. Ingredient or component abstraction (non-literal, symbolic) 9. Surreal yet elegant fusion scene combining realism and imagination Visual Rules: Product must remain 100% accurate in shape, proportions, label, typography, color, and branding No distortion, deformation, or redesign of the product Clean separation between product and background Lighting & Style: Soft, controlled studio lighting Subtle highlights, realistic shadows High dynamic range, ultra-sharp focus Editorial luxury advertising aesthetic Premium sensory marketing look Overall Feel: Modern, refined, visually cohesive High-end commercial campaign Designed for brand websites, social grids, and digital billboards Hyperreal, cinematic, polished, and aspirational"
}
JSON
IM
图像
UI & Graphic nano-banana-2

Create ONE final image. A clean 3×3 [ratio] storyboard gri...

Create ONE final image. A clean 3×3 [ratio] storyboard grid with nine equal [ratio] sized panels on [4:5] ratio. Use the reference image as the base product reference. Keep the same product, packaging design, branding, materials, colors, proportions and overall identity across all nine panels exactly as the reference. The product must remain clearly recognizable in every frame. The label, logo and proportions must stay exactly the same. This storyboard is a high-end designer mockup presentation for a branding portfolio. The focus is on form, composition, materiality and visual rhythm rather than realism or lifestyle narrative. The overall look should feel curated, editorial and design-driven. FRAME 1: Front-facing hero shot of the product in a clean studio setup. Neutral background, balanced composition, calm and confident presentation of the product. FRAME 2: Close-up shot with the focus centered on the middle of the product. Focusing on surface texture, materials and print details. FRAME 3: Shows the reference product placed in an environment that naturally fits the brand and product category. Studio setting inspired by the product design elements and colours. FRAME 4: Product shown in use or interaction on a neutral studio background. Hands and interaction elements are minimal and restrained, the look matches the style of the package. FRAME 5: Isometric composition showing multiple products arranged in a precise geometric order from the top isometric angle. All products are placed at the same isometric top angle, evenly spaced, clean, structured and graphic. FRAME 6: Product levitating slightly tilted on a neutral background that matches the reference image color palette. Floating position is angled and intentional, the product is floating naturally in space. FRAME 7: is an extreme close-up focusing on a specific detail of the label, edge, texture or material behavior. FRAME 8: The product in an unexpected yet aesthetically strong setting that feels bold, editorial and visually striking. Unexpected but highly stylized setting. Studio-based, and designer-driven. Bold composition that elevates the brand. FRAME 9: Wide composition showing the product in use, placed within a refined designer setup. Clean props, controlled styling, cohesive with the rest of the series. CAMERA & STYLE: Ultra high-quality studio imagery with a real camera look. Different camera angles and framings across frames. Controlled depth of field, precise lighting, accurate materials and reflections. Lighting logic, color palette, mood and visual language must remain consistent across all nine panels as one cohesive series. OUTPUT: A clean 3×3 grid with no borders, no text, no captions and no 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 ONE final image. A clean 3×3 [ratio] storyboard grid with nine equal [ratio] sized panels on [4:5] ratio. Use the reference image as the base product reference. Keep the same product, packaging design, branding, materials, colors, proportions and overall identity across all nine panels exactly as the reference. The product must remain clearly recognizable in every frame. The label, logo and proportions must stay exactly the same. This storyboard is a high-end designer mockup presentation for a branding portfolio. The focus is on form, composition, materiality and visual rhythm rather than realism or lifestyle narrative. The overall look should feel curated, editorial and design-driven. FRAME 1: Front-facing hero shot of the product in a clean studio setup. Neutral background, balanced composition, calm and confident presentation of the product. FRAME 2: Close-up shot with the focus centered on the middle of the product. Focusing on surface texture, materials and print details. FRAME 3: Shows the reference product placed in an environment that naturally fits the brand and product category. Studio setting inspired by the product design elements and colours. FRAME 4: Product shown in use or interaction on a neutral studio background. Hands and interaction elements are minimal and restrained, the look matches the style of the package. FRAME 5: Isometric composition showing multiple products arranged in a precise geometric order from the top isometric angle. All products are placed at the same isometric top angle, evenly spaced, clean, structured and graphic. FRAME 6: Product levitating slightly tilted on a neutral background that matches the reference image color palette. Floating position is angled and intentional, the product is floating naturally in space. FRAME 7: is an extreme close-up focusing on a specific detail of the label, edge, texture or material behavior. FRAME 8: The product in an unexpected yet aesthetically strong setting that feels bold, editorial and visually striking. Unexpected but highly stylized setting. Studio-based, and designer-driven. Bold composition that elevates the brand. FRAME 9: Wide composition showing the product in use, placed within a refined designer setup. Clean props, controlled styling, cohesive with the rest of the series. CAMERA & STYLE: Ultra high-quality studio imagery with a real camera look. Different camera angles and framings across frames. Controlled depth of field, precise lighting, accurate materials and reflections. Lighting logic, color palette, mood and visual language must remain consistent across all nine panels as one cohesive series. OUTPUT: A clean 3×3 grid with no borders, no text, no captions and no watermarks."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

inspired by a classic pokemon gameboy screenshot but it's hi...

inspired by a classic pokemon gameboy screenshot but it's highly detailed beautiful pixel art, include cool effects from moves used, modern minimal ui

查看 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": "inspired by a classic pokemon gameboy screenshot but it's highly detailed beautiful pixel art, include cool effects from moves used, modern minimal ui"
}
JSON
IM
图像
Poster Design nano-banana-2

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

[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): 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. 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): 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. 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

A hyper-realistic 3D travel guide infographic poster for [CO...

A hyper-realistic 3D travel guide infographic poster for [COUNTRY]. The country shape is rendered as a raised, textured terrain map floating on a clean light gray surface. Iconic landmarks are placed as miniature 3D sculpted models at their correct geographic locations across the map — each one highly detailed and photorealistic. Roads or railway lines connect key cities as white paths across the terrain. Around the map, floating 3D decorative props related to travel are scattered: a vintage leather suitcase with travel stickers, a compass rose, crystal heart charms, and a postage stamp seal reading “Travel to COUNTRY.” The national flag of [COUNTRY] is shown as a small realistic folded flag in the upper right corner. Each major city has a bold black label on the map, and beside the map, each city has a neat checklist of its top attractions in clean sans-serif typography. A large bold title at the top reads: “TRAVEL GUIDE TO “COUNTRY”” in black uppercase typography with the word [COUNTRY] in heavy bold. The overall aesthetic is premium editorial travel content — soft studio lighting, photorealistic 3D render, white/light gray background, clean layout.

查看 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 3D travel guide infographic poster for [COUNTRY]. The country shape is rendered as a raised, textured terrain map floating on a clean light gray surface. Iconic landmarks are placed as miniature 3D sculpted models at their correct geographic locations across the map — each one highly detailed and photorealistic. Roads or railway lines connect key cities as white paths across the terrain. Around the map, floating 3D decorative props related to travel are scattered: a vintage leather suitcase with travel stickers, a compass rose, crystal heart charms, and a postage stamp seal reading “Travel to COUNTRY.” The national flag of [COUNTRY] is shown as a small realistic folded flag in the upper right corner. Each major city has a bold black label on the map, and beside the map, each city has a neat checklist of its top attractions in clean sans-serif typography. A large bold title at the top reads: “TRAVEL GUIDE TO “COUNTRY”” in black uppercase typography with the word [COUNTRY] in heavy bold. The overall aesthetic is premium editorial travel content — soft studio lighting, photorealistic 3D render, white/light gray background, clean layout."
}
JSON
IM
图像
Product & Brand nano-banana-2

[BRAND NAME]: The name of the brand. Goal: Generate a single...

[BRAND NAME]: The name of the brand. Goal: Generate a single, minimalist, and surreal image where a cloud is shaped like the brand's logo. 1. THE LOGO CLOUD - **Subject**: A massive, photorealistic cumulus cloud in the exact geometric shape of the [BRAND NAME] logo. - **Texture**: Puffy, soft, and voluminous with natural sunlight illuminating the edges. - **Volume**: 3D sculptural appearance with realistic shadows within the cloud folds to show depth. 2. ENVIRONMENT & BACKGROUND - **Sky**: A vast, clear, vibrant blue summer sky. - **Secondary Elements**: A few small, wispy, natural clouds scattered far in the background to enhance the sense of scale and realism. - **Lighting**: Bright, direct daylight coming from the side to create high-contrast highlights and shadows. 3. INTEGRATED BRANDING - **Text**: The word "[BRAND NAME]" written in a clean, bold white sans-serif font. - **Icon**: A small, flat white version of the brand's logo placed next to the text. - **Positioning**: The branding (text + logo) is centered at the bottom of the frame, acting as a subtle anchor to the giant cloud above. 4. STYLE - Surrealist photography, ultra-minimalist composition, high resolution, 8k, cinematic look, clean and airy vibe.

查看 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]: The name of the brand. Goal: Generate a single, minimalist, and surreal image where a cloud is shaped like the brand's logo. 1. THE LOGO CLOUD - **Subject**: A massive, photorealistic cumulus cloud in the exact geometric shape of the [BRAND NAME] logo. - **Texture**: Puffy, soft, and voluminous with natural sunlight illuminating the edges. - **Volume**: 3D sculptural appearance with realistic shadows within the cloud folds to show depth. 2. ENVIRONMENT & BACKGROUND - **Sky**: A vast, clear, vibrant blue summer sky. - **Secondary Elements**: A few small, wispy, natural clouds scattered far in the background to enhance the sense of scale and realism. - **Lighting**: Bright, direct daylight coming from the side to create high-contrast highlights and shadows. 3. INTEGRATED BRANDING - **Text**: The word \"[BRAND NAME]\" written in a clean, bold white sans-serif font. - **Icon**: A small, flat white version of the brand's logo placed next to the text. - **Positioning**: The branding (text + logo) is centered at the bottom of the frame, acting as a subtle anchor to the giant cloud above. 4. STYLE - Surrealist photography, ultra-minimalist composition, high resolution, 8k, cinematic look, clean and airy vibe."
}
JSON
IM
图像
Product & Brand nano-banana-2

Act as a High-End Product Photographer and CGI Artist. PHAS...

Act as a High-End Product Photographer and CGI Artist. PHASE 1: SUBJECT & LOGIC Generate a massive, perfectly centered, three-dimensional physical sculpture of the official, unaltered corporate logo for [BRAND NAME]. The sculpture must strictly adhere to the brand’s precise logo geometry and proportions (1:1 from brandbook). The sculpture is suspended in mid-air. Autonomously identify the exact official shape and structure of the [BRAND NAME] logo and render it as a single, flawless glass object without any modifications. PHASE 2: MATERIALITY (GLASS) The entire logo is made of hyper-realistic, optical-grade crystal glass (not water, not gel). The material is solid, colorless, and boasts high clarity with a high refractive index. It must look heavy and монолитное (monolithic). The glass structure contains subtle, photorealistic microscopic flaws: fine polished scratches on the surface and minor internal inclusions (dust particles/seed bubbles, very few) to avoid “CGI plastic.” The edges must be precision-beveled and fire-polished. PHASE 3: ENVIRONMENT & CAUSTICS The logo is suspended against a strictly clean, bright blue sky with sparse, naturally defined white cumulus clouds. NO land, NO trees, NO palms. The background is purely atmospheric. The focus is entirely on the glass logo. Critically render hyper-realistic, complex glass caustics: intense, sharp patterns of focused light and color (refractions of the blue sky) cast inside and onto the surface of the glass form due to the sunlight passing through it. TECH SPECS Rendered with Arnold or Octane. Phase One XF, 120mm Macro lens. Aperture f/5.6 for sharp depth across the entire glass sculpture. Intense, direct sunlight (hard lighting) to maximize caustics. Global illumination, ray-traced refractions (double-sided geometry), and chromatic aberration emulation (subtle) for optical realism. Fine grain film emulation (Fujifilm Velvia 50).

查看 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": "Act as a High-End Product Photographer and CGI Artist. PHASE 1: SUBJECT & LOGIC Generate a massive, perfectly centered, three-dimensional physical sculpture of the official, unaltered corporate logo for [BRAND NAME]. The sculpture must strictly adhere to the brand’s precise logo geometry and proportions (1:1 from brandbook). The sculpture is suspended in mid-air. Autonomously identify the exact official shape and structure of the [BRAND NAME] logo and render it as a single, flawless glass object without any modifications. PHASE 2: MATERIALITY (GLASS) The entire logo is made of hyper-realistic, optical-grade crystal glass (not water, not gel). The material is solid, colorless, and boasts high clarity with a high refractive index. It must look heavy and монолитное (monolithic). The glass structure contains subtle, photorealistic microscopic flaws: fine polished scratches on the surface and minor internal inclusions (dust particles/seed bubbles, very few) to avoid “CGI plastic.” The edges must be precision-beveled and fire-polished. PHASE 3: ENVIRONMENT & CAUSTICS The logo is suspended against a strictly clean, bright blue sky with sparse, naturally defined white cumulus clouds. NO land, NO trees, NO palms. The background is purely atmospheric. The focus is entirely on the glass logo. Critically render hyper-realistic, complex glass caustics: intense, sharp patterns of focused light and color (refractions of the blue sky) cast inside and onto the surface of the glass form due to the sunlight passing through it. TECH SPECS Rendered with Arnold or Octane. Phase One XF, 120mm Macro lens. Aperture f/5.6 for sharp depth across the entire glass sculpture. Intense, direct sunlight (hard lighting) to maximize caustics. Global illumination, ray-traced refractions (double-sided geometry), and chromatic aberration emulation (subtle) for optical realism. Fine grain film emulation (Fujifilm Velvia 50)."
}
JSON
IM
图像
Photography nano-banana-2

A detailed, high-fashion studio photograph of a woman posing...

A detailed, high-fashion studio photograph of a woman posing gracefully, wearing a luxurious olive green velvet saree draped elegantly over her shoulder, paired with a matching heavily embroidered sleeveless blouse that highlights her midriff. The lighting is moody and dramatic, accentuating the rich texture of the velvet and giving her skin a subtle, dewy sheen. Her hands are adorned with intricate, dark henna (mehndi) designs, and she is wearing traditional gold earrings, looking directly into the camera with a confident 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 detailed, high-fashion studio photograph of a woman posing gracefully, wearing a luxurious olive green velvet saree draped elegantly over her shoulder, paired with a matching heavily embroidered sleeveless blouse that highlights her midriff. The lighting is moody and dramatic, accentuating the rich texture of the velvet and giving her skin a subtle, dewy sheen. Her hands are adorned with intricate, dark henna (mehndi) designs, and she is wearing traditional gold earrings, looking directly into the camera with a confident expression."
}
JSON
IM
图像
Product & Brand nano-banana-2

[BRAND NAME]. Act as a World-Class Editorial Designer. PHAS...

[BRAND NAME]. Act as a World-Class Editorial Designer. PHASE 1: DYNAMIC SUBJECT LOGIC. - Subject Selection: Autonomously analyze [BRAND NAME]. - Layering (The Sandwich Effect): Interweave the subject with background shapes. Some parts of the car/person must be hidden behind geometric blocks, while other parts (wheels, limbs, props) must overlap them to create 3D depth. PHASE 2: GRID & GEOMETRY. - Layout: A clean 2x2 grid composition. - Overlays: Superimpose large, bold geometric arcs and circles over the grid. - Visual Balance: Place one iconic product prop (e.g., a floating key fob for cars or a ball for sports) in a separate quadrant to balance the subject. PHASE 3: SOPHISTICATED MUTED PALETTE. - Color Direction: DO NOT use aggressive neon or oversaturated colors. - Palette: Identify the core colors of [BRAND NAME] and shift them to a "Sophisticated Muted" spectrum. - Tones: Use desaturated, earthy, or "dusty" versions of the brand colors (e.g., instead of hot pink, use dusty rose; instead of bright mint, use sage green; instead of royal blue, use slate blue). - Finish: Matte, flat color blocks with zero gradients. PHASE 4: PHOTOGRAPHY & LIGHTING. - Subject Style: High-end commercial studio photography. - Lighting: Soft, diffused studio lighting with gentle highlights. No harsh shadows. - Integration: The subject must feel physically embedded into the graphic grid. PHASE 5: MINIMALIST BRANDING. - Logo: Place a clean, single-color [BRAND NAME] logo in the center of one background block. No taglines, just the iconic symbol.

查看 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 World-Class Editorial Designer. PHASE 1: DYNAMIC SUBJECT LOGIC. - Subject Selection: Autonomously analyze [BRAND NAME]. - Layering (The Sandwich Effect): Interweave the subject with background shapes. Some parts of the car/person must be hidden behind geometric blocks, while other parts (wheels, limbs, props) must overlap them to create 3D depth. PHASE 2: GRID & GEOMETRY. - Layout: A clean 2x2 grid composition. - Overlays: Superimpose large, bold geometric arcs and circles over the grid. - Visual Balance: Place one iconic product prop (e.g., a floating key fob for cars or a ball for sports) in a separate quadrant to balance the subject. PHASE 3: SOPHISTICATED MUTED PALETTE. - Color Direction: DO NOT use aggressive neon or oversaturated colors. - Palette: Identify the core colors of [BRAND NAME] and shift them to a \"Sophisticated Muted\" spectrum. - Tones: Use desaturated, earthy, or \"dusty\" versions of the brand colors (e.g., instead of hot pink, use dusty rose; instead of bright mint, use sage green; instead of royal blue, use slate blue). - Finish: Matte, flat color blocks with zero gradients. PHASE 4: PHOTOGRAPHY & LIGHTING. - Subject Style: High-end commercial studio photography. - Lighting: Soft, diffused studio lighting with gentle highlights. No harsh shadows. - Integration: The subject must feel physically embedded into the graphic grid. PHASE 5: MINIMALIST BRANDING. - Logo: Place a clean, single-color [BRAND NAME] logo in the center of one background block. No taglines, just the iconic symbol."
}
JSON
IM
图像
UI & Graphic nano-banana-2

[BRAND NAME] | [COLOR] Act as a 3D Type Designer and CGI Ar...

[BRAND NAME] | [COLOR] Act as a 3D Type Designer and CGI Artist working at the intersection of streetwear culture, Y2K aesthetics, and high-end digital sculpture. Your references: Nigo, Futura, Guccimaze, Soulwax art direction. --- PHASE 1: TYPOGRAPHIC CONCEPT Render the word or logotype [BRAND NAME] as a fully 3D sculptural object — not a flat text with extrusion, but a living, inflated, organic type sculpture. Style: Wildstyle graffiti DNA fused with inflatable balloon morphology. Letters are not separate — they flow into each other as one continuous organic mass. Each letterform has: bulbous pneumatic body as if inflated under high pressure from within, stretching the surface taut. Aggressive spike extensions — sharp tapered protrusions erupting between and around letters, directional, asymmetric, energetic, some long and blade-like, others short and thorn-like. Wildstyle overlaps — letters partially occlude each other creating depth layers, classic graffiti ambiguity where readability fights with visual complexity. Organic connective tissue — negative spaces between letters filled with stretched membrane forms, like rubber pulled between two inflated surfaces. --- PHASE 2: MATERIAL & SURFACE Single unified material across the entire sculpture — no color variation between letters. Material type: high-gloss latex / inflated rubber / soft silicone — the surface behaves like a balloon skin stretched to near-bursting point. Subsurface scattering: active — light penetrates slightly into the material, creating a translucent inner glow at thin edges and spike tips. Thinner areas read lighter, denser volumes read darker. Specular highlights: large, soft, slightly elongated — the kind you get on inflated latex, not hard plastic. Multiple secondary highlights in concave zones. Apply [COLOR] as the sole material color of the entire sculpture — this is non-negotiable. [COLOR] defines the pure midtone of the material. Highlights push toward the most luminous near-white version of [COLOR]. Shadow zones and deep crevices push toward the darkest most saturated version of [COLOR]. The entire chromatic range of the sculpture lives within the [COLOR] family — no hue deviation, no neutral grays. --- PHASE 3: COMPOSITION & STAGING Background: pure white (#FFFFFF) — clinical studio isolation. Zero texture, zero gradient. Shadow: none, or absolute minimum contact shadow directly beneath the sculpture — the object appears to float slightly. Orientation: horizontal spread — the sculpture is wider than tall, expanding laterally. Spike elements breach the invisible bounding box on all sides — top spikes reach upward, side extensions push outward. Camera angle: straight-on frontal, slightly elevated 5 to 10° above center — reveals the full typographic mass while showing the 3D depth of overlapping elements. Depth of field: none — sharp from foreground spikes to background letter bodies, every detail in focus. Scale feel: monumental — as if the sculpture is 2 meters wide in physical space, photographed in a white infinity studio. --- PHASE 4: TECH SPECS Render engine: Octane Render or Redshift — physically accurate subsurface scattering mandatory. Global illumination: large soft HDRI dome light, neutral white temperature 5500K. No directional shadows. No rim lights. No background elements. Ray tracing: on — for accurate specular and inter-reflection between letter surfaces. Anti-aliasing: maximum — edges must be razor-clean against white background. Output feel: this is a CGI product render, not AI art. Precision over expressionism. Aspect ratio: 1:1 square — centered composition with breathing room on all four sides.

查看 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] | [COLOR] Act as a 3D Type Designer and CGI Artist working at the intersection of streetwear culture, Y2K aesthetics, and high-end digital sculpture. Your references: Nigo, Futura, Guccimaze, Soulwax art direction. --- PHASE 1: TYPOGRAPHIC CONCEPT Render the word or logotype [BRAND NAME] as a fully 3D sculptural object — not a flat text with extrusion, but a living, inflated, organic type sculpture. Style: Wildstyle graffiti DNA fused with inflatable balloon morphology. Letters are not separate — they flow into each other as one continuous organic mass. Each letterform has: bulbous pneumatic body as if inflated under high pressure from within, stretching the surface taut. Aggressive spike extensions — sharp tapered protrusions erupting between and around letters, directional, asymmetric, energetic, some long and blade-like, others short and thorn-like. Wildstyle overlaps — letters partially occlude each other creating depth layers, classic graffiti ambiguity where readability fights with visual complexity. Organic connective tissue — negative spaces between letters filled with stretched membrane forms, like rubber pulled between two inflated surfaces. --- PHASE 2: MATERIAL & SURFACE Single unified material across the entire sculpture — no color variation between letters. Material type: high-gloss latex / inflated rubber / soft silicone — the surface behaves like a balloon skin stretched to near-bursting point. Subsurface scattering: active — light penetrates slightly into the material, creating a translucent inner glow at thin edges and spike tips. Thinner areas read lighter, denser volumes read darker. Specular highlights: large, soft, slightly elongated — the kind you get on inflated latex, not hard plastic. Multiple secondary highlights in concave zones. Apply [COLOR] as the sole material color of the entire sculpture — this is non-negotiable. [COLOR] defines the pure midtone of the material. Highlights push toward the most luminous near-white version of [COLOR]. Shadow zones and deep crevices push toward the darkest most saturated version of [COLOR]. The entire chromatic range of the sculpture lives within the [COLOR] family — no hue deviation, no neutral grays. --- PHASE 3: COMPOSITION & STAGING Background: pure white (#FFFFFF) — clinical studio isolation. Zero texture, zero gradient. Shadow: none, or absolute minimum contact shadow directly beneath the sculpture — the object appears to float slightly. Orientation: horizontal spread — the sculpture is wider than tall, expanding laterally. Spike elements breach the invisible bounding box on all sides — top spikes reach upward, side extensions push outward. Camera angle: straight-on frontal, slightly elevated 5 to 10° above center — reveals the full typographic mass while showing the 3D depth of overlapping elements. Depth of field: none — sharp from foreground spikes to background letter bodies, every detail in focus. Scale feel: monumental — as if the sculpture is 2 meters wide in physical space, photographed in a white infinity studio. --- PHASE 4: TECH SPECS Render engine: Octane Render or Redshift — physically accurate subsurface scattering mandatory. Global illumination: large soft HDRI dome light, neutral white temperature 5500K. No directional shadows. No rim lights. No background elements. Ray tracing: on — for accurate specular and inter-reflection between letter surfaces. Anti-aliasing: maximum — edges must be razor-clean against white background. Output feel: this is a CGI product render, not AI art. Precision over expressionism. Aspect ratio: 1:1 square — centered composition with breathing room on all four sides."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

Create a collection of icons representing [a theme], they be...

Create a collection of icons representing [a theme], they belong together as a single theme. Put them in a 3x3 grid. The background is white. Make the icons in a colorful and tactile 3D style. No text. - dogs with different emotions - bananas - January - the same cat in different emotions

查看 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 collection of icons representing [a theme], they belong together as a single theme. Put them in a 3x3 grid. The background is white. Make the icons in a colorful and tactile 3D style. No text. - dogs with different emotions - bananas - January - the same cat in different emotions"
}
JSON
IM
图像
Product & Brand nano-banana-2

[BRAND NAME] | [HEADLINE] | [SUB-TEXT] | [CTA]. Act as a Sen...

[BRAND NAME] | [HEADLINE] | [SUB-TEXT] | [CTA]. Act as a Senior Art Director. PHASE 1: INTEGRATED COMPOSITION & OVERLAP. - Layout: Seamless fusion of 2D graphics and 3D photography. - Overlap Logic: The subject and their primary "Product Prop" (e.g., a car, a device) must physically overlap the graphic panel to break the "wall" between design and photo. - Unity: Geometric shapes from the graphic side must bleed into the photographic sky area. PHASE 2: BRAND & CATEGORY SIMULATION. Autonomously analyze the [BRAND NAME] and its industry category: - INDUSTRY CONTEXT: * If Automotive: Include the vehicle and a person interacting with it. * If Tech: Include flagship devices/gadgets. * If Fashion/Lifestyle: Focus on editorial poses and premium accessories. - SHAPE SIMULATION: Match shapes to brand identity (e.g., Sharp/Speed for Auto, Minimalist/Grid for Tech). - COLOR SIMULATION: Use the brand's primary signature hue for both the graphic pattern and the subject's outfit/accents. PHASE 3: TYPOGRAPHY & CUSTOM CONTENT. - Headline: Display "[HEADLINE]" in a bold, modern Sans-Serif font. (If [HEADLINE] is empty, generate a high-energy slogan for [BRAND NAME]). - Sub-headline: Display "[SUB-TEXT]" below the headline. - Button: Create a minimalist pill-shaped CTA button with the text: "[CTA]". - Interaction: Text layers should have 3D depth, sitting partially behind the subject or product prop. PHASE 4: PHOTOGRAPHY & SUBJECT. - Perspective: Extreme low-angle (worm’s eye view) looking up. - Subject: A diverse persona reflecting the brand's audience. - Environment: Massive, clear blue sky as the backdrop. - Visual Link: Subject's styling must incorporate the Brand's primary color. PHASE 5: FINAL VISUAL STYLE. High-end commercial aesthetic. Crisp, saturated, professional fusion of flat vector art and realistic 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": "[BRAND NAME] | [HEADLINE] | [SUB-TEXT] | [CTA]. Act as a Senior Art Director. PHASE 1: INTEGRATED COMPOSITION & OVERLAP. - Layout: Seamless fusion of 2D graphics and 3D photography. - Overlap Logic: The subject and their primary \"Product Prop\" (e.g., a car, a device) must physically overlap the graphic panel to break the \"wall\" between design and photo. - Unity: Geometric shapes from the graphic side must bleed into the photographic sky area. PHASE 2: BRAND & CATEGORY SIMULATION. Autonomously analyze the [BRAND NAME] and its industry category: - INDUSTRY CONTEXT: * If Automotive: Include the vehicle and a person interacting with it. * If Tech: Include flagship devices/gadgets. * If Fashion/Lifestyle: Focus on editorial poses and premium accessories. - SHAPE SIMULATION: Match shapes to brand identity (e.g., Sharp/Speed for Auto, Minimalist/Grid for Tech). - COLOR SIMULATION: Use the brand's primary signature hue for both the graphic pattern and the subject's outfit/accents. PHASE 3: TYPOGRAPHY & CUSTOM CONTENT. - Headline: Display \"[HEADLINE]\" in a bold, modern Sans-Serif font. (If [HEADLINE] is empty, generate a high-energy slogan for [BRAND NAME]). - Sub-headline: Display \"[SUB-TEXT]\" below the headline. - Button: Create a minimalist pill-shaped CTA button with the text: \"[CTA]\". - Interaction: Text layers should have 3D depth, sitting partially behind the subject or product prop. PHASE 4: PHOTOGRAPHY & SUBJECT. - Perspective: Extreme low-angle (worm’s eye view) looking up. - Subject: A diverse persona reflecting the brand's audience. - Environment: Massive, clear blue sky as the backdrop. - Visual Link: Subject's styling must incorporate the Brand's primary color. PHASE 5: FINAL VISUAL STYLE. High-end commercial aesthetic. Crisp, saturated, professional fusion of flat vector art and realistic photography."
}
JSON
IM
图像
Food & Drink nano-banana-2

{ "image_prompt": { "type": "Hyper-realistic food info...

{ "image_prompt": { "type": "Hyper-realistic food infographic", "subject": { "cuisine": "Indonesian", "base_element": "Traditional bowl with steaming hot dish at the bottom", "levitating_ingredients": [ "Juicy meat", "Crispy tofu", "Glossy sauce splashes", "Fresh herbs", "Chilies", "Lime", "Garlic", "Fried shallots" ] }, "composition": { "layout": "Clean vertical composition", "arrangement": "Realistic gravity-defying/floating elements", "background": "Rustic wooden surface", "visual_hierarchy": "Bowl anchored at bottom, ingredients rising vertically" }, "graphic_design_elements": { "labels": "Clear Indonesian text", "lines": "Thin white pointing lines", "style": "Editorial infographic layout, professional food magazine style" }, "lighting_and_mood": { "lighting": "Cinematic studio lighting", "color_palette": "Warm tones", "effects": "Dramatic steam, motion-frozen ingredients" }, "technical_specs": { "camera_settings": "Shallow depth of field, sharp focus, DSLR look", "details": "Ultra-detailed textures", "resolution": "8K ultra-realistic" } } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"image_prompt\": { \"type\": \"Hyper-realistic food infographic\", \"subject\": { \"cuisine\": \"Indonesian\", \"base_element\": \"Traditional bowl with steaming hot dish at the bottom\", \"levitating_ingredients\": [ \"Juicy meat\", \"Crispy tofu\", \"Glossy sauce splashes\", \"Fresh herbs\", \"Chilies\", \"Lime\", \"Garlic\", \"Fried shallots\" ] }, \"composition\": { \"layout\": \"Clean vertical composition\", \"arrangement\": \"Realistic gravity-defying/floating elements\", \"background\": \"Rustic wooden surface\", \"visual_hierarchy\": \"Bowl anchored at bottom, ingredients rising vertically\" }, \"graphic_design_elements\": { \"labels\": \"Clear Indonesian text\", \"lines\": \"Thin white pointing lines\", \"style\": \"Editorial infographic layout, professional food magazine style\" }, \"lighting_and_mood\": { \"lighting\": \"Cinematic studio lighting\", \"color_palette\": \"Warm tones\", \"effects\": \"Dramatic steam, motion-frozen ingredients\" }, \"technical_specs\": { \"camera_settings\": \"Shallow depth of field, sharp focus, DSLR look\", \"details\": \"Ultra-detailed textures\", \"resolution\": \"8K ultra-realistic\" } } }"
}
JSON
IM
图像
Photography nano-banana-2

Paparazzi-style extreme close-up photo of a woman with strik...

Paparazzi-style extreme close-up photo of a woman with striking facial features, caught off-guard while turning toward the camera. Face and shoulders only, shot from a low angle. Strong harsh on-camera flash, grainy high-ISO, raw candid street-photography feel. Background shows a crowded scene with motion blur (Paris Fashion Week atmosphere). Intense, spontaneous energy, imperfect and real. She is wearing a school uniform. Ultra-realistic, cinematic realism, high detail skin texture, slight lens distortion. Camera style: “35mm paparazzi lens, f/2.8, flash blown highlights” Look: “2000s tabloid photo aesthetic” Quality: “sharp focus on face, background heavily blurred and streaked”

查看 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": "Paparazzi-style extreme close-up photo of a woman with striking facial features, caught off-guard while turning toward the camera. Face and shoulders only, shot from a low angle. Strong harsh on-camera flash, grainy high-ISO, raw candid street-photography feel. Background shows a crowded scene with motion blur (Paris Fashion Week atmosphere). Intense, spontaneous energy, imperfect and real. She is wearing a school uniform. Ultra-realistic, cinematic realism, high detail skin texture, slight lens distortion. Camera style: “35mm paparazzi lens, f/2.8, flash blown highlights” Look: “2000s tabloid photo aesthetic” Quality: “sharp focus on face, background heavily blurred and streaked”"
}
JSON
IM
图像
Illustration & 3D nano-banana-2

{ "task": "image_style_transfer_3d_character", "input": {...

{ "task": "image_style_transfer_3d_character", "input": { "source_image": "USER_UPLOADED_IMAGE", "preserve_identity": true, "preserve_pose": true, "preserve_composition": true }, "style_reference": { "render_style": "stylized_3d_character", "aesthetic": "soft_minimal_cartoon_3d", "inspiration": [ "pixar_like_but_more_minimal", "toy_figure_render", "clean_product_character_design" ] }, "character_design": { "skin": { "material": "smooth_matte_plastic", "texture": "soft_uniform", "subsurface_scattering": "gentle" }, "facial_features": { "eyes": "half_closed_bored_expression", "eyelids": "heavy", "nose": "rounded_simplified", "mouth": "flat_neutral", "ears": "simplified_rounded" }, "emotion": "unimpressed_calm_bored" }, "clothing": { "style": "minimal_streetwear", "details": "no_logos_no_patterns", "fabric": "soft_matte" }, "accessories": { "headwear": "simple_baseball_cap_optional", "ear_accessories": "wireless_earbuds_optional" }, "lighting": { "setup": "studio_softbox", "shadows": "very_soft", "contrast": "low", "highlights": "subtle" }, "background": { "type": "solid_color", "color_palette": [ "muted_green", "pastel_tone" ], "gradient": "none" }, "camera": { "angle": "front_facing", "framing": "medium_close_up", "lens": "50mm_equivalent", "distortion": "none" }, "render_quality": { "resolution": "high", "edges": "clean", "noise": "none", "realism_balance": "stylized_over_realistic" }, "output": { "consistency": "high", "style_strength": "strong", "photorealism": 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": "{ \"task\": \"image_style_transfer_3d_character\", \"input\": { \"source_image\": \"USER_UPLOADED_IMAGE\", \"preserve_identity\": true, \"preserve_pose\": true, \"preserve_composition\": true }, \"style_reference\": { \"render_style\": \"stylized_3d_character\", \"aesthetic\": \"soft_minimal_cartoon_3d\", \"inspiration\": [ \"pixar_like_but_more_minimal\", \"toy_figure_render\", \"clean_product_character_design\" ] }, \"character_design\": { \"skin\": { \"material\": \"smooth_matte_plastic\", \"texture\": \"soft_uniform\", \"subsurface_scattering\": \"gentle\" }, \"facial_features\": { \"eyes\": \"half_closed_bored_expression\", \"eyelids\": \"heavy\", \"nose\": \"rounded_simplified\", \"mouth\": \"flat_neutral\", \"ears\": \"simplified_rounded\" }, \"emotion\": \"unimpressed_calm_bored\" }, \"clothing\": { \"style\": \"minimal_streetwear\", \"details\": \"no_logos_no_patterns\", \"fabric\": \"soft_matte\" }, \"accessories\": { \"headwear\": \"simple_baseball_cap_optional\", \"ear_accessories\": \"wireless_earbuds_optional\" }, \"lighting\": { \"setup\": \"studio_softbox\", \"shadows\": \"very_soft\", \"contrast\": \"low\", \"highlights\": \"subtle\" }, \"background\": { \"type\": \"solid_color\", \"color_palette\": [ \"muted_green\", \"pastel_tone\" ], \"gradient\": \"none\" }, \"camera\": { \"angle\": \"front_facing\", \"framing\": \"medium_close_up\", \"lens\": \"50mm_equivalent\", \"distortion\": \"none\" }, \"render_quality\": { \"resolution\": \"high\", \"edges\": \"clean\", \"noise\": \"none\", \"realism_balance\": \"stylized_over_realistic\" }, \"output\": { \"consistency\": \"high\", \"style_strength\": \"strong\", \"photorealism\": false } }"
}
JSON
IM
图像
Product & Brand nano-banana-2

[BRAND NAME]. Act as a Senior Editorial Designer and Typogra...

[BRAND NAME]. Act as a Senior Editorial Designer and Typographer. PHASE 1: TYPOGRAPHIC MASK (THE "WINDOW" EFFECT). - Core Element: Use the most iconic slogan or the name of [BRAND NAME] as a massive, ultra-bold, heavy sans-serif typographic mask. - Layout: The letters must be giant, filling the entire vertical frame from edge to edge with tight kerning. - Concept: The text acts as a "cut-out" window. The background is solid white, and the photographic subject is visible ONLY through the letterforms. PHASE 2: DYNAMIC SUBJECT LOGIC. - Subject Selection: - Detail: Ensure a high-contrast element (like a red shoe or a glowing headlight) is visible through one of the letters as a focal point. PHASE 3: SOPHISTICATED MUTED PALETTE. - Atmosphere: Use a "Refined Muted" color scheme. - Tones: Soft slate blues, charcoal greys, and creamy off-whites for the photography inside the mask. - Accent: Identify one sharp, saturated accent color belonging to [BRAND NAME] and apply it to a single key object visible through the text. PHASE 4: PHOTOGRAPHY & LIGHTING. - Lighting: Soft-box studio lighting. Diffused shadows and gentle highlights to create a cinematic, high-end editorial feel. - Finish: Clean, matte texture with zero visual noise. High-definition photographic quality. PHASE 5: MINIMALIST BRANDING. - Accents: Add a tiny minimalist logo and a small vertical tagline in a clean, microscopic sans-serif font near the corners. - Year: Include the year "2026" in a subtle, elegant font to mimic a limited-edition look.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "[BRAND NAME]. Act as a Senior Editorial Designer and Typographer. PHASE 1: TYPOGRAPHIC MASK (THE \"WINDOW\" EFFECT). - Core Element: Use the most iconic slogan or the name of [BRAND NAME] as a massive, ultra-bold, heavy sans-serif typographic mask. - Layout: The letters must be giant, filling the entire vertical frame from edge to edge with tight kerning. - Concept: The text acts as a \"cut-out\" window. The background is solid white, and the photographic subject is visible ONLY through the letterforms. PHASE 2: DYNAMIC SUBJECT LOGIC. - Subject Selection: - Detail: Ensure a high-contrast element (like a red shoe or a glowing headlight) is visible through one of the letters as a focal point. PHASE 3: SOPHISTICATED MUTED PALETTE. - Atmosphere: Use a \"Refined Muted\" color scheme. - Tones: Soft slate blues, charcoal greys, and creamy off-whites for the photography inside the mask. - Accent: Identify one sharp, saturated accent color belonging to [BRAND NAME] and apply it to a single key object visible through the text. PHASE 4: PHOTOGRAPHY & LIGHTING. - Lighting: Soft-box studio lighting. Diffused shadows and gentle highlights to create a cinematic, high-end editorial feel. - Finish: Clean, matte texture with zero visual noise. High-definition photographic quality. PHASE 5: MINIMALIST BRANDING. - Accents: Add a tiny minimalist logo and a small vertical tagline in a clean, microscopic sans-serif font near the corners. - Year: Include the year \"2026\" in a subtle, elegant font to mimic a limited-edition look."
}
JSON
IM
图像
Photography nano-banana-2

{ "overall_theme": { "description": "A curated series...

{ "overall_theme": { "description": "A curated series of four ultra-photorealistic vignettes showcasing a luxurious, wellness-focused lifestyle.", "mood": "Calm, serene, balanced, sophisticated, peaceful, rejuvenating.", "style": "Minimalist, high-end, contemporary, clean aesthetic, aspirational." }, "subject": { "description": "Young woman.", "appearance": { "hair": "Long, dark brown, wavy, natural texture.", "skin": "Clear, glowing, natural.", "makeup": "No-makeup makeup look, dewy finish.", "physique": "Fit, toned." }, "expression": "Serene, composed, gently smiling, focused." }, "wardrobe": { "outfit_base": "Matching ribbed beige/cream activewear set.", "variations": [ "Sleeveless crop top and high-waisted leggings.", "Long-sleeve crop top and high-waisted leggings." ], "style": "Comfortable, stylish, high-quality fabric." }, "environmental_details": { "lighting": { "type": "Natural daylight.", "quality": "Soft, diffused, warm, bright.", "source": "Large windows (implied or visible)." }, "color_palette": { "dominant": ["Warm Beige", "Cream", "White", "Marble Grey"], "accents": ["Green (plants)", "Gold (fixtures, details)", "Natural Wood", "Soft Purple (smoothie)"] }, "materials": ["White Marble", "Light Wood", "Stone", "Ceramic", "Glass", "Linen"] }, "scenes": [ { "location": "Modern Luxury Kitchen", "environment": "White marble island and countertops, white shaker cabinets, gold hardware, integrated wine fridge, large window.", "pose": "Standing at the island, body angled slightly, looking down.", "action": "Whisking a hot beverage in a small bowl.", "props": ["Ceramic bowl", "Wooden whisk", "Steam", "Mug with 'H'", "Wine fridge"] }, { "location": "High-End Bathroom", "environment": "Large backlit mirror, white marble vanity, white walls, orchid plant.", "pose": "Standing facing the mirror, one hand applying product to face.", "action": "Applying skincare.", "props": ["Cotton pad", "Skincare bottle", "Lit Diptyque candle", "Whole coconut", "Glass jars"] }, { "location": "Minimalist Wellness Space", "environment": "Textured beige walls with curved arches, stone water fountain, eucalyptus in a vase.", "pose": "Full-body stretch, arms extended overhead, head tilted back, eyes closed.", "action": "Stretching.", "props": ["Stone water feature", "Large perfume bottle", "Eucalyptus vase"] }, { "location": "Bright Café Corner", "environment": "Round white marble table, cane chair, large window overlooking a street.", "pose": "Sitting at the table, smiling while eating, holding a fork.", "action": "Eating avocado toast.", "props": ["Avocado toast on plate", "Purple smoothie in glass", "Fork", "Assouline book", "Notebooks", "Small flowers"] } ], "camera_and_technical": { "type": "DSLR Photography", "style": "Editorial lifestyle", "lens": "Prime lens (e.g., 50mm or 85mm f/1.4)", "focus": "Sharp focus on the subject in each frame.", "depth_of_field": "Shallow, creating a soft, creamy bokeh in the background.", "resolution": "Ultra-high resolution, photorealistic textures.", "composition": "Four-panel grid collage." } }

查看 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": "{ \"overall_theme\": { \"description\": \"A curated series of four ultra-photorealistic vignettes showcasing a luxurious, wellness-focused lifestyle.\", \"mood\": \"Calm, serene, balanced, sophisticated, peaceful, rejuvenating.\", \"style\": \"Minimalist, high-end, contemporary, clean aesthetic, aspirational.\" }, \"subject\": { \"description\": \"Young woman.\", \"appearance\": { \"hair\": \"Long, dark brown, wavy, natural texture.\", \"skin\": \"Clear, glowing, natural.\", \"makeup\": \"No-makeup makeup look, dewy finish.\", \"physique\": \"Fit, toned.\" }, \"expression\": \"Serene, composed, gently smiling, focused.\" }, \"wardrobe\": { \"outfit_base\": \"Matching ribbed beige/cream activewear set.\", \"variations\": [ \"Sleeveless crop top and high-waisted leggings.\", \"Long-sleeve crop top and high-waisted leggings.\" ], \"style\": \"Comfortable, stylish, high-quality fabric.\" }, \"environmental_details\": { \"lighting\": { \"type\": \"Natural daylight.\", \"quality\": \"Soft, diffused, warm, bright.\", \"source\": \"Large windows (implied or visible).\" }, \"color_palette\": { \"dominant\": [\"Warm Beige\", \"Cream\", \"White\", \"Marble Grey\"], \"accents\": [\"Green (plants)\", \"Gold (fixtures, details)\", \"Natural Wood\", \"Soft Purple (smoothie)\"] }, \"materials\": [\"White Marble\", \"Light Wood\", \"Stone\", \"Ceramic\", \"Glass\", \"Linen\"] }, \"scenes\": [ { \"location\": \"Modern Luxury Kitchen\", \"environment\": \"White marble island and countertops, white shaker cabinets, gold hardware, integrated wine fridge, large window.\", \"pose\": \"Standing at the island, body angled slightly, looking down.\", \"action\": \"Whisking a hot beverage in a small bowl.\", \"props\": [\"Ceramic bowl\", \"Wooden whisk\", \"Steam\", \"Mug with 'H'\", \"Wine fridge\"] }, { \"location\": \"High-End Bathroom\", \"environment\": \"Large backlit mirror, white marble vanity, white walls, orchid plant.\", \"pose\": \"Standing facing the mirror, one hand applying product to face.\", \"action\": \"Applying skincare.\", \"props\": [\"Cotton pad\", \"Skincare bottle\", \"Lit Diptyque candle\", \"Whole coconut\", \"Glass jars\"] }, { \"location\": \"Minimalist Wellness Space\", \"environment\": \"Textured beige walls with curved arches, stone water fountain, eucalyptus in a vase.\", \"pose\": \"Full-body stretch, arms extended overhead, head tilted back, eyes closed.\", \"action\": \"Stretching.\", \"props\": [\"Stone water feature\", \"Large perfume bottle\", \"Eucalyptus vase\"] }, { \"location\": \"Bright Café Corner\", \"environment\": \"Round white marble table, cane chair, large window overlooking a street.\", \"pose\": \"Sitting at the table, smiling while eating, holding a fork.\", \"action\": \"Eating avocado toast.\", \"props\": [\"Avocado toast on plate\", \"Purple smoothie in glass\", \"Fork\", \"Assouline book\", \"Notebooks\", \"Small flowers\"] } ], \"camera_and_technical\": { \"type\": \"DSLR Photography\", \"style\": \"Editorial lifestyle\", \"lens\": \"Prime lens (e.g., 50mm or 85mm f/1.4)\", \"focus\": \"Sharp focus on the subject in each frame.\", \"depth_of_field\": \"Shallow, creating a soft, creamy bokeh in the background.\", \"resolution\": \"Ultra-high resolution, photorealistic textures.\", \"composition\": \"Four-panel grid collage.\" } }"
}
JSON
IM
图像
Product & Brand nano-banana-2

First-person perspective inside a brightly lit supermarket a...

First-person perspective inside a brightly lit supermarket aisle. Realistic human hands are holding a bottle of Fanta soda close to the camera. The vivid orange drink in its iconic branded bottle is surrounded by a multi-layered holographic augmented reality interface displaying nutritional data, including calorie count, sugar content, caffeine level, freshness indicator, expiration date, and recommended refreshing recipes and cocktails based on Fanta. The UI elements smoothly shift and reorganize based on the viewer’s gaze direction, as if dynamically responding to user focus. In the left peripheral vision, a vertical semi-transparent shopping list is visible with checked-off items, where Fanta is highlighted as the currently active selection. Hyper-realistic mixed reality, clean futuristic AR design, glass-like UI panels, soft ambient glow, realistic lighting and shadows, natural depth of field, immersive first-person interface, showcasing next-generation retail technology.

查看 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": "First-person perspective inside a brightly lit supermarket aisle. Realistic human hands are holding a bottle of Fanta soda close to the camera. The vivid orange drink in its iconic branded bottle is surrounded by a multi-layered holographic augmented reality interface displaying nutritional data, including calorie count, sugar content, caffeine level, freshness indicator, expiration date, and recommended refreshing recipes and cocktails based on Fanta. The UI elements smoothly shift and reorganize based on the viewer’s gaze direction, as if dynamically responding to user focus. In the left peripheral vision, a vertical semi-transparent shopping list is visible with checked-off items, where Fanta is highlighted as the currently active selection. Hyper-realistic mixed reality, clean futuristic AR design, glass-like UI panels, soft ambient glow, realistic lighting and shadows, natural depth of field, immersive first-person interface, showcasing next-generation retail technology."
}
JSON
IM
图像
Illustration & 3D nano-banana-2

Ultra-high-quality hyper-realistic photo featuring a real hu...

Ultra-high-quality hyper-realistic photo featuring a real human and a giant 3D Pixar-style version of THE SAME person — both strictly based on the uploaded reference image. The real person and the Pixar character must have identical facial structure, hairstyle, facial expression, body proportions, height, and clothing. Both are wearing a knitted sweater with a gradient from light yellow to pink, high-waisted blue jeans, and white high-top sneakers. The pose must exactly match the reference: the real person stands relaxed with a friendly smile, with their hand naturally resting on the shoulder of the Pixar character. The Pixar version stands slightly wider, arms confidently positioned near the pockets, with a playful sly smirk, one raised eyebrow, and expressive Pixar-style eyes. The Pixar character should be proportionally larger, but anatomically identical to the real person. The facial expression, head tilt, posture, and body language must precisely replicate the reference image. Clean gray-blue studio background, soft even studio lighting, realistic shadows, crisp fabric texture, smooth Pixar-style skin shading, cinematic sharpness. DO NOT change the pose, reaction, clothing, or proportions. Strict adherence to the 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-high-quality hyper-realistic photo featuring a real human and a giant 3D Pixar-style version of THE SAME person — both strictly based on the uploaded reference image. The real person and the Pixar character must have identical facial structure, hairstyle, facial expression, body proportions, height, and clothing. Both are wearing a knitted sweater with a gradient from light yellow to pink, high-waisted blue jeans, and white high-top sneakers. The pose must exactly match the reference: the real person stands relaxed with a friendly smile, with their hand naturally resting on the shoulder of the Pixar character. The Pixar version stands slightly wider, arms confidently positioned near the pockets, with a playful sly smirk, one raised eyebrow, and expressive Pixar-style eyes. The Pixar character should be proportionally larger, but anatomically identical to the real person. The facial expression, head tilt, posture, and body language must precisely replicate the reference image. Clean gray-blue studio background, soft even studio lighting, realistic shadows, crisp fabric texture, smooth Pixar-style skin shading, cinematic sharpness. DO NOT change the pose, reaction, clothing, or proportions. Strict adherence to the reference."
}
JSON
IM
图像
Food & Drink nano-banana-2

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

Ultra-clean modern recipe infographic. Showcase briyani 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 briyani 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
常见问题

使用 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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。