Examples for using nano-banana-2 through RunAPI from agent tools or API calls. Copy a prompt, then use it in Claude Code, Codex, Cursor, Windsurf, or your backend.
1. claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
2. Restart Claude Code
3. Paste this prompt: Generate an image: "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. Restart Codex
3. Paste this prompt: Generate an image: "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. Restart Cursor
3. Paste this prompt: Generate an image: "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. Restart Windsurf
3. Paste this prompt: Generate an image: "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_imageGet API Key
Create an ultra-photorealistic studio portrait using the uploaded image as the ONLY identity reference. The subject must retain exact facial identity — same facial structure, proportions, skin tone, hairstyle, and natural features. Do not alter or beautify the face. The subject is wearing a sharply tailored,
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 an ultra-photorealistic studio portrait using the uploaded image as the ONLY identity reference. The subject must retain exact facial identity — same facial structure, proportions, skin tone, hairstyle, and natural features. Do not alter or beautify the face. The subject is wearing a sharply tailored,"
}
JSON
playstation 1 game case with a movie tie-in game that seems like a real game you may have played back in the day. Pick a period appropriate movie that never got a video game version because that would have been a really bad idea. Worst possible choice for a movie tie-in game.
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": "playstation 1 game case with a movie tie-in game that seems like a real game you may have played back in the day. Pick a period appropriate movie that never got a video game version because that would have been a really bad idea. Worst possible choice for a movie tie-in game."
}
JSON
Ultra-realistic commercial product photography of a pastel peach-colored soda can labeled “OLIPOP – Peaches & Cream” placed upright in the center, surrounded tightly by fresh whole peaches at the bottom and large transparent ice cubes stacked around and partially covering the top of the can, heavy condensation droplets covering the can and fruit, tiny carbonation bubbles visible on the peaches, crushed ice texture with sharp edges and frosty highlights, soft diffused studio lighting.
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
--data-binary @- <<'JSON'
{
"model": "nano-banana-2",
"prompt": "Ultra-realistic commercial product photography of a pastel peach-colored soda can labeled “OLIPOP – Peaches & Cream” placed upright in the center, surrounded tightly by fresh whole peaches at the bottom and large transparent ice cubes stacked around and partially covering the top of the can, heavy condensation droplets covering the can and fruit, tiny carbonation bubbles visible on the peaches, crushed ice texture with sharp edges and frosty highlights, soft diffused studio lighting."
}
JSON
You are a world-class director of industrial visualization and a futuristic interface designer specializing in advanced visual engineering diagnostic tools. Your task is to transform the downloaded product into a futuristic visualization of the technical scanning interface, similar to the product analyzed in a high-tech laboratory diagnostic system. input: uploaded product image style: • black background with a clear white grid of the drawing • the product is made in the form of a luminous translucent X-ray frame model • clear geometry of the technical grid • Ultra-sharp white lines and edges • Minimalistic HUD interface design in sci-fi style INTERFACE ELEMENTS: • thin white lettering-callouts with pointer lines describing the components of the product • Zoom analysis field, showing a product fragment in close-up • A colored layer of the heat map of the material (red/ orange/blue) is displayed inside the zoom field. • Scan indicators such as: "THE SCAN..." "MATERIAL ANALYSIS..." "98% DATA PROCESSING" • Small loading panels and user interface diagnostic modules • luminous markers in the form of angular frames around the image VISUAL LANGUAGE: • Advanced engineering drawing design • Futuristic laboratory scanning interface • Engineering visualization of the product at the Apple level • Ultra-pure composition • High-contrast black and white interface lighting: • subtle white glow around the frame • Volumetric light beam scanning • Technical sci-fi visualization composition: • in the center of the product • Grid-aligned interface layout • Scalable analysis panel in one corner • Minimalistic but highly technical exit: Futuristic product scanning interface , visualization of technical diagnostics , technical analysis screen , ultra clean, ultra clear, 8K
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": "You are a world-class director of industrial visualization and a futuristic interface designer specializing in advanced visual engineering diagnostic tools. Your task is to transform the downloaded product into a futuristic visualization of the technical scanning interface, similar to the product analyzed in a high-tech laboratory diagnostic system. input: uploaded product image style: • black background with a clear white grid of the drawing • the product is made in the form of a luminous translucent X-ray frame model • clear geometry of the technical grid • Ultra-sharp white lines and edges • Minimalistic HUD interface design in sci-fi style INTERFACE ELEMENTS: • thin white lettering-callouts with pointer lines describing the components of the product • Zoom analysis field, showing a product fragment in close-up • A colored layer of the heat map of the material (red/ orange/blue) is displayed inside the zoom field. • Scan indicators such as: \"THE SCAN...\" \"MATERIAL ANALYSIS...\" \"98% DATA PROCESSING\" • Small loading panels and user interface diagnostic modules • luminous markers in the form of angular frames around the image VISUAL LANGUAGE: • Advanced engineering drawing design • Futuristic laboratory scanning interface • Engineering visualization of the product at the Apple level • Ultra-pure composition • High-contrast black and white interface lighting: • subtle white glow around the frame • Volumetric light beam scanning • Technical sci-fi visualization composition: • in the center of the product • Grid-aligned interface layout • Scalable analysis panel in one corner • Minimalistic but highly technical exit: Futuristic product scanning interface , visualization of technical diagnostics , technical analysis screen , ultra clean, ultra clear, 8K"
}
JSON
[BRAND NAME]: A high-end, glossy concept art magazine editorial photograph of a unique, unexpected functional object conceptualized and designed by the brand. **1. The Concept & Object (AI Invention):** Based on the design philosophy, heritage, and material vocabulary of the specified brand, the AI must invent a novel utility product (NOT standard clothing, shoes, or bags). Examples could be home goods, tech accessories, tools, or sporting equipment, reinterpretated through the brand's lens. The object should feel sculptural yet functional. **2. Materials & Details (Hyper-Premium):** The object is constructed from ultra-premium, highly tactile materials characteristic of the brand (e.g., patinated exotic leathers, brushed aerospace-grade titanium, sculpted matte ceramics, molded carbon fiber, or technical high-fashion textiles). Every detail is hyper-realistic: visible stitching, microscopic material grain, precision engravings, and complex texture contrasts. **3. Photography & Lighting (Cinematic Studio):** Shot on a medium format Phase One camera with a 100mm macro lens. Extremely shallow depth of field, with sharp focus on the hero details of the object and a creamy, smooth bokeh background. The lighting is sophisticated studio softbox lighting: gentle, enveloping fill light with precise rim lighting to accentuate contours and material textures. **4. Environment:** A seamless, impeccably clean studio cyclorama background in a pure, ultra-light pastel tone (e.g., desaturated mint, pale blush, or off-white), free of shadows. **5. Layout & UI Elements (Strict Placement):** - **Bottom Right Corner:** A small, understated, monochrome gray logo of the brand. - **Bottom Left Corner:** Small, minimalist monochrome gray text describing the invented product. The font style looks like Manrope Regular with very tight tracking (kerning) and balanced line spacing. Example format: "CONCEPT STUDY: [AI inserts invented product name]. MATERIAL: [AI inserts main materials]. SS25.
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]: A high-end, glossy concept art magazine editorial photograph of a unique, unexpected functional object conceptualized and designed by the brand. **1. The Concept & Object (AI Invention):** Based on the design philosophy, heritage, and material vocabulary of the specified brand, the AI must invent a novel utility product (NOT standard clothing, shoes, or bags). Examples could be home goods, tech accessories, tools, or sporting equipment, reinterpretated through the brand's lens. The object should feel sculptural yet functional. **2. Materials & Details (Hyper-Premium):** The object is constructed from ultra-premium, highly tactile materials characteristic of the brand (e.g., patinated exotic leathers, brushed aerospace-grade titanium, sculpted matte ceramics, molded carbon fiber, or technical high-fashion textiles). Every detail is hyper-realistic: visible stitching, microscopic material grain, precision engravings, and complex texture contrasts. **3. Photography & Lighting (Cinematic Studio):** Shot on a medium format Phase One camera with a 100mm macro lens. Extremely shallow depth of field, with sharp focus on the hero details of the object and a creamy, smooth bokeh background. The lighting is sophisticated studio softbox lighting: gentle, enveloping fill light with precise rim lighting to accentuate contours and material textures. **4. Environment:** A seamless, impeccably clean studio cyclorama background in a pure, ultra-light pastel tone (e.g., desaturated mint, pale blush, or off-white), free of shadows. **5. Layout & UI Elements (Strict Placement):** - **Bottom Right Corner:** A small, understated, monochrome gray logo of the brand. - **Bottom Left Corner:** Small, minimalist monochrome gray text describing the invented product. The font style looks like Manrope Regular with very tight tracking (kerning) and balanced line spacing. Example format: \"CONCEPT STUDY: [AI inserts invented product name]. MATERIAL: [AI inserts main materials]. SS25."
}
JSON
Un storyboard limpio en cuadrícula 3×3 con nueve paneles iguales en proporción [ratio], dentro de un formato total 4:5. Usa la imagen de referencia como base del producto. Mantén exactamente el mismo producto, diseño del packaging, branding, materiales, colores, proporciones e identidad general en los nueve paneles, tal como en la referencia. El producto debe ser claramente reconocible en cada frame. La etiqueta, el logo y las proporciones deben permanecer exactamente iguales. Este storyboard es una presentación mockup de alto nivel para un portfolio de branding. El enfoque está en la forma, la composición, la materialidad y el ritmo visual, más que en el realismo o una narrativa lifestyle. El resultado debe sentirse curado, editorial y orientado al diseño. FRAME 1: Plano frontal hero del producto en un entorno de estudio limpio. Fondo neutro, composición equilibrada, presentación calmada y segura del producto. FRAME 2: Primer plano con el enfoque centrado en la parte media del producto. Se destacan la textura de la superficie, los materiales y los detalles de impresión. FRAME 3: El producto de referencia colocado en un entorno que encaja naturalmente con la marca y la categoría del producto. Escenario de estudio inspirado en los elementos de diseño y colores del producto. FRAME 4: Producto mostrado en uso o en interacción sobre un fondo de estudio neutro. Las manos y los elementos de interacción son mínimos y discretos, manteniendo el estilo del packaging. FRAME 5: Composición isométrica que muestra varios productos organizados en un orden geométrico preciso desde un ángulo isométrico superior. Todos los productos están colocados con el mismo ángulo isométrico, espaciados de forma uniforme, limpios, estructurados y gráficos. FRAME 6: Producto levitando ligeramente, inclinado sobre un fondo neutro que coincida con la paleta de colores de la imagen de referencia. La posición flotante es intencional y natural en el espacio. FRAME 7: Primerísimo primer plano centrado en un detalle específico de la etiqueta, el borde, la textura o el comportamiento del material. FRAME 8: El producto en un entorno inesperado pero estéticamente potente, con un enfoque audaz, editorial y visualmente impactante. Escenario inesperado pero altamente estilizado, basado en estudio y dirigido por diseño. Composición fuerte que eleva la marca. FRAME 9: Composición amplia que muestra el producto en uso dentro de un setup de diseño refinado. Props limpios, estilismo controlado y coherente con el resto de la serie. CÁMARA Y ESTILO: Imágenes de estudio de ultra alta calidad con apariencia de cámara real. Diferentes ángulos y encuadres en cada frame. Profundidad de campo controlada, iluminación precisa, materiales y reflejos realistas. La lógica de iluminación, la paleta de colores, el mood y el lenguaje visual deben mantenerse consistentes en los nueve paneles como una sola serie cohesionada. OUTPUT: Una cuadrícula limpia 3×3 sin bordes, sin texto, sin captions y sin marcas de agua.
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": "Un storyboard limpio en cuadrícula 3×3 con nueve paneles iguales en proporción [ratio], dentro de un formato total 4:5. Usa la imagen de referencia como base del producto. Mantén exactamente el mismo producto, diseño del packaging, branding, materiales, colores, proporciones e identidad general en los nueve paneles, tal como en la referencia. El producto debe ser claramente reconocible en cada frame. La etiqueta, el logo y las proporciones deben permanecer exactamente iguales. Este storyboard es una presentación mockup de alto nivel para un portfolio de branding. El enfoque está en la forma, la composición, la materialidad y el ritmo visual, más que en el realismo o una narrativa lifestyle. El resultado debe sentirse curado, editorial y orientado al diseño. FRAME 1: Plano frontal hero del producto en un entorno de estudio limpio. Fondo neutro, composición equilibrada, presentación calmada y segura del producto. FRAME 2: Primer plano con el enfoque centrado en la parte media del producto. Se destacan la textura de la superficie, los materiales y los detalles de impresión. FRAME 3: El producto de referencia colocado en un entorno que encaja naturalmente con la marca y la categoría del producto. Escenario de estudio inspirado en los elementos de diseño y colores del producto. FRAME 4: Producto mostrado en uso o en interacción sobre un fondo de estudio neutro. Las manos y los elementos de interacción son mínimos y discretos, manteniendo el estilo del packaging. FRAME 5: Composición isométrica que muestra varios productos organizados en un orden geométrico preciso desde un ángulo isométrico superior. Todos los productos están colocados con el mismo ángulo isométrico, espaciados de forma uniforme, limpios, estructurados y gráficos. FRAME 6: Producto levitando ligeramente, inclinado sobre un fondo neutro que coincida con la paleta de colores de la imagen de referencia. La posición flotante es intencional y natural en el espacio. FRAME 7: Primerísimo primer plano centrado en un detalle específico de la etiqueta, el borde, la textura o el comportamiento del material. FRAME 8: El producto en un entorno inesperado pero estéticamente potente, con un enfoque audaz, editorial y visualmente impactante. Escenario inesperado pero altamente estilizado, basado en estudio y dirigido por diseño. Composición fuerte que eleva la marca. FRAME 9: Composición amplia que muestra el producto en uso dentro de un setup de diseño refinado. Props limpios, estilismo controlado y coherente con el resto de la serie. CÁMARA Y ESTILO: Imágenes de estudio de ultra alta calidad con apariencia de cámara real. Diferentes ángulos y encuadres en cada frame. Profundidad de campo controlada, iluminación precisa, materiales y reflejos realistas. La lógica de iluminación, la paleta de colores, el mood y el lenguaje visual deben mantenerse consistentes en los nueve paneles como una sola serie cohesionada. OUTPUT: Una cuadrícula limpia 3×3 sin bordes, sin texto, sin captions y sin marcas de agua."
}
JSON
Ultra-realistic luxury product photography of a black glass reed diffuser bottle labeled “BLACK OUDH – Private Collection – RITUALS” in elegant gold serif typography. The bottle has a curved rectangular shape with soft edges, a glossy reflective surface, and a gold wax-seal style emblem centered near the top. Thin black diffuser reeds extend upward from the bottle neck. The bottle is covered in realistic water droplets and condensation, as if freshly misted after rain. It is placed among deep black roses and dark burgundy petals with visible water droplets, surrounded by rich green leaves. The scene is moody and dramatic with a dark botanical background, softly blurred (shallow depth of field, bokeh effect). Lighting is cinematic and low-key, with soft diffused highlights reflecting off the wet glass surface. Cool-toned lighting (deep greens and midnight blues) enhances the dark, luxurious atmosphere. The gold emblem and lettering subtly catch the light, creating a premium, high-end aesthetic. Composition: vertical portrait orientation (4:5 ratio), centered product placement, slightly angled bottle resting naturally among roses. Foreground roses partially frame the bottom of the bottle. Background is dark foliage fading into shadow. Texture emphasis: hyper-detailed water droplets, glossy glass reflections, velvety rose petals, matte black reeds. Style: high-end commercial fragrance advertising, macro lens, 85mm, f/2.0, shallow depth of field, photorealistic, 8K resolution, sharp focus on bottle, dramatic contrast, rich blacks, luxury perfume campaign aesthetic.
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 luxury product photography of a black glass reed diffuser bottle labeled “BLACK OUDH – Private Collection – RITUALS” in elegant gold serif typography. The bottle has a curved rectangular shape with soft edges, a glossy reflective surface, and a gold wax-seal style emblem centered near the top. Thin black diffuser reeds extend upward from the bottle neck. The bottle is covered in realistic water droplets and condensation, as if freshly misted after rain. It is placed among deep black roses and dark burgundy petals with visible water droplets, surrounded by rich green leaves. The scene is moody and dramatic with a dark botanical background, softly blurred (shallow depth of field, bokeh effect). Lighting is cinematic and low-key, with soft diffused highlights reflecting off the wet glass surface. Cool-toned lighting (deep greens and midnight blues) enhances the dark, luxurious atmosphere. The gold emblem and lettering subtly catch the light, creating a premium, high-end aesthetic. Composition: vertical portrait orientation (4:5 ratio), centered product placement, slightly angled bottle resting naturally among roses. Foreground roses partially frame the bottom of the bottle. Background is dark foliage fading into shadow. Texture emphasis: hyper-detailed water droplets, glossy glass reflections, velvety rose petals, matte black reeds. Style: high-end commercial fragrance advertising, macro lens, 85mm, f/2.0, shallow depth of field, photorealistic, 8K resolution, sharp focus on bottle, dramatic contrast, rich blacks, luxury perfume campaign aesthetic."
}
JSON
[BRAND NAME]. Act as a Creative Director for a technical outerwear brand and a High-End Product Photographer. THE TASK: Autonomously conceptualize and render a "Technical Outerwear Campaign Image" featuring a collaboration between the input brand ([BRAND NAME]) and a relevant performance fashion label. PHASE 1: PARTNER SELECTION & GEAR DESIGN (THE STRATEGIST) Analyze [BRAND NAME]: Is it Luxury, Sport, Industrial, or Lifestyle? Select the Apparel Partner: Luxury/Lifestyle -> The North Face, Moncler. Tech/Industrial -> Arc'teryx, Stone Island Shadow Project. Sport/Speed -> Nike ACG, Salomon. The Gear: Design a Heavy Technical Outerwear Piece (Parka, Shell Jacket, or Anorak) with a structured HOOD or HIGH COLLAR. Color: The garment must be the Signature Color of [BRAND NAME]. Material: Stiff, high-performance fabrics (Gore-Tex 3L, Ripstop) with matte finish. PHYSICAL BRANDING INTEGRATION (CRITICAL): You must integrate the [BRAND NAME] logo physically onto the garment in a way that looks expensive and high-tech. PHASE 2: PHOTOGRAPHY & LIGHTING (THE PROFILE) Framing: A tight Head-and-Shoulders Side Profile Shot. Model faces Left. Pose: Chin up, looking forward. Hood frames the face. Lighting (Chiaroscuro Tech): Key Light: Hard light hitting the face profile and the [BRAND NAME] LOGO on the jacket, creating sharp contrast. The Void: Background is Pure Void Black (#000000). Texture Priority: Maximize detail of fabric weave and the physical logo material. PHASE 3: UI & SCHEMATIC OVERLAY (BLUEPRINT AESTHETIC) Overlay a "Technical Blueprint" Interface (thin white lines): The Grid: Vertical hairline white lines cutting through the image. Left Sidebar: Vertical tech specs (e.g., "75D 133g/m2", "GORE-TEX 3L"). Center: Title "[PARTNER] x [BRAND NAME]". Right Side: The Partner Logo (e.g., The North Face logo) in white. PHASE 4: TECH SPECS 100mm Macro Lens, f/8, High Contrast, Unreal Engine 5 render quality, Commercial Techwear Look.
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
--data-binary @- <<'JSON'
{
"model": "nano-banana-2",
"prompt": "[BRAND NAME]. Act as a Creative Director for a technical outerwear brand and a High-End Product Photographer. THE TASK: Autonomously conceptualize and render a \"Technical Outerwear Campaign Image\" featuring a collaboration between the input brand ([BRAND NAME]) and a relevant performance fashion label. PHASE 1: PARTNER SELECTION & GEAR DESIGN (THE STRATEGIST) Analyze [BRAND NAME]: Is it Luxury, Sport, Industrial, or Lifestyle? Select the Apparel Partner: Luxury/Lifestyle -> The North Face, Moncler. Tech/Industrial -> Arc'teryx, Stone Island Shadow Project. Sport/Speed -> Nike ACG, Salomon. The Gear: Design a Heavy Technical Outerwear Piece (Parka, Shell Jacket, or Anorak) with a structured HOOD or HIGH COLLAR. Color: The garment must be the Signature Color of [BRAND NAME]. Material: Stiff, high-performance fabrics (Gore-Tex 3L, Ripstop) with matte finish. PHYSICAL BRANDING INTEGRATION (CRITICAL): You must integrate the [BRAND NAME] logo physically onto the garment in a way that looks expensive and high-tech. PHASE 2: PHOTOGRAPHY & LIGHTING (THE PROFILE) Framing: A tight Head-and-Shoulders Side Profile Shot. Model faces Left. Pose: Chin up, looking forward. Hood frames the face. Lighting (Chiaroscuro Tech): Key Light: Hard light hitting the face profile and the [BRAND NAME] LOGO on the jacket, creating sharp contrast. The Void: Background is Pure Void Black (#000000). Texture Priority: Maximize detail of fabric weave and the physical logo material. PHASE 3: UI & SCHEMATIC OVERLAY (BLUEPRINT AESTHETIC) Overlay a \"Technical Blueprint\" Interface (thin white lines): The Grid: Vertical hairline white lines cutting through the image. Left Sidebar: Vertical tech specs (e.g., \"75D 133g/m2\", \"GORE-TEX 3L\"). Center: Title \"[PARTNER] x [BRAND NAME]\". Right Side: The Partner Logo (e.g., The North Face logo) in white. PHASE 4: TECH SPECS 100mm Macro Lens, f/8, High Contrast, Unreal Engine 5 render quality, Commercial Techwear Look."
}
JSON
[BRAND NAME]. Act as a Senior AI Visual Strategist & Creative Director. Goal: Analyze the provided [BRAND NAME] and generate a high-end, three-panel vertical manifesto stack. Every element (color, slogan, technical text) must be a logical derivative of the brand's identity. PHASE 1: AUTONOMOUS BRAND ANALYSIS (INTERNAL SIMULATION) - Identify the core industry of "[BRAND NAME]". - Select a high-contrast primary color for the background (e.g., Electric Blue, Racing Red, or Titanium White). - Generate a powerful 3-word slogan and a 2-line brand philosophy description. - Generate a block of 5 technical specifications/keywords relevant to the brand's premium products. PHASE 2: COMPOSITIONAL STRUCTURE (THE VERTICAL STACK) Layout consists of three wide horizontal panels stacked vertically: TOP PANEL (Action & Identity): A dynamic wide-angle shot of a professional model using the brand's product. - Typography (Mid-Left): Place [BRAND NAME] logo and the 3-word slogan in bold white uppercase sans-serif. - Micro-Typography (Top-Left corner): Place the 2-line brand philosophy in a tiny, minimalist font. MIDDLE PANEL (The Hero Product & Density): A macro close-up focus on the product's high-fidelity details. - Typography (Mid-Right): Place [BRAND NAME] logo and the slogan here to create a diagonal visual flow from the top panel. - Technical Density (Bottom-Left corner): Add the 5 technical specifications in sharp, microscopic uppercase font to create a "technical blueprint" aesthetic and fill the negative space. BOTTOM PANEL (The Power Pose): A low-angle "hero shot" of the model. - Mega-Typography: Two massive, high-contrast slogans in white bold sans-serif overlaid across the center of the frame. - Corner Accents: A small brand icon in the bottom-right; a secondary micro-text in the bottom-left corner. PHASE 3: LIGHTING & TEXTURE STANDARDS - Lighting: Hard, direct "High-Noon" sunlight creating crisp, sharp-edged shadows and brilliant highlights (Chiaroscuro). - Textures: Extreme fidelity in skin pores, fabric weaves (tech-mesh, leather, carbon fiber), and precision-engineered materials. Zero "AI-plastic" look. PHASE 4: TECH SPECS 8K Resolution. Render: Octane/Redshift. Global Illumination. Ray Traced reflections. Cinematic photo grain.
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: Analyze the provided [BRAND NAME] and generate a high-end, three-panel vertical manifesto stack. Every element (color, slogan, technical text) must be a logical derivative of the brand's identity. PHASE 1: AUTONOMOUS BRAND ANALYSIS (INTERNAL SIMULATION) - Identify the core industry of \"[BRAND NAME]\". - Select a high-contrast primary color for the background (e.g., Electric Blue, Racing Red, or Titanium White). - Generate a powerful 3-word slogan and a 2-line brand philosophy description. - Generate a block of 5 technical specifications/keywords relevant to the brand's premium products. PHASE 2: COMPOSITIONAL STRUCTURE (THE VERTICAL STACK) Layout consists of three wide horizontal panels stacked vertically: TOP PANEL (Action & Identity): A dynamic wide-angle shot of a professional model using the brand's product. - Typography (Mid-Left): Place [BRAND NAME] logo and the 3-word slogan in bold white uppercase sans-serif. - Micro-Typography (Top-Left corner): Place the 2-line brand philosophy in a tiny, minimalist font. MIDDLE PANEL (The Hero Product & Density): A macro close-up focus on the product's high-fidelity details. - Typography (Mid-Right): Place [BRAND NAME] logo and the slogan here to create a diagonal visual flow from the top panel. - Technical Density (Bottom-Left corner): Add the 5 technical specifications in sharp, microscopic uppercase font to create a \"technical blueprint\" aesthetic and fill the negative space. BOTTOM PANEL (The Power Pose): A low-angle \"hero shot\" of the model. - Mega-Typography: Two massive, high-contrast slogans in white bold sans-serif overlaid across the center of the frame. - Corner Accents: A small brand icon in the bottom-right; a secondary micro-text in the bottom-left corner. PHASE 3: LIGHTING & TEXTURE STANDARDS - Lighting: Hard, direct \"High-Noon\" sunlight creating crisp, sharp-edged shadows and brilliant highlights (Chiaroscuro). - Textures: Extreme fidelity in skin pores, fabric weaves (tech-mesh, leather, carbon fiber), and precision-engineered materials. Zero \"AI-plastic\" look. PHASE 4: TECH SPECS 8K Resolution. Render: Octane/Redshift. Global Illumination. Ray Traced reflections. Cinematic photo grain."
}
JSON
Use the uploaded image as the exact visual reference for product design, label, lavender placement, liquid color, milk puddle, and soft purple background .Camera Movement:Full 360° slow-motion orbit around the product.Smooth, steady circular motion.Constant speed .No shake .No sudden acceleration .No zoom in or out.Keep product centered at all times.Framing:Mid close-up product shot.Bottle remains perfectly upright and fixed in position.
Luxury fashion advertisement poster, deep green background with a soft circular gradient behind the model, two stylish female models standing full body. First model wearing a long elegant green dress with waist belt, white sneakers, sunglasses, holding a red handbag, confident pose with one hand on waist looking sideways. Second female model standing beside her in a different pose, slightly angled stance with relaxed arms, wearing a similar elegant fashion outfit matching the luxury theme. Studio lighting, minimal shadows, ultra-clean composition, premium fashion campaign style. At the top place large bold luxury serif text “BRAND NAME” (same placement and style as luxury fashion brands). At the bottom add text: “LUXURY THAT DEFINES YOU” Below it smaller text: Add a small side section titled “AVAILABLE COLORS” with three small circular color indicators: Green, Black, Red. Highly detailed, fashion catalog quality, DSLR photography style, 8k resolution, symmetrical layout, luxury branding aesthetic, professional advertising poster.
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
--data-binary @- <<'JSON'
{
"model": "nano-banana-2",
"prompt": "Luxury fashion advertisement poster, deep green background with a soft circular gradient behind the model, two stylish female models standing full body. First model wearing a long elegant green dress with waist belt, white sneakers, sunglasses, holding a red handbag, confident pose with one hand on waist looking sideways. Second female model standing beside her in a different pose, slightly angled stance with relaxed arms, wearing a similar elegant fashion outfit matching the luxury theme. Studio lighting, minimal shadows, ultra-clean composition, premium fashion campaign style. At the top place large bold luxury serif text “BRAND NAME” (same placement and style as luxury fashion brands). At the bottom add text: “LUXURY THAT DEFINES YOU” Below it smaller text: Add a small side section titled “AVAILABLE COLORS” with three small circular color indicators: Green, Black, Red. Highly detailed, fashion catalog quality, DSLR photography style, 8k resolution, symmetrical layout, luxury branding aesthetic, professional advertising poster."
}
JSON
{ "campaign_metadata": { "brand_identity": "Quantum Horizon Tech", "product_focus": "Titanium Luxury Smartwatch", "aspect_ratio": "3:4", "aesthetic": "Cyber-Luxury | Technical Minimalism" }, "visual_dna": { "materials": ["Brushed Aerospace Titanium", "Sapphire Crystal", "Fluorocarbon Strap"], "color_scheme": ["Space Grey", "Electric Cyan", "Matte Black"], "lighting": "Top-down Rim Lighting | Neon Accents | Cold Studio Tones" }, "grid_layout_execution": { "row_1_precision": { "cell_1_1": "Hero: Watch floating vertically, illuminated by a single beam of light.", "cell_1_2": "Macro: The digital crown's knurled texture and the red action button detail.", "cell_1_3": "Dynamic: Liquid metal ripples splashing against the titanium casing." }, "row_2_lifestyle": { "cell_2_1": "Minimal: Watch resting on a raw piece of jagged obsidian rock.", "cell_2_2": "Innovation: Holographic UI elements projecting from the watch face into the air.", "cell_2_3": "Sensory: Close-up of the strap clicking into the magnetic lug with precision." }, "row_3_surreal": { "cell_3_1": "Color: A gradient of deep blues and purples with light-trail long exposure.", "cell_3_2": "Abstraction: Deconstructed internal gears and chips floating like a nebula.", "cell_3_3": "Fusion: The watch submerged in a digital 'data' ocean with glowing currents." } } }
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": "{ \"campaign_metadata\": { \"brand_identity\": \"Quantum Horizon Tech\", \"product_focus\": \"Titanium Luxury Smartwatch\", \"aspect_ratio\": \"3:4\", \"aesthetic\": \"Cyber-Luxury | Technical Minimalism\" }, \"visual_dna\": { \"materials\": [\"Brushed Aerospace Titanium\", \"Sapphire Crystal\", \"Fluorocarbon Strap\"], \"color_scheme\": [\"Space Grey\", \"Electric Cyan\", \"Matte Black\"], \"lighting\": \"Top-down Rim Lighting | Neon Accents | Cold Studio Tones\" }, \"grid_layout_execution\": { \"row_1_precision\": { \"cell_1_1\": \"Hero: Watch floating vertically, illuminated by a single beam of light.\", \"cell_1_2\": \"Macro: The digital crown's knurled texture and the red action button detail.\", \"cell_1_3\": \"Dynamic: Liquid metal ripples splashing against the titanium casing.\" }, \"row_2_lifestyle\": { \"cell_2_1\": \"Minimal: Watch resting on a raw piece of jagged obsidian rock.\", \"cell_2_2\": \"Innovation: Holographic UI elements projecting from the watch face into the air.\", \"cell_2_3\": \"Sensory: Close-up of the strap clicking into the magnetic lug with precision.\" }, \"row_3_surreal\": { \"cell_3_1\": \"Color: A gradient of deep blues and purples with light-trail long exposure.\", \"cell_3_2\": \"Abstraction: Deconstructed internal gears and chips floating like a nebula.\", \"cell_3_3\": \"Fusion: The watch submerged in a digital 'data' ocean with glowing currents.\" } } }"
}
JSON
Playful designer packaging for [product name], creative box shaped like the product, integrated cartoon face on the front panel, oversized die-cut window revealing the real contents as part of the character’s expression, smooth matte cardboard material, bold flat graphic design, modern minimalist branding, limited pastel color palette, rounded friendly shapes, clean typography, high-end 3D packaging mockup render, soft studio lighting, pure white background, subtle realistic contact shadow beneath, ultra-detailed, retail-ready presentation, 1:1 aspect ratio.
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": "Playful designer packaging for [product name], creative box shaped like the product, integrated cartoon face on the front panel, oversized die-cut window revealing the real contents as part of the character’s expression, smooth matte cardboard material, bold flat graphic design, modern minimalist branding, limited pastel color palette, rounded friendly shapes, clean typography, high-end 3D packaging mockup render, soft studio lighting, pure white background, subtle realistic contact shadow beneath, ultra-detailed, retail-ready presentation, 1:1 aspect ratio."
}
JSON
CORE OBJECTIVE: Create a professional 8k studio editorial based on [ATTACHED_INPUT_IMAGE]. Analyze subject geometry, material, and branding to maintain logic across 7 seamless panels. STEP 1: DYNAMIC ANALYSIS Identify: Subject, logo (or name), and material. Material Logic: Tech (sharp rim lights), Glass (refraction/caustics), Organic (soft light), Fashion (matte/satin sheen). COMPOSITION & STRUCTURE Single seamless image. Top: 1 Hero Panel. Bottom: 2x3 Grid (6 panels). Total 7 views. No text or borders (except Frame 2). PANEL SPECIFICATIONS MAIN HERO: Centered master portrait on infinite-curve background. Lighting highlights primary material. F1 (Macro): Extreme close-up on material "DNA" (microscopic grain, textures, or circuitry). F2 (Logo): 3D premium brand emblem centered on a minimalist studio backdrop. F3 (Scale): Subject in size-appropriate context (gallery for large, pedestal for small). F4 (Rhythm): High-angle "knolling" or grid repetition of components. F5 (Motion): Weightless action-still with environmental cues (vapor, sparks, or splashes). F6 (Form): High-contrast rim-lit profile focusing purely on the iconic silhouette. VISUAL ENFORCEMENT Style: Ultra-high-end Studio Editorial. Consistency: 100% identical color and design details across all views. Technical: 8k, ray-traced reflections, professional grading, global illumination.
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": "CORE OBJECTIVE: Create a professional 8k studio editorial based on [ATTACHED_INPUT_IMAGE]. Analyze subject geometry, material, and branding to maintain logic across 7 seamless panels. STEP 1: DYNAMIC ANALYSIS Identify: Subject, logo (or name), and material. Material Logic: Tech (sharp rim lights), Glass (refraction/caustics), Organic (soft light), Fashion (matte/satin sheen). COMPOSITION & STRUCTURE Single seamless image. Top: 1 Hero Panel. Bottom: 2x3 Grid (6 panels). Total 7 views. No text or borders (except Frame 2). PANEL SPECIFICATIONS MAIN HERO: Centered master portrait on infinite-curve background. Lighting highlights primary material. F1 (Macro): Extreme close-up on material \"DNA\" (microscopic grain, textures, or circuitry). F2 (Logo): 3D premium brand emblem centered on a minimalist studio backdrop. F3 (Scale): Subject in size-appropriate context (gallery for large, pedestal for small). F4 (Rhythm): High-angle \"knolling\" or grid repetition of components. F5 (Motion): Weightless action-still with environmental cues (vapor, sparks, or splashes). F6 (Form): High-contrast rim-lit profile focusing purely on the iconic silhouette. VISUAL ENFORCEMENT Style: Ultra-high-end Studio Editorial. Consistency: 100% identical color and design details across all views. Technical: 8k, ray-traced reflections, professional grading, global illumination."
}
JSON
Minimalist studio product photography of an amber glass dropper serum bottle with white cap, labeled “ma:nyo Galac Whitening Vita Serum”, placed between large textured white stones, soft beige background, warm sunlight casting natural shadows, subtle golden glow reflecting through the glass, small delicate dried flowers beside the bottle, glossy reflective surface, high-end skincare advertisement, ultra-realistic, 85mm lens, shallow depth of field, soft diffused lighting, clean aesthetic, 8k resolution.
A high-fashion, cinematic brand concept poster for "The North Face." The scene features a woman in the uploaded image, standing in a stylized studio. They are dressed in edgy, oversized urban streetwear: a dark olive-green quilted puffer bomber jacket, layered black and tan distressed techwear shorts below knees, and black sneakers with white soles. The person holds a classic orange basketball at their hip. In the background, a massive, bold red "THE NORTH FACE" logo and its iconic half-dome symbol are stacked and centered, dominating the upper half of the frame. To the right of the subject, there's a small white stylized graffiti-style signature. The lighting is moody and dramatic, featuring a teal-tinted atmosphere with a warm rim light hitting the subject’s right side. The floor is a dark, smooth studio surface with a soft shadow cast forward. The overall aesthetic is gritty, futuristic, and high-contrast, with a heavy film grain texture.
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
--data-binary @- <<'JSON'
{
"model": "nano-banana-2",
"prompt": "A high-fashion, cinematic brand concept poster for \"The North Face.\" The scene features a woman in the uploaded image, standing in a stylized studio. They are dressed in edgy, oversized urban streetwear: a dark olive-green quilted puffer bomber jacket, layered black and tan distressed techwear shorts below knees, and black sneakers with white soles. The person holds a classic orange basketball at their hip. In the background, a massive, bold red \"THE NORTH FACE\" logo and its iconic half-dome symbol are stacked and centered, dominating the upper half of the frame. To the right of the subject, there's a small white stylized graffiti-style signature. The lighting is moody and dramatic, featuring a teal-tinted atmosphere with a warm rim light hitting the subject’s right side. The floor is a dark, smooth studio surface with a soft shadow cast forward. The overall aesthetic is gritty, futuristic, and high-contrast, with a heavy film grain texture."
}
JSON
Create an infographic image of Nike Air Jordan 1 High OG sneaker, combining a realistic photograph or photoreal render of the object with technical annotation overlays placed directly on top. Use black ink–style line drawings and text (technical pen / engineering diagram aesthetic) for all annotations. Include precise arrows pointing to specific parts, detailed labels naming each component (toe box, swoosh logo, wings logo, collar, tongue, lace holes, midsole, outsole, heel counter, perforations, stitching patterns), materials used (premium leather, rubber outsole, foam cushioning), and historical notes (designed by Peter Moore, 1985, banned by NBA). Show both side profile and slight 3/4 angle. Background should be clean white or very light neutral. Overall style: a hybrid of product photography and vintage technical manual illustration. High resolution, ultra-detailed, 4K quality.
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 an infographic image of Nike Air Jordan 1 High OG sneaker, combining a realistic photograph or photoreal render of the object with technical annotation overlays placed directly on top. Use black ink–style line drawings and text (technical pen / engineering diagram aesthetic) for all annotations. Include precise arrows pointing to specific parts, detailed labels naming each component (toe box, swoosh logo, wings logo, collar, tongue, lace holes, midsole, outsole, heel counter, perforations, stitching patterns), materials used (premium leather, rubber outsole, foam cushioning), and historical notes (designed by Peter Moore, 1985, banned by NBA). Show both side profile and slight 3/4 angle. Background should be clean white or very light neutral. Overall style: a hybrid of product photography and vintage technical manual illustration. High resolution, ultra-detailed, 4K quality."
}
JSON
macro photograph, minimalist advertising style, a hyper-realistic miniature [PRODUCT] crafted from [MATERIAL], delicately poised between a person's thumb and forefinger against a seamless, matte [BG_COLOR] cyclorama under professional Top-Down_Spotlight that casts subtle, soft shadows, with the impeccably groomed hand accentuating the object's intricate contours while the composition remains perfectly centered with a shallow depth of field to highlight its exquisite craftsmanship
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": "macro photograph, minimalist advertising style, a hyper-realistic miniature [PRODUCT] crafted from [MATERIAL], delicately poised between a person's thumb and forefinger against a seamless, matte [BG_COLOR] cyclorama under professional Top-Down_Spotlight that casts subtle, soft shadows, with the impeccably groomed hand accentuating the object's intricate contours while the composition remains perfectly centered with a shallow depth of field to highlight its exquisite craftsmanship"
}
JSON
Minimalist product photography of a matte red pump bottle labeled ‘ROAM lubricant’, held by multiple diverse hands with different skin tones, arranged elegantly around the bottle. Soft studio lighting, warm monochromatic terracotta background, smooth shadows, luxury skincare aesthetic, high-end commercial style, sharp focus, centered composition, clean and modern branding, glossy finish on bottle, subtle reflections, editorial beauty shot, 4k resolution.
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": "2×2 grid luxury perfume advertisement for Chanel perfume, four distinct yet cohesive high-end commercial images, elegant Parisian aesthetic, timeless fashion branding. Panel 1 – Hero Product Elegance Minimalist studio shot of a Chanel perfume bottle centered on a reflective surface. Soft, diffused lighting highlights the glass clarity, sharp edges, and iconic label. Neutral background in beige, ivory, or soft black. Luxurious, calm, iconic composition. Panel 2 – Parisian Lifestyle Mood Elegant adult woman in a classic Parisian interior vintage molding. She gently applies Chanel perfume to her neck or wrist. Natural light, effortless beauty, refined posture. Editorial fashion photography style, understated luxury. Panel 3 – Sensory Detail Close-Up Macro close-up of the Chanel perfume bottle with fine mist dispersing into the air. Light catches the spray particles. Soft shadows, shallow depth of field. Emphasis on texture, fragrance atmosphere, and sensory refinement. Panel 4 – Cinematic Night Glamour Moody, cinematic scene with the Chanel perfume bottle placed on a dark surface beside silk fabric or pearls. Low-key lighting, warm highlights, deep shadows. Evokes mystery, confidence, and timeless femininity. All four images are visually unified through refined color grading, restrained contrast, and classic Chanel luxury cues. Visual Style Luxury fashion advertising Editorial, timeless, refined Soft contrast Muted neutral palette High realism Clean composition Parisian elegance Camera & Lighting Professional studio and editorial photography 50–85mm lens look Shallow depth of field Soft diffused lighting Controlled highlights and shadows Perfect label clarity Mood Keywords Elegant Iconic Sophisticated Timeless Feminine Confident Luxury Negative Prompt Cheap packaging, distorted logo, misspelled branding, harsh lighting, oversaturation, cluttered background, CGI look, cartoon style, watermark, text overlays, knockoff perfume bottles Aspect Ratio Overall canvas: 1:1 Grid: 2×2 equal squares Optimized for luxury brand advertising and social campaigns"
}
JSON
FAQ
Using nano-banana-2 prompts
What is %{model}?
%{model} is available through RunAPI as part of the unified model catalog. These prompts show practical input patterns that agents and backend services can reuse.
How do I use these prompts?
Copy any prompt and paste it into Claude Code, Codex, Cursor, or Windsurf after installing the RunAPI MCP Server. Developers can also copy the API example and send the prompt directly.
Do these prompts cost money to browse?
Browsing and copying prompt examples is free. Generation requests only cost money when you call a RunAPI model with your API key.
Can I adapt the prompts for production?
Yes. Treat each prompt as a starting point, then add your brand rules, output dimensions, safety constraints, and application-specific context before using it in production.