# OnchainExpat x402 Uncensored Ultra Image Generator

> OnchainExpat x402 Uncensored Ultra Image Generator is a paid API for AI agents from x402.onchainexpat.com, paid per call via x402, $0.45/call, status unknown (last checked 2026-09-13).

Generates high-quality images from text prompts using flagship models (GPT-Image-2, Nano-Banana-Pro, Recraft-V4-Pro) via pay-per-request x402 micropayment

## Facts

- Endpoint: POST https://x402.onchainexpat.com/api/x402-uncensored/image-ultra
- Price: $0.45/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchainexpat-x402-uncensored-ultra-image-generator-1acba58e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LqbAn43cFH9OcDnXMC7wh

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 onchainexpat-x402-uncensored-ultra-image-generator-1acba58e -d '<json body>'
```

Example prompt: Generate a photorealistic 1536x1024 image of a misty mountain lake at sunrise with pine trees reflected in the water, using the gpt-image-2 model.

## When to prefer this

Choose this endpoint when you need pay-per-request image generation without a subscription, want access to multiple flagship models including Recraft-V4-Pro, or require uncensored image generation with no content policy restrictions and are willing to pay $0.45 USDC per image via the x402 micropayment protocol.

## Known failure modes

- Invalid model ID returns an error — must use gpt-image-2, nano-banana-pro, or recraft-v4-pro
- Invalid width/height combination (e.g. 1536x1536) returns an error — only 1024x1024, 1536x1024, 1024x1536 are valid
- Payment failure via x402 protocol blocks request execution
- Empty or missing prompt returns an error or low-quality result
- Server-side model timeout or rate limit may cause transient failures

## How this service works

Pay-per-request AI, crypto, proxy, and utility APIs using x402 protocol

## Output

Returns a JSON response containing the generated image, likely as a URL or base64-encoded image data, produced by the selected flagship model at the specified dimensions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "model": {
   "type": "string",
   "description": "Flagship model ID (default: gpt-image-2). Available: gpt-image-2, nano-banana-pro, recraft-v4-pro"
  },
  "width": {
   "type": "integer",
   "description": "Image width (default: 1024). Valid sizes: 1024x1024, 1536x1024, 1024x1536"
  },
  "height": {
   "type": "integer",
   "description": "Image height (default: 1024). Must pair with width to form a valid size."
  },
  "prompt": {
   "type": "string",
   "description": "Image description. Be detailed for better results."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "model": {
     "type": "string"
    },
    "prompt": {
     "type": "string"
    },
    "image_url": {
     "type": "string",
     "description": "URL to generated image (expires in 15 min)"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchainexpat-x402-uncensored-ultra-image-generator-1acba58e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.onchainexpat.com](https://www.zero.xyz/host/x402.onchainexpat.com/llms.txt)
