Nano Banana Edit API
Google Nano Banana image editing. Multi-image fusion + edit instruction with Standard/Pro/Pro-fal tiers and 1K/2K/4K resolution. Integrate this model via REST with endpoint docs, parameters, and code examples.
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
API Endpoint
/api/v1/models/google-nano-banana/runLLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/google-nano-banana.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
promptrequired | string | - |
image_input | array | - |
modelTier | enum | pro |
resolution | enum | 2K |
aspect_ratio | enum | 1:1 |
output_format | enum | png |
See also
Related endpoints on this model — you may need a different apiId for a different operation (e.g. image edit vs generation).
Example Outputs
Real outputs generated by this model
studio portrait of a golden retriever, soft beauty dish lighting, sharp focused eyes, neutral grey backdrop, professional pet photography, magazine cover quality
top-down flatlay of premium skincare bottles and wellness supplements on natural linen, soft daylight, editorial wellness aesthetic, clean negative space
aerial photograph of a mediterranean coastal village, whitewashed buildings cascading down to a turquoise sea, fishing boats in the harbor, golden afternoon light, travel magazine cover
corporate portrait, three diverse co-founders in casual smart attire, modern startup office with exposed brick and warm wood, candid laughter, natural light through large windows
wide-angle real estate interior photograph, mid-century modern living room with floor-to-ceiling windows, warm natural light flooding in, listing-grade composition
athlete mid-rep in a sun-streaked industrial gym, slight motion blur on movement, sweat detail on skin, dramatic backlight from window, fitness brand photography
glossy magazine cover composition, bold typography placeholder, premium fashion editorial styling, color grade by Steven Meisel
lifestyle brand photography, person enjoying their morning routine in a sunlit cafe, candid composition, photorealistic skin and texture
character reference sheet, same person across three poses: front view, profile, three-quarter, neutral grey background, consistent lighting, no text
top-down flat lay photography, curated objects on a linen textured surface, soft daylight, editorial composition
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
Code Examples
Copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/google-nano-banana/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A beautiful mountain landscape at golden hour",
"aspect_ratio": "1:1"
}'Response Format
Submit Response (202 Accepted)
{
"jobId": "job_abc123...",
"status": "pending",
"statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
"creditCost": 3,
"creditsRemaining": 95,
"expiresAt": "2025-01-23T12:00:00Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"images": [
"https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
]
},
"creditCost": 3,
"expiresAt": "2025-01-23T12:00:00Z"
}