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

[BRAND NAME]. Act as a 3D Product Visualization Artist. PHA...

[BRAND NAME]. Act as a 3D Product Visualization Artist. PHASE 1: LOGO TO 3D OBJECT Take the [BRAND NAME] logo and transform it into a thick 3D sculptural form. Simplify to core shape, add rounded edges (8-12mm fillet), make it one solid piece with 40-60mm depth. Keep it recognizable. PHASE 2: PINK METALLIC MATERIAL - Color: Pink metallic (#C85A8E to #8B4A6F range) - Finish: Glossy brushed metal with fine grain - Highlights: Light pink (#E89BB8) - Shadows: Deep plum (#6B3854) - Roughness: 0.2 (shiny but not mirror) - NO copper, NO gold, NO silver PHASE 3: LIGHTING Soft studio lighting from top-left creating smooth gradient across the object. Light pink on highlights, deep plum in shadows. No hard shadows. PHASE 4: BACKGROUND & FLOATING - Pure white background (#FFFFFF) - Object levitating in white void - Soft blurred shadow underneath (90% transparent) - NO pedestals, NO stands, NO supports PHASE 5: CAMERA Slight 3/4 angle, looking down 10°, object centered, filling 60% of frame. TECH SPECS: - High-quality 3D render (Octane/Cycles) - 4K resolution - Full object in focus - Subtle bloom on highlights CRITICAL: - Must be PINK metallic only - Must float in pure white space - Must have thick 3D volume with smooth surfaces - Must look like luxury product 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]. Act as a 3D Product Visualization Artist. PHASE 1: LOGO TO 3D OBJECT Take the [BRAND NAME] logo and transform it into a thick 3D sculptural form. Simplify to core shape, add rounded edges (8-12mm fillet), make it one solid piece with 40-60mm depth. Keep it recognizable. PHASE 2: PINK METALLIC MATERIAL - Color: Pink metallic (#C85A8E to #8B4A6F range) - Finish: Glossy brushed metal with fine grain - Highlights: Light pink (#E89BB8) - Shadows: Deep plum (#6B3854) - Roughness: 0.2 (shiny but not mirror) - NO copper, NO gold, NO silver PHASE 3: LIGHTING Soft studio lighting from top-left creating smooth gradient across the object. Light pink on highlights, deep plum in shadows. No hard shadows. PHASE 4: BACKGROUND & FLOATING - Pure white background (#FFFFFF) - Object levitating in white void - Soft blurred shadow underneath (90% transparent) - NO pedestals, NO stands, NO supports PHASE 5: CAMERA Slight 3/4 angle, looking down 10°, object centered, filling 60% of frame. TECH SPECS: - High-quality 3D render (Octane/Cycles) - 4K resolution - Full object in focus - Subtle bloom on highlights CRITICAL: - Must be PINK metallic only - Must float in pure white space - Must have thick 3D volume with smooth surfaces - Must look like luxury product photography"
}
JSON
IM
图像
UI & Graphic nano-banana-2

Create a typographic art portrait using the uploaded photo o...

Create a typographic art portrait using the uploaded photo of a person as reference. Display a left-facing side profile portrait. The entire image--including the face. hair. and facial features--must be formed exclusively from repeated white calligraphic text using the words: "[PUT WHATEVER WORDS YOU WANT HERE]" The text should follow the natural contours of the face and hair, clearly shaping the person's profile silhouette. Use a deep navy blue background with high contrast The stvle should be clean vector art with sharp edges. Output in high-resolution 8K quality. Do not alter the person's facial identity. No additional colors. no textures. and no watermark. Dimension 4:5

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create a typographic art portrait using the uploaded photo of a person as reference. Display a left-facing side profile portrait. The entire image--including the face. hair. and facial features--must be formed exclusively from repeated white calligraphic text using the words: \"[PUT WHATEVER WORDS YOU WANT HERE]\" The text should follow the natural contours of the face and hair, clearly shaping the person's profile silhouette. Use a deep navy blue background with high contrast The stvle should be clean vector art with sharp edges. Output in high-resolution 8K quality. Do not alter the person's facial identity. No additional colors. no textures. and no watermark. Dimension 4:5"
}
JSON
IM
图像
UI & Graphic 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 2x2 grid (no lines). The background is pure white. Make the icons as risograph prints. No text. No color distortion. Vibrant and not faded. Stochastic stippling and sand-like noise pattern within color fills. Each icon has a thick black outline.

查看 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 2x2 grid (no lines). The background is pure white. Make the icons as risograph prints. No text. No color distortion. Vibrant and not faded. Stochastic stippling and sand-like noise pattern within color fills. Each icon has a thick black outline."
}
JSON
IM
图像
UI & Graphic nano-banana-2

{ "objective": "Create a split architectural visualization...

{ "objective": "Create a split architectural visualization where the top is a detailed dark-themed blueprint and the bottom is a photorealistic house that matches the blueprint EXACTLY", "aspect_ratio": "3:4", "composition": { "layout": "vertical split", "top_section": "blueprint", "bottom_section": "realistic render", "alignment": "perfect structural correspondence between both sections" }, "top_section": { "type": "architectural blueprint", "style": "dark luxury blueprint (similar to reference image 2)", "visual_style": { "background": "deep navy / charcoal blue", "lines": "thin glowing beige/gold lines", "walls": "slightly extruded 3D effect", "labels": "clean modern sans-serif", "lighting": "soft ambient glow" }, "content": { "rooms": [ "3 bedrooms (left, right, bottom-right)", "central living room", "kitchen + dining (top center)", "2 bathrooms", "garage (left side connected)", "front porch", "backyard pool with deck" ], "details": [ "furniture outlines (beds, sofa, dining table)", "door swings and openings", "window placements", "circulation paths", "exact proportions and spacing" ] } }, "bottom_section": { "type": "photorealistic house render", "constraint": "MUST MATCH THE BLUEPRINT EXACTLY — no added, removed, or shifted rooms", "architecture": { "style": "modern single-story house", "roof": "flat layered roof", "materials": [ "smooth concrete walls", "wood panel accents", "large glass windows" ] }, "layout_mapping_rules": [ "garage must be on the left side exactly as blueprint", "main entrance aligned with living room", "pool positioned in backyard matching blueprint dimensions", "window placements correspond to each room location", "bedroom volumes visible externally in correct positions" ], "environment": { "setting": "suburban neighborhood", "elements": [ "green lawn", "minimal landscaping", "clean driveway leading to garage", "pool deck matching blueprint footprint" ] }, "lighting": { "time": "golden hour", "style": "soft natural light with realistic shadows" }, "camera": { "angle": "slightly elevated front perspective", "lens": "35mm architectural view" } }, "consistency_rules": [ "room positions must be identical between blueprint and render", "no extra structures added in render", "all doors and windows must align logically", "pool size and placement must match exactly", "garage placement must match blueprint" ], "style": { "top": "architectural visualization (dark premium)", "bottom": "photorealistic modern house", "overall": "clean, high-end architectural presentation" }, "negative_constraints": [ "no mismatch between blueprint and render", "no extra rooms", "no fantasy elements", "no unrealistic proportions", "no cluttered environment" ] }

查看 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 split architectural visualization where the top is a detailed dark-themed blueprint and the bottom is a photorealistic house that matches the blueprint EXACTLY\", \"aspect_ratio\": \"3:4\", \"composition\": { \"layout\": \"vertical split\", \"top_section\": \"blueprint\", \"bottom_section\": \"realistic render\", \"alignment\": \"perfect structural correspondence between both sections\" }, \"top_section\": { \"type\": \"architectural blueprint\", \"style\": \"dark luxury blueprint (similar to reference image 2)\", \"visual_style\": { \"background\": \"deep navy / charcoal blue\", \"lines\": \"thin glowing beige/gold lines\", \"walls\": \"slightly extruded 3D effect\", \"labels\": \"clean modern sans-serif\", \"lighting\": \"soft ambient glow\" }, \"content\": { \"rooms\": [ \"3 bedrooms (left, right, bottom-right)\", \"central living room\", \"kitchen + dining (top center)\", \"2 bathrooms\", \"garage (left side connected)\", \"front porch\", \"backyard pool with deck\" ], \"details\": [ \"furniture outlines (beds, sofa, dining table)\", \"door swings and openings\", \"window placements\", \"circulation paths\", \"exact proportions and spacing\" ] } }, \"bottom_section\": { \"type\": \"photorealistic house render\", \"constraint\": \"MUST MATCH THE BLUEPRINT EXACTLY — no added, removed, or shifted rooms\", \"architecture\": { \"style\": \"modern single-story house\", \"roof\": \"flat layered roof\", \"materials\": [ \"smooth concrete walls\", \"wood panel accents\", \"large glass windows\" ] }, \"layout_mapping_rules\": [ \"garage must be on the left side exactly as blueprint\", \"main entrance aligned with living room\", \"pool positioned in backyard matching blueprint dimensions\", \"window placements correspond to each room location\", \"bedroom volumes visible externally in correct positions\" ], \"environment\": { \"setting\": \"suburban neighborhood\", \"elements\": [ \"green lawn\", \"minimal landscaping\", \"clean driveway leading to garage\", \"pool deck matching blueprint footprint\" ] }, \"lighting\": { \"time\": \"golden hour\", \"style\": \"soft natural light with realistic shadows\" }, \"camera\": { \"angle\": \"slightly elevated front perspective\", \"lens\": \"35mm architectural view\" } }, \"consistency_rules\": [ \"room positions must be identical between blueprint and render\", \"no extra structures added in render\", \"all doors and windows must align logically\", \"pool size and placement must match exactly\", \"garage placement must match blueprint\" ], \"style\": { \"top\": \"architectural visualization (dark premium)\", \"bottom\": \"photorealistic modern house\", \"overall\": \"clean, high-end architectural presentation\" }, \"negative_constraints\": [ \"no mismatch between blueprint and render\", \"no extra rooms\", \"no fantasy elements\", \"no unrealistic proportions\", \"no cluttered environment\" ] }"
}
JSON
IM
图像
UI & Graphic nano-banana-2

A minimalist, black-and-white flat vector illustration portr...

A minimalist, black-and-white flat vector illustration portrait of [NAME], rendered in the expressive "Notion avatar" art style. LINE WORK & VIBE: Style: Use THICK, UNIFORM black outlines (monoline weight). The lines should feel organic, smooth, and confident, not rigidly geometric or robotic like generic icons. Vibe: The character should have a distinct personality and a relaxed, cool, or friendly expression. Focus on stylized features, unique hairstyles, and defining accessories to convey character. SELECTIVE BLACK FILLS (CRITICAL): Unlike pure outline icons, utilize Solid Black Fills selectively and strategically. Where to Fill: Use solid black for prominent hair masses, beards, eyebrows, sunglasses, or dark clothing elements. Where to Keep White: The skin, main face area, and lighter elements must remain pure flat white inside the thick outlines. COMPOSITION & TECHNICAL: No shading, no gray tones, no gradients. Only pure Black and pure White. Clean bust or headshot composition centered on a white background. High contrast, clean 2D vector graphics.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A minimalist, black-and-white flat vector illustration portrait of [NAME], rendered in the expressive \"Notion avatar\" art style. LINE WORK & VIBE: Style: Use THICK, UNIFORM black outlines (monoline weight). The lines should feel organic, smooth, and confident, not rigidly geometric or robotic like generic icons. Vibe: The character should have a distinct personality and a relaxed, cool, or friendly expression. Focus on stylized features, unique hairstyles, and defining accessories to convey character. SELECTIVE BLACK FILLS (CRITICAL): Unlike pure outline icons, utilize Solid Black Fills selectively and strategically. Where to Fill: Use solid black for prominent hair masses, beards, eyebrows, sunglasses, or dark clothing elements. Where to Keep White: The skin, main face area, and lighter elements must remain pure flat white inside the thick outlines. COMPOSITION & TECHNICAL: No shading, no gray tones, no gradients. Only pure Black and pure White. Clean bust or headshot composition centered on a white background. High contrast, clean 2D vector graphics."
}
JSON
IM
图像
UI & Graphic nano-banana-2

A preservation architect's survey board for [BUILDING / STRU...

A preservation architect's survey board for [BUILDING / STRUCTURE] — [STYLE / ARCHITECT / PERIOD]. Left section: site plan and context, showing the structure in its urban or landscape setting with orientation, shadows, and neighboring relationships mapped. Center section: the building dissected, a cutaway axonometric revealing structural system, material layers, hidden infrastructure, with callouts identifying original versus modified elements. Right section: the building as experienced, photographed from the canonical viewpoint in ideal light, with human figures for scale and life, the architecture inhabited. Visual style transitions from technical survey blue-line through neutral analytical greys to golden-hour warmth. Title block reading "[BUILDING NAME] — [ARCHITECT], [CITY], [YEAR], HERITAGE SURVEY".

查看 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 preservation architect's survey board for [BUILDING / STRUCTURE] — [STYLE / ARCHITECT / PERIOD]. Left section: site plan and context, showing the structure in its urban or landscape setting with orientation, shadows, and neighboring relationships mapped. Center section: the building dissected, a cutaway axonometric revealing structural system, material layers, hidden infrastructure, with callouts identifying original versus modified elements. Right section: the building as experienced, photographed from the canonical viewpoint in ideal light, with human figures for scale and life, the architecture inhabited. Visual style transitions from technical survey blue-line through neutral analytical greys to golden-hour warmth. Title block reading \"[BUILDING NAME] — [ARCHITECT], [CITY], [YEAR], HERITAGE SURVEY\"."
}
JSON
IM
图像
UI & Graphic nano-banana-2

[BRAND NAME]. Goal: Generate a professional mixed-media oil...

[BRAND NAME]. Goal: Generate a professional mixed-media oil painting on textured canvas where the color palette and graphics are dynamically adapted to the brand identity. 1. BRAND COLOR ADAPTATION - Analyze the visual identity of [BRAND NAME]. - Use the primary brand color for the two main horizontal impasto strokes. - Use a contrasting secondary brand color for the thick, raised central dollop of paint. - Replace the original red and yellow with this new adaptive color scheme. 2. PAINTED SUBJECT & MOTION - Object: A central, vertically oriented product related to [BRAND NAME], rendered as a cohesive OIL PAINTING directly on the canvas. - Technique: Apply a "motion blur" oil painting effect with visible horizontal brushstrokes to create a sense of dynamic movement. - Integration: The object must be part of the painted layer, sharing the same heavy-grain canvas texture as the background, not an overlay. - Branding: Paint the "[BRAND NAME]" logo using distressed, semi-transparent oil paint layers within the object's silhouette. 3. ADAPTIVE IMPASTO & TEXTURE - Primary Strokes: Two thick, physical, horizontal impasto oil paint strokes applied over the painted object in the brand's primary color. - Detail: One heavily textured, raised dollop of the brand's secondary color oil paint placed precisely on the center stroke. - Surface: Background is a raw, heavy-grain grey textured canvas with visible weave, charcoal smudges, and gesso dabs. 4. BRAND-CENTRIC GRAPHICS - Handwriting: Use charcoal and graphite to scribble keywords, slogans, and values associated with [BRAND NAME] across the canvas. - Symbols: Replace the original $ and doodles with hand-drawn, messy abstract icons representing [BRAND NAME]. - Execution: All text and symbols must look like they were scratched or drawn with graphite over the dried oil paint layers. 5. STYLE - Contemporary mixed-media pop-art. 8K macro photography focusing on the physical thickness of oil paint and the raw canvas grain.

查看 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]. Goal: Generate a professional mixed-media oil painting on textured canvas where the color palette and graphics are dynamically adapted to the brand identity. 1. BRAND COLOR ADAPTATION - Analyze the visual identity of [BRAND NAME]. - Use the primary brand color for the two main horizontal impasto strokes. - Use a contrasting secondary brand color for the thick, raised central dollop of paint. - Replace the original red and yellow with this new adaptive color scheme. 2. PAINTED SUBJECT & MOTION - Object: A central, vertically oriented product related to [BRAND NAME], rendered as a cohesive OIL PAINTING directly on the canvas. - Technique: Apply a \"motion blur\" oil painting effect with visible horizontal brushstrokes to create a sense of dynamic movement. - Integration: The object must be part of the painted layer, sharing the same heavy-grain canvas texture as the background, not an overlay. - Branding: Paint the \"[BRAND NAME]\" logo using distressed, semi-transparent oil paint layers within the object's silhouette. 3. ADAPTIVE IMPASTO & TEXTURE - Primary Strokes: Two thick, physical, horizontal impasto oil paint strokes applied over the painted object in the brand's primary color. - Detail: One heavily textured, raised dollop of the brand's secondary color oil paint placed precisely on the center stroke. - Surface: Background is a raw, heavy-grain grey textured canvas with visible weave, charcoal smudges, and gesso dabs. 4. BRAND-CENTRIC GRAPHICS - Handwriting: Use charcoal and graphite to scribble keywords, slogans, and values associated with [BRAND NAME] across the canvas. - Symbols: Replace the original $ and doodles with hand-drawn, messy abstract icons representing [BRAND NAME]. - Execution: All text and symbols must look like they were scratched or drawn with graphite over the dried oil paint layers. 5. STYLE - Contemporary mixed-media pop-art. 8K macro photography focusing on the physical thickness of oil paint and the raw canvas grain."
}
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
图像
UI & Graphic nano-banana-2

Create a clean high-contrast vector mascot icon in Notion-st...

Create a clean high-contrast vector mascot icon in Notion-style artwork based on [person description]. Show only the head in a 3/4 view. Use very thick bold black outer outlines and slightly thinner inner detail lines. Flat monochrome fill. Simplify facial features into strong geometric shapes while preserving recognizable traits such as bald head or hairstyle, beard shape, glasses shape, eyebrows, and smile. Expression should be friendly and slightly exaggerated. Teeth are simplified into clean flat blocks. pure white background. Modern startup mascot logo aesthetic, clean SVG vector look, crisp edges, black and white only, high contrast, symmetrical balance, square composition, 1:1 aspect ratio

查看 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 clean high-contrast vector mascot icon in Notion-style artwork based on [person description]. Show only the head in a 3/4 view. Use very thick bold black outer outlines and slightly thinner inner detail lines. Flat monochrome fill. Simplify facial features into strong geometric shapes while preserving recognizable traits such as bald head or hairstyle, beard shape, glasses shape, eyebrows, and smile. Expression should be friendly and slightly exaggerated. Teeth are simplified into clean flat blocks. pure white background. Modern startup mascot logo aesthetic, clean SVG vector look, crisp edges, black and white only, high contrast, symmetrical balance, square composition, 1:1 aspect ratio"
}
JSON
IM
图像
UI & Graphic nano-banana-2

style_preset: "Zodiac Astrology VTuber Logo Aesthetics (Cele...

style_preset: "Zodiac Astrology VTuber Logo Aesthetics (Celestial Ver.)" global_settings: vibe: "Mystical, celestial, cosmic wisdom, divination, stargazing" background: "Pure white background (for isolation)" rendering: - "Elegant, celestial vector-style finish" - "Deep midnight blue and shining gold palette" - "Thin elegant layered outlines with star accents" - "Glowing star effects and celestial glow" drawing_rules: line_quality: "Thin, elegant curves with constellation line art accents." character_design: - "Integrated constellation and tarot motifs woven into the letters" - "Custom stylized font: elegant, celestial shapes with star dot accents" typography_style: - "Main Title: Large, stylized Japanese with constellation dot patterns" - "Subtitle: Smaller English text in an elegant celestial font" ornament_rule: - "Strictly follow the 'ornaments_selection' provided in the USER INPUT SECTION" - "Distribute ornaments to create a 'celestial reading' visual impact" visual_parameters: color_palette: primary: "Deep midnight blue and shining gold gradient" secondary: "Thin gold inner border + Midnight blue outer stroke" accents: "Constellation lines, zodiac symbols, and star glow" # ---------------------------------------------------------- # USER INPUT SECTION (下記を自由に編集してね) # ---------------------------------------------------------- request: input_text: "星読み" # ← ここを好きな名前に変更 subtitle: "Astrology" # ← 小さく表示したい文字 motif_concept: "星座図とタロットカード" # ← ここを好きな動物やモノに変更 custom_colors: "ミッドナイトブルーとシャイニングゴールド" # ← 好きな色を指定 ornaments_selection: - "星座線 (Zodiac constellation lines)" - "タロットカード (Tarot card borders)" - "三日月 (Crescent moon)" - "太陽 (Radiant sun)" - "魔法陣 (Mystical magic circle)"

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "style_preset: \"Zodiac Astrology VTuber Logo Aesthetics (Celestial Ver.)\" global_settings: vibe: \"Mystical, celestial, cosmic wisdom, divination, stargazing\" background: \"Pure white background (for isolation)\" rendering: - \"Elegant, celestial vector-style finish\" - \"Deep midnight blue and shining gold palette\" - \"Thin elegant layered outlines with star accents\" - \"Glowing star effects and celestial glow\" drawing_rules: line_quality: \"Thin, elegant curves with constellation line art accents.\" character_design: - \"Integrated constellation and tarot motifs woven into the letters\" - \"Custom stylized font: elegant, celestial shapes with star dot accents\" typography_style: - \"Main Title: Large, stylized Japanese with constellation dot patterns\" - \"Subtitle: Smaller English text in an elegant celestial font\" ornament_rule: - \"Strictly follow the 'ornaments_selection' provided in the USER INPUT SECTION\" - \"Distribute ornaments to create a 'celestial reading' visual impact\" visual_parameters: color_palette: primary: \"Deep midnight blue and shining gold gradient\" secondary: \"Thin gold inner border + Midnight blue outer stroke\" accents: \"Constellation lines, zodiac symbols, and star glow\" # ---------------------------------------------------------- # USER INPUT SECTION (下記を自由に編集してね) # ---------------------------------------------------------- request: input_text: \"星読み\" # ← ここを好きな名前に変更 subtitle: \"Astrology\" # ← 小さく表示したい文字 motif_concept: \"星座図とタロットカード\" # ← ここを好きな動物やモノに変更 custom_colors: \"ミッドナイトブルーとシャイニングゴールド\" # ← 好きな色を指定 ornaments_selection: - \"星座線 (Zodiac constellation lines)\" - \"タロットカード (Tarot card borders)\" - \"三日月 (Crescent moon)\" - \"太陽 (Radiant sun)\" - \"魔法陣 (Mystical magic circle)\""
}
JSON
IM
图像
UI & Graphic nano-banana-2

A minimalist and creative advertisement set on a pure white...

A minimalist and creative advertisement set on a pure white background. A real photographic [Real Object] is integrated into a simple hand-drawn black ink doodle using loose, playful lines. The [Doodle Concept] interacts directly and cleverly with the real object, making the object part of the illustrated scene. Include bold uppercase black “[Ad Copy]” text at the top. Place the official [Brand Logo] clearly centered at the bottom. Clean layout, high contrast between realistic object and flat doodle drawing, lots of negative space, smart visual metaphor, print-ready poster design

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A minimalist and creative advertisement set on a pure white background. A real photographic [Real Object] is integrated into a simple hand-drawn black ink doodle using loose, playful lines. The [Doodle Concept] interacts directly and cleverly with the real object, making the object part of the illustrated scene. Include bold uppercase black “[Ad Copy]” text at the top. Place the official [Brand Logo] clearly centered at the bottom. Clean layout, high contrast between realistic object and flat doodle drawing, lots of negative space, smart visual metaphor, print-ready poster design"
}
JSON
IM
图像
UI & Graphic nano-banana-2

[PERSONE]. Act as a Senior Editorial Designer and Graphic Ar...

[PERSONE]. Act as a Senior Editorial Designer and Graphic Artist. Goal: Generate a complex, multi-layered Swiss-style collage poster for [PERSONE]. PHASE 1: SEMANTIC INTELLIGENCE (AUTONOMOUS) [INSTRUCTIONS]: Analyze "[PERSONE]". Determine their primary field (e.g., Elite Sports, Cyber-Engineering, Cinema, History). Select an "Iconic Accent Color" based on their identity (e.g., Racing Orange for a driver, Neon Cyan for a hacker, Crimson for a hero). Generate 3 key statistics or milestones (e.g., "7 TITLES", "98% ACCURACY") and a short professional title. PHASE 2: COMPOSITIONAL STRUCTURE (THE GRID) The image is a single vertical composition with overlapping geometric frames and segments: - MAIN SUBJECT (Top Left): A large, high-grain grayscale or color portrait of [PERSONE], smiling or looking confident. - DETAIL SHOT (Center Right): A zoomed-in, cropped rectangle showing only the eyes or a specific detail of [PERSONE]. - FULL BODY SHOT (Bottom Center): [PERSONE] sitting on a geometric box or podium in a relaxed but powerful pose. - BACKGROUND: Light gray with a heavy, tactile film grain/noise texture. PHASE 3: GRAPHIC ELEMENTS & TYPOGRAPHY - Initials: Large, outlined capital letters of the first and last name placed in opposite corners. - Vertical Ribbon: A solid color strip with the text "WORLD CHAMPIONSHIP LEADER" or a relevant title running vertically through the center. - Data Blocks: - A specific number (ID or rank) in a bold sans-serif block. - A "Statistics" block in the bottom-left corner with 3 lines of text (e.g., "TWO POLES / FOUR WINS / FIVE PODIUMS"). - Accents: Scatter orange and black squares, dotted circles, and small asterisks throughout the grid for visual complexity. PHASE 4: LIGHTING & TEXTURE - Texture: High-contrast, gritty, and grainy. The overall image should look like a printed high-end magazine or a vintage poster. - Lighting: Professional studio lighting on the subjects, but processed with a "risograph" or "halftone" feel. PHASE 5: TECH SPECS 8K Resolution. Swiss Modernism aesthetic. Flat vector shapes combined with hyper-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": "[PERSONE]. Act as a Senior Editorial Designer and Graphic Artist. Goal: Generate a complex, multi-layered Swiss-style collage poster for [PERSONE]. PHASE 1: SEMANTIC INTELLIGENCE (AUTONOMOUS) [INSTRUCTIONS]: Analyze \"[PERSONE]\". Determine their primary field (e.g., Elite Sports, Cyber-Engineering, Cinema, History). Select an \"Iconic Accent Color\" based on their identity (e.g., Racing Orange for a driver, Neon Cyan for a hacker, Crimson for a hero). Generate 3 key statistics or milestones (e.g., \"7 TITLES\", \"98% ACCURACY\") and a short professional title. PHASE 2: COMPOSITIONAL STRUCTURE (THE GRID) The image is a single vertical composition with overlapping geometric frames and segments: - MAIN SUBJECT (Top Left): A large, high-grain grayscale or color portrait of [PERSONE], smiling or looking confident. - DETAIL SHOT (Center Right): A zoomed-in, cropped rectangle showing only the eyes or a specific detail of [PERSONE]. - FULL BODY SHOT (Bottom Center): [PERSONE] sitting on a geometric box or podium in a relaxed but powerful pose. - BACKGROUND: Light gray with a heavy, tactile film grain/noise texture. PHASE 3: GRAPHIC ELEMENTS & TYPOGRAPHY - Initials: Large, outlined capital letters of the first and last name placed in opposite corners. - Vertical Ribbon: A solid color strip with the text \"WORLD CHAMPIONSHIP LEADER\" or a relevant title running vertically through the center. - Data Blocks: - A specific number (ID or rank) in a bold sans-serif block. - A \"Statistics\" block in the bottom-left corner with 3 lines of text (e.g., \"TWO POLES / FOUR WINS / FIVE PODIUMS\"). - Accents: Scatter orange and black squares, dotted circles, and small asterisks throughout the grid for visual complexity. PHASE 4: LIGHTING & TEXTURE - Texture: High-contrast, gritty, and grainy. The overall image should look like a printed high-end magazine or a vintage poster. - Lighting: Professional studio lighting on the subjects, but processed with a \"risograph\" or \"halftone\" feel. PHASE 5: TECH SPECS 8K Resolution. Swiss Modernism aesthetic. Flat vector shapes combined with hyper-realistic photography."
}
JSON
IM
图像
UI & Graphic nano-banana-2

[BRAND NAME]. Act as a Senior AI Visual Strategist & Creativ...

[BRAND NAME]. Act as a Senior AI Visual Strategist & Creative Director. Goal: Generate a high-motion triptych editorial where every visual element (color, text, props) is a direct semantic derivative of the brand name. PHASE 1: SEMANTIC BRAND ANALYSIS (AUTONOMOUS) [INSTRUCTIONS FOR IMAGEN]: Core Identity: Analyze "[BRAND NAME]". Define its industry, soul, and "vibe" (e.g., Kinetic, Organic, Brutalist, Ethereal). Color Psychology: Select a triadic palette based on brand associations: - BACKGROUND: The "Mood" color (e.g., Deep Forest for 'GAIA', Neon Amber for 'FUSE'). - ACCENTS/TYPOGRAPHY: The "Energy" color. Must have high contrast/readability against the background. - APPAREL: The "Statement" color. Completes the brand's visual signature. Copywriting: Generate 2-3 short, punchy slogans or keywords that resonate with the brand's mission to be used as background micro-text. PHASE 2: COMPOSITION (THE DYNAMIC TRIPTYCH) Layout: A single horizontal image split into three vertical editorial panels. - PANEL 1 (The Portrait): Extreme close-up. Bold [BRAND NAME] wordmark inside a geometric frame (circle or rectangle) overlapping the model's face or neck. - PANEL 2 (The Elevate): Medium shot. A model (gender determined by brand target audience) holds a primary brand-representative object above their head in a triumphant or symbolic gesture. - PANEL 3 (The Kinetic): Full-body shot. High-speed motion blur or an aggressive "power pose" interacting with the brand's core element. PHASE 3: GRAPHIC OVERLAYS & TEXTURES - Main Typography: Large, slanted (italic) heavy sans-serif in [ACCENT COLOR]. - Dynamic Ribbons: Vertical yellow or contrast tapes crossing the panels with repeating text: "[BRAND NAME] // [ASSOCIATED KEYWORD] // [BRAND NAME]". - Micro-Copy: Scattered small text in corners like "DESIGNED FOR [TARGET AUDIENCE]" or "EST. 2026 // GLOBAL IDENTITY". PHASE 4: LIGHTING & ESTHETIC STANDARDS - High-End Editorial (Vogue/Hypebeast style). - Global Illumination with crisp, sharp edges. - Realistic skin textures (pores, subtle sweat/shine) and high-fidelity fabric weaves. - No "AI-plastic" artifacts. PHASE 5: TECH SPECS 8K Resolution. Render: Octane. Subtle film grain. Ray-traced reflections on eyes and surfaces.

查看 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 AI Visual Strategist & Creative Director. Goal: Generate a high-motion triptych editorial where every visual element (color, text, props) is a direct semantic derivative of the brand name. PHASE 1: SEMANTIC BRAND ANALYSIS (AUTONOMOUS) [INSTRUCTIONS FOR IMAGEN]: Core Identity: Analyze \"[BRAND NAME]\". Define its industry, soul, and \"vibe\" (e.g., Kinetic, Organic, Brutalist, Ethereal). Color Psychology: Select a triadic palette based on brand associations: - BACKGROUND: The \"Mood\" color (e.g., Deep Forest for 'GAIA', Neon Amber for 'FUSE'). - ACCENTS/TYPOGRAPHY: The \"Energy\" color. Must have high contrast/readability against the background. - APPAREL: The \"Statement\" color. Completes the brand's visual signature. Copywriting: Generate 2-3 short, punchy slogans or keywords that resonate with the brand's mission to be used as background micro-text. PHASE 2: COMPOSITION (THE DYNAMIC TRIPTYCH) Layout: A single horizontal image split into three vertical editorial panels. - PANEL 1 (The Portrait): Extreme close-up. Bold [BRAND NAME] wordmark inside a geometric frame (circle or rectangle) overlapping the model's face or neck. - PANEL 2 (The Elevate): Medium shot. A model (gender determined by brand target audience) holds a primary brand-representative object above their head in a triumphant or symbolic gesture. - PANEL 3 (The Kinetic): Full-body shot. High-speed motion blur or an aggressive \"power pose\" interacting with the brand's core element. PHASE 3: GRAPHIC OVERLAYS & TEXTURES - Main Typography: Large, slanted (italic) heavy sans-serif in [ACCENT COLOR]. - Dynamic Ribbons: Vertical yellow or contrast tapes crossing the panels with repeating text: \"[BRAND NAME] // [ASSOCIATED KEYWORD] // [BRAND NAME]\". - Micro-Copy: Scattered small text in corners like \"DESIGNED FOR [TARGET AUDIENCE]\" or \"EST. 2026 // GLOBAL IDENTITY\". PHASE 4: LIGHTING & ESTHETIC STANDARDS - High-End Editorial (Vogue/Hypebeast style). - Global Illumination with crisp, sharp edges. - Realistic skin textures (pores, subtle sweat/shine) and high-fidelity fabric weaves. - No \"AI-plastic\" artifacts. PHASE 5: TECH SPECS 8K Resolution. Render: Octane. Subtle film grain. Ray-traced reflections on eyes and surfaces."
}
JSON
IM
图像
UI & Graphic nano-banana-2

Create a soap foam sculpture in the exact shape of the uploa...

Create a soap foam sculpture in the exact shape of the uploaded logo, made entirely of white soap bubbles and foam with realistic bubble textures. Place it on wet bathroom tiles in the brand’s signature color (match the color from the uploaded logo). Top-down view, centered composition. The tiles should be glossy and wet with water droplets scattered across the surface. Add smaller foam bubbles and soap suds around the main logo shape. Grout lines visible between tiles. Additional small foam shapes in corners. Product photography style, clean and vibrant lighting.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create a soap foam sculpture in the exact shape of the uploaded logo, made entirely of white soap bubbles and foam with realistic bubble textures. Place it on wet bathroom tiles in the brand’s signature color (match the color from the uploaded logo). Top-down view, centered composition. The tiles should be glossy and wet with water droplets scattered across the surface. Add smaller foam bubbles and soap suds around the main logo shape. Grout lines visible between tiles. Additional small foam shapes in corners. Product photography style, clean and vibrant lighting."
}
JSON
IM
图像
UI & Graphic nano-banana-2

[BRAND NAME] ({INDUSTRY}). Act as a Lead Brand Designer c...

[BRAND NAME] ({INDUSTRY}). Act as a Lead Brand Designer creating a comprehensive "Brand Identity System" presentation (Bento-Grid Layout). **THE TASK:** Generate a single, high-resolution bento-grid board containing **6 distinct modules** that define the visual identity for [BRAND NAME]. --- **PHASE 1: VISUAL STRATEGY (AUTONOMOUS)** 1. **Analyze the Brand:** Determine the archetype and visual vibe. 2. **Define the Palette:** Select 4 distinct colors. 3. **Select Typography:** Choose ONE specific Google Font (Serif, Sans-Serif, or Display) relevant to the industry. **PHASE 2: THE LAYOUT (6-MODULE GRID)** The image must be a clean, gap-separated grid featuring these specific blocks: * **Block 1 (The Hero):** A high-end **Key Visual** photography showing the product/service in context. Cinematic lighting, photorealistic. Overlay the brand logo in white. * **Block 2 (Social Media):** A mockup of an **Instagram Post**. It features a bold headline using the brand font and a lifestyle image. * **Block 3 (The Palette & HEX):** A clean design block displaying **4 Vertical Color Swatches**. * *Crucial Detail:* Inside or below each color swatch, simulate distinct text looking like **HEX Codes** (e.g., "#1A2B3C"). * **Block 4 (Typography Spec):** A minimalist block dedicated to the **Brand Font**. * *CRITICAL CONSTRAINT:* Do NOT show the alphabet (Aa Bb Cc). * *The Content:* The block must display ONLY the **Name of the Font** (e.g., "Montserrat", "Lato", "Oswald") written in large, crisp characters using that specific font style. This acts as the visual specimen. * *Subtext:* Tiny text at the bottom reading "Primary Typeface". * **Block 5 (The Logo):** A solid background block featuring the **Final Logo** (clean, vector style, NO construction lines/grids). Minimalist and iconic. * **Block 6 (Brand DNA):** A text-heavy "Manifesto Card". It simulates a layout with three short paragraphs titled: * **ARCHETYPE:** (e.g., "The Innovator") * **VOICE:** (e.g., "Confident, Direct") * **VISUALS:** (e.g., "Cinematic, High-Contrast") **PHASE 3: AESTHETIC & FINISH** * **Style:** Behance Trend / Awwwards Winner. * **Quality:** 8k resolution, razor-sharp vector graphics mixed with high-end photography. * **Lighting:** Soft studio lighting across the whole grid to make it look like a cohesive presentation board.

查看 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] ({INDUSTRY}). Act as a Lead Brand Designer creating a comprehensive \"Brand Identity System\" presentation (Bento-Grid Layout). **THE TASK:** Generate a single, high-resolution bento-grid board containing **6 distinct modules** that define the visual identity for [BRAND NAME]. --- **PHASE 1: VISUAL STRATEGY (AUTONOMOUS)** 1. **Analyze the Brand:** Determine the archetype and visual vibe. 2. **Define the Palette:** Select 4 distinct colors. 3. **Select Typography:** Choose ONE specific Google Font (Serif, Sans-Serif, or Display) relevant to the industry. **PHASE 2: THE LAYOUT (6-MODULE GRID)** The image must be a clean, gap-separated grid featuring these specific blocks: * **Block 1 (The Hero):** A high-end **Key Visual** photography showing the product/service in context. Cinematic lighting, photorealistic. Overlay the brand logo in white. * **Block 2 (Social Media):** A mockup of an **Instagram Post**. It features a bold headline using the brand font and a lifestyle image. * **Block 3 (The Palette & HEX):** A clean design block displaying **4 Vertical Color Swatches**. * *Crucial Detail:* Inside or below each color swatch, simulate distinct text looking like **HEX Codes** (e.g., \"#1A2B3C\"). * **Block 4 (Typography Spec):** A minimalist block dedicated to the **Brand Font**. * *CRITICAL CONSTRAINT:* Do NOT show the alphabet (Aa Bb Cc). * *The Content:* The block must display ONLY the **Name of the Font** (e.g., \"Montserrat\", \"Lato\", \"Oswald\") written in large, crisp characters using that specific font style. This acts as the visual specimen. * *Subtext:* Tiny text at the bottom reading \"Primary Typeface\". * **Block 5 (The Logo):** A solid background block featuring the **Final Logo** (clean, vector style, NO construction lines/grids). Minimalist and iconic. * **Block 6 (Brand DNA):** A text-heavy \"Manifesto Card\". It simulates a layout with three short paragraphs titled: * **ARCHETYPE:** (e.g., \"The Innovator\") * **VOICE:** (e.g., \"Confident, Direct\") * **VISUALS:** (e.g., \"Cinematic, High-Contrast\") **PHASE 3: AESTHETIC & FINISH** * **Style:** Behance Trend / Awwwards Winner. * **Quality:** 8k resolution, razor-sharp vector graphics mixed with high-end photography. * **Lighting:** Soft studio lighting across the whole grid to make it look like a cohesive presentation board."
}
JSON
IM
图像
UI & Graphic nano-banana-2

An extreme close-up, high-fashion editorial portrait focusin...

An extreme close-up, high-fashion editorial portrait focusing on the right side of a person's face. The composition is a tight crop showing the bridge of the nose, a portion of the lips, and a single eye peering through sunglasses. The shot is characterized by a heavy, cinematic film grain and a warm, sophisticated studio atmosphere. Eyewear: Large-frame, wrap-around sunglasses made of high-gloss dark tortoiseshell acetate (mottled black and deep mahogany). The lenses are a vibrant, translucent amber-orange, allowing the eye and eyelashes behind the lens to remain visible but color-tinted. Person: A person with smooth skin showing natural texture and fine pores. The lighting is soft-side lighting from the right, creating a gentle shadow on the left side of the nose and a subtle highlight on the cheekbone and lower lip. Typography: Bold, white, geometric sans-serif text reading "Bold Impact" is overlaid on the lower-right cheek. Three smaller, delicate labels are scattered: "Deep Tones" (top right), "Sharp Detail" (on the left lens), and "Strong Style" (bottom right). Color Palette: A rich mix of skin tones (#E8A88A), burnt orange (#B8541C), and deep espresso (#1A0D0B), contrasted with crisp white text (#FFFFFF). Lighting: Warm studio lighting with a soft-focus depth of field. The background consists of out-of-focus hair and skin, keeping all attention on the eye and the texture of the acetate frames. Atmosphere: Premium, editorial fashion magazine aesthetic; high-contrast but with soft transitions.

查看 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 extreme close-up, high-fashion editorial portrait focusing on the right side of a person's face. The composition is a tight crop showing the bridge of the nose, a portion of the lips, and a single eye peering through sunglasses. The shot is characterized by a heavy, cinematic film grain and a warm, sophisticated studio atmosphere. Eyewear: Large-frame, wrap-around sunglasses made of high-gloss dark tortoiseshell acetate (mottled black and deep mahogany). The lenses are a vibrant, translucent amber-orange, allowing the eye and eyelashes behind the lens to remain visible but color-tinted. Person: A person with smooth skin showing natural texture and fine pores. The lighting is soft-side lighting from the right, creating a gentle shadow on the left side of the nose and a subtle highlight on the cheekbone and lower lip. Typography: Bold, white, geometric sans-serif text reading \"Bold Impact\" is overlaid on the lower-right cheek. Three smaller, delicate labels are scattered: \"Deep Tones\" (top right), \"Sharp Detail\" (on the left lens), and \"Strong Style\" (bottom right). Color Palette: A rich mix of skin tones (#E8A88A), burnt orange (#B8541C), and deep espresso (#1A0D0B), contrasted with crisp white text (#FFFFFF). Lighting: Warm studio lighting with a soft-focus depth of field. The background consists of out-of-focus hair and skin, keeping all attention on the eye and the texture of the acetate frames. Atmosphere: Premium, editorial fashion magazine aesthetic; high-contrast but with soft transitions."
}
JSON
IM
图像
UI & Graphic nano-banana-2

A flat-lay collection of exactly 9 hyper-realistic 3D resin...

A flat-lay collection of exactly 9 hyper-realistic 3D resin fridge magnets arranged on a bright pure white surface in a clean 3x3 grid, themed around [BRAND]. At the very top center, a wide rectangular text magnet spells "BRAND" in bold 3D block letters in the brand's signature colors. Below it, 9 magnets in a clean 3x3 grid: the official logo badge, the most iconic hero product, a secondary iconic product, a third iconic product or packaging, a brand mascot or character chibi, a fifth iconic item, a sixth iconic item, a seventh iconic item, and the brand's storefront or headquarters building facade. Each magnet is small, neatly spaced with generous white space between them, slightly raised with a soft drop shadow beneath. Bright white background, warm studio lighting from above, photorealistic product render, top-down flat-lay angle, 4:5 aspect ratio

查看 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 flat-lay collection of exactly 9 hyper-realistic 3D resin fridge magnets arranged on a bright pure white surface in a clean 3x3 grid, themed around [BRAND]. At the very top center, a wide rectangular text magnet spells \"BRAND\" in bold 3D block letters in the brand's signature colors. Below it, 9 magnets in a clean 3x3 grid: the official logo badge, the most iconic hero product, a secondary iconic product, a third iconic product or packaging, a brand mascot or character chibi, a fifth iconic item, a sixth iconic item, a seventh iconic item, and the brand's storefront or headquarters building facade. Each magnet is small, neatly spaced with generous white space between them, slightly raised with a soft drop shadow beneath. Bright white background, warm studio lighting from above, photorealistic product render, top-down flat-lay angle, 4:5 aspect ratio"
}
JSON
IM
图像
UI & Graphic nano-banana-2

Pergola Blueprint Prompt: Hand-drawn architectural pencil sk...

Pergola Blueprint Prompt: Hand-drawn architectural pencil sketch of a wooden garden pergola on white paper. Front and slight side elevation view with clear proportions. Construction lines, dimensions and handwritten notes visible. Wooden posts and cross beams precisely drafted. Professional but hand-sketched technical style. Clean white background. Finished Pergola: Fully built wooden pergola in a real garden, matching the exact structure and proportions from the sketch. Viewed from a low front corner perspective at eye level, showing depth and the full beam structure instead of a flat elevation. Natural wood texture with realistic joints and connections. Installed on grass with surrounding plants. Soft daylight with grounded shadows. Photorealistic architectural visualization.

查看 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": "Pergola Blueprint Prompt: Hand-drawn architectural pencil sketch of a wooden garden pergola on white paper. Front and slight side elevation view with clear proportions. Construction lines, dimensions and handwritten notes visible. Wooden posts and cross beams precisely drafted. Professional but hand-sketched technical style. Clean white background. Finished Pergola: Fully built wooden pergola in a real garden, matching the exact structure and proportions from the sketch. Viewed from a low front corner perspective at eye level, showing depth and the full beam structure instead of a flat elevation. Natural wood texture with realistic joints and connections. Installed on grass with surrounding plants. Soft daylight with grounded shadows. Photorealistic architectural visualization."
}
JSON
IM
图像
UI & Graphic nano-banana-2

High-resolution Japanese commercial advertisement style phot...

High-resolution Japanese commercial advertisement style photo, three young women posing against a clean white background with bold geometric color blocks (blue, pink, yellow, green) arranged diagonally. Top right: woman with short brown hair wearing a red and black plaid shirt and black choker, winking and making an “OK” hand gesture over one eye. Left: woman in a light blue police uniform with cap, making an “OK” gesture near her eye with a playful expression. Bottom right: woman dressed as a nurse in a white outfit and cap, making a peace (V) sign with a cute expression. Bright studio lighting, soft shadows, vibrant colors, sharp focus, clean commercial composition, modern Japanese advertising aesthetic, playful and energetic mood, ultra-detailed, crisp skin tones. No text, no logos, no typography anywhere in the image.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "High-resolution Japanese commercial advertisement style photo, three young women posing against a clean white background with bold geometric color blocks (blue, pink, yellow, green) arranged diagonally. Top right: woman with short brown hair wearing a red and black plaid shirt and black choker, winking and making an “OK” hand gesture over one eye. Left: woman in a light blue police uniform with cap, making an “OK” gesture near her eye with a playful expression. Bottom right: woman dressed as a nurse in a white outfit and cap, making a peace (V) sign with a cute expression. Bright studio lighting, soft shadows, vibrant colors, sharp focus, clean commercial composition, modern Japanese advertising aesthetic, playful and energetic mood, ultra-detailed, crisp skin tones. No text, no logos, no typography anywhere in the image."
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。