# WithZero GPT-5 Image Generation via ZeroClick

> WithZero GPT-5 Image Generation via ZeroClick is a paid API for AI agents from agents.withzero.xyz, paid per call via x402 or MPP, $0.21/call, status unknown (last checked 2026-09-15, last successful call 2026-07-22).

Generates 1–4 images from a text prompt using GPT-5-level image synthesis, billed per-call at $0.21 USDC with no vendor account required.

## Facts

- Endpoint: POST https://agents.withzero.xyz/api/v1/image/images/gpt-5-image
- Price: $0.21/call
- Payment: x402, MPP
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-22
- Success rate: 83% of calls made through Zero
- Rating: 3.9 / 5 from 6 reviews
- Activations on Zero: 33
- Tags: x402
- Canonical page: https://www.zero.xyz/c/withzero-gpt-5-image-generation-via-zeroclick-80212623
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1T3pHaPDo5-nS--EW3qwh

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 withzero-gpt-5-image-generation-via-zeroclick-80212623 -d '<json body>'
```

Example prompt: Generate 2 images of a futuristic cityscape at sunset with neon reflections on wet streets — I want a cyberpunk aesthetic.

## When to prefer this

Choose this endpoint when you need GPT-5-quality image generation without managing OpenAI API credentials, want pay-per-use billing via USDC with no subscription, need to generate up to 4 image variants in a single call, or are operating in an autonomous agent context where ZeroClick handles payment approval. Prefer this over self-managed OpenAI integrations when account setup is impractical.

## Known failure modes

- Prompt violates content policy — request rejected with an error
- Count parameter out of range (must be 1–4) — validation error returned
- Payment fails or insufficient balance — 402 Payment Required
- Prompt too long (exceeds 4000 characters) — schema validation error
- Model unavailable or upstream timeout — 5xx error from WithZero

## How this service works

Create media, research companies and people, publish to the web, remember context, deploy apps, and schedule work—on demand, without vendor accounts or API keys. This server is a pay-per-use, transparent proxy in front of WithZero's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge.

## Output

Returns one or more generated images (up to 4) matching the text prompt, produced by a GPT-5-class image model. Output is image data or URLs. Each call costs $0.21 USDC billed automatically via ZeroClick, no API key or account needed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer",
   "default": 1,
   "maximum": 4,
   "minimum": 1,
   "description": "How many images to generate (1–4)."
  },
  "prompt": {
   "type": "string",
   "maxLength": 4000,
   "minLength": 1,
   "description": "Text description of the image to generate."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/withzero-gpt-5-image-generation-via-zeroclick-80212623/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.withzero.xyz](https://www.zero.xyz/host/agents.withzero.xyz/llms.txt)
