# x402 Uncensored Image Generator

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

Generates uncensored AI images via a paid API using x402 v2 micropayments in USDC or Solana tokens

## Facts

- Endpoint: POST https://x402.onchainexpat.com/api/x402-uncensored/image
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-onchainexpat-com-b4adff18
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NeXbkB8fLDYRpoycNvOmZ

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 x402-onchainexpat-com-b4adff18 -d '<json body>'
```

Example prompt: Generate an uncensored image of a fantasy warrior woman in battle armor — no content restrictions — and pay the 0.03 USDC fee with my USDC on Base.

## When to prefer this

Choose this endpoint when you need to generate images without content moderation or safety filters, and you are comfortable using x402 v2 micropayment protocol with USDC on Base (EIP-8453) or Solana. Prefer this over standard image generation APIs when the content would be blocked by typical safety classifiers.

## Known failure modes

- Payment failure: insufficient USDC balance or wrong chain results in 402 Payment Required
- Invalid or missing prompt causes 400 Bad Request
- Content generation timeout returns 504 or partial response
- Unsupported payment token returns payment rejection error
- Network congestion on Base/Solana delays payment confirmation

## How this service works

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

## Output

Returns a generated image (URL or binary) produced without content filtering, after a successful x402 v2 micropayment of $0.03 USDC on EIP-8453 (Base) or Solana.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "model": {
   "type": "string",
   "description": "Model ID (default: chroma). Available: chroma, lustify-v8, lustify-v7, lustify-sdxl, venice-sd35, z-image-turbo, wai-Illustrious. Premium tiers: /image-pro ($0.20), /image-ultra ($0.45)"
  },
  "width": {
   "type": "integer",
   "description": "Image width (default: 1024). Valid sizes: 256x256, 512x512, 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/x402-onchainexpat-com-b4adff18/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)
