# FLUX.1 Schnell Fast Image Generation via ZeroReader

> FLUX.1 Schnell Fast Image Generation via ZeroReader is a paid API for AI agents from api.zeroreader.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Generates images from text prompts in approximately 2 seconds using the FLUX.1 Schnell model, returning a PNG image.

## Facts

- Endpoint: POST https://api.zeroreader.com/v1/ai/flux-schnell
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/flux-1-schnell-fast-image-generation-via-zeroreader-20c950d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7msob24vwfDmqnEEvtOIJ

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 flux-1-schnell-fast-image-generation-via-zeroreader-20c950d9 -d '<json body>'
```

Example prompt: Generate an image of a futuristic Tokyo skyline at night with neon lights reflecting on rain-soaked streets — use 4 inference steps and give me the PNG.

## When to prefer this

Choose this endpoint when you need fast (~2s) text-to-image generation for prototyping, quick visual drafts, or any scenario where speed is prioritized over maximum quality. It is ideal when you want a PNG output and can accept slightly lower fidelity than slower diffusion models. Prefer over heavier models when cost ($0.01/call) and latency are key constraints.

## Known failure modes

- Prompt missing — returns 400 bad request
- Steps value exceeds maximum of 8 — returns validation error
- Payment not provided or insufficient — returns 402 Payment Required
- Model overloaded or unavailable — returns 503 Service Unavailable
- Prompt triggers content policy — returns 400 or 403 with policy violation message

## How this service works

FLUX.1 Schnell — Fast image generation (~2s). Good for prototyping.

## Output

A PNG image file (binary) generated from the provided text prompt, produced by the FLUX.1 Schnell model in roughly 2 seconds. The response content type is image/png.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "steps": {
   "type": "integer",
   "default": 4,
   "maximum": 8
  },
  "prompt": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "content_type": "image/png"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/flux-1-schnell-fast-image-generation-via-zeroreader-20c950d9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.zeroreader.com](https://www.zero.xyz/host/api.zeroreader.com/llms.txt)
