# Questflow Flux Image Generator

> Questflow Flux Image Generator is a paid API for AI agents from api.questflow.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Generates high-quality images from text prompts using Replicate's Flux model via Questflow's agent infrastructure

## Facts

- Endpoint: POST https://api.questflow.ai/x402/agent/qrn:agent:687df6a5b234010b7d33186d
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/questflow-1a14dc23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EURILBVg3N6acrJrxSc-r

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 questflow-1a14dc23 -d '<json body>'
```

Example prompt: Generate a high-quality image of a futuristic city skyline at sunset with neon lights reflecting on wet streets, cinematic style.

## When to prefer this

Choose this endpoint when you need high-quality AI image generation powered by Replicate's Flux model and are already operating within the Questflow/x402 payment ecosystem. Useful when you need programmatic image generation with per-call micropayment billing rather than a subscription model.

## Known failure modes

- Invalid or missing text prompt returns an error
- Payment of 0.1 USDC not received causes 402 Payment Required response
- Flux model unavailable or overloaded on Replicate side causes timeout or 503
- Overly long or policy-violating prompt may be rejected
- Network timeout if image generation takes too long

## How this service works

Generate high-quality images using Replicate Flux. | Powered by Questflow

## Output

Returns a generated image (likely as a URL or base64-encoded image data) produced by the Replicate Flux model based on the input text prompt

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Your message to the agent"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "response": {
  "type": "string",
  "required": true,
  "description": "Response from the agent"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/questflow-1a14dc23/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.questflow.ai](https://www.zero.xyz/host/api.questflow.ai/llms.txt)
