# Image via ZeroClick – Nano Banana Pro

> Image via ZeroClick – Nano Banana Pro is a paid API for AI agents from image.pay.zeroclick.io, paid per call via x402, $0.14/call, status unknown (last checked 2026-09-14).

Generates 1–4 images from a text prompt using the nano-banana-pro model, billed per call via ZeroClick's x402 payment proxy.

## Facts

- Endpoint: POST https://image.pay.zeroclick.io/api/v1/images/nano-banana-pro
- Price: $0.14/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/image-via-zeroclick-nano-banana-pro-88f9d691
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5ZCC5KnLY35wXcCcQ3fEc

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability image-via-zeroclick-nano-banana-pro-88f9d691 -d '<json body>'
```

Example prompt: Generate 3 images of a glowing neon cyberpunk city at night with rain-soaked streets using nano-banana-pro and give me the hosted URLs.

## When to prefer this

Choose this endpoint when you need to generate a small batch (1–4) of images from a text prompt on a pay-per-call basis with no subscription required, using the nano-banana-pro model specifically. Prefer it over subscription-based image APIs when usage is sporadic or cost-per-call billing fits your workflow, and when hosted image URLs (rather than base64 blobs) are the desired output format.

## Known failure modes

- Invalid count value (outside 1–4 range) returns a validation error
- Empty or missing prompt returns a 400 bad request
- Payment failure via x402 prevents generation from starting
- Model overload or upstream API downtime returns a 503 or timeout
- Generated image hosting failure may return a URL that becomes unavailable

## How this service works

This server is a paid, transparent proxy in front of Image's own API: ZeroClick handles identity, payment, and proxying. This document is the source of truth for agents: it lists the complete verified paid surface, and every listed operation is billable through ZeroClick (see its x-payment-info). Endpoints not listed here are not part of the supported paid catalog.

## Output

Returns an array of 1–4 generated images, each with a hosted URL, MIME type, and size in bytes. Also returns the model name (nano-banana-pro) and the exact USDC amount charged for the request.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "count",
  "prompt"
 ],
 "properties": {
  "count": {
   "type": "integer",
   "description": "How many images to generate (1–4)."
  },
  "prompt": {
   "type": "string",
   "description": "Text description of the image to generate."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "images",
  "model",
  "price_usdc"
 ],
 "properties": {
  "model": {
   "type": "string",
   "description": "The model that produced the images."
  },
  "images": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "mimeType",
     "sizeBytes"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "mimeType": {
      "type": "string"
     },
     "sizeBytes": {
      "type": "number"
     }
    },
    "additionalProperties": false
   },
   "description": "The generated images, as hosted URLs."
  },
  "price_usdc": {
   "type": "string",
   "description": "The amount charged for this request, in USDC."
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/image-via-zeroclick-nano-banana-pro-88f9d691/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from image.pay.zeroclick.io](https://www.zero.xyz/host/image.pay.zeroclick.io/llms.txt)
