# x402.dellbot.win Image Generation

> x402.dellbot.win Image Generation is a paid API for AI agents from x402.dellbot.win, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15, last successful call 2026-06-05).

Generates images from text prompts using multiple AI models (Stable Diffusion 3.5, Lustify SDXL, Qwen Image, Chroma, WAI Illustrious, Z-Image Turbo) and returns base64-encoded WebP images

## Facts

- Endpoint: POST https://x402.dellbot.win/image-nano
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-06-05
- Success rate: 16% of calls made through Zero
- Activations on Zero: 58
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-dellbot-win-099b9814
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g6_H8VP2-7se54TX40xCN

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-dellbot-win-099b9814 -d '<json body>'
```

Example prompt: Generate an image of a futuristic cyberpunk cityscape at night with neon lights reflecting off wet streets — use the Stable Diffusion 3.5 model and make it widescreen.

## When to prefer this

Choose this endpoint when you need the cheapest available image generation on the x402 Bazaar, especially when cost-per-image is a primary concern at $0.02 USDC. It offers multiple model options including Stable Diffusion 3.5 as default plus specialized models like Lustify SDXL for stylized/NSFW content, WAI Illustrious for anime illustration, and Chroma or Qwen Image for other styles — all in one endpoint. Prefer over alternatives when you want model flexibility without switching providers.

## Known failure modes

- Invalid or missing prompt returns 400 error
- Unsupported model name returns 400 or falls back to default
- Payment not included or insufficient USDC causes 402 Payment Required
- Overly long or complex prompt may be truncated or rejected
- Network timeout on slow model inference
- Base64 decoding issues if output is malformed

## How this service works

Cheapest image generation on x402 Bazaar. Stable Diffusion 3.5 (default), Lustify SDXL/v7/v8, Qwen Image, Chroma, WAI Illustrious, Z-Image Turbo. Returns JSON {images: [base64-webp]}.

## Output

A JSON object with an `images` array containing one or more base64-encoded WebP image strings that can be decoded and saved or displayed directly.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "seed": {
       "type": "integer"
      },
      "model": {
       "enum": [
        "chroma",
        "lustify-sdxl",
        "lustify-v7",
        "lustify-v8",
        "qwen-image",
        "venice-sd35",
        "wai-Illustrious",
        "z-image-turbo"
       ],
       "type": "string"
      },
      "steps": {
       "type": "integer",
       "description": "Sampler steps (model-dependent default)"
      },
      "width": {
       "type": "integer",
       "default": 1024
      },
      "height": {
       "type": "integer",
       "default": 1024
      },
      "prompt": {
       "type": "string",
       "maxLength": 1500,
       "description": "Text prompt for image generation"
      },
      "negative_prompt": {
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "images": {
       "type": "array",
       "items": {
        "type": "string",
        "description": "base64-encoded image bytes (WebP)"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-dellbot-win-099b9814/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.dellbot.win](https://www.zero.xyz/host/x402.dellbot.win/llms.txt)
