# PayWeave Fal · Flux Pro v1.1 Image Generation

> PayWeave Fal · Flux Pro v1.1 Image Generation is a paid API for AI agents from fal.payweave.services, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Generates high-quality images from a text prompt using FLUX Pro v1.1 via a pay-per-call x402 API gateway

## Facts

- Endpoint: POST https://fal.payweave.services/models/fal-ai/flux-pro/v1.1/run
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-fal-flux-pro-v1-1-image-generation-59a0d683
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8IKh0Mv1B4HOlDbpbHjEp

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 payweave-fal-flux-pro-v1-1-image-generation-59a0d683 -d '<json body>'
```

Example prompt: Generate an image of a misty Japanese forest at dawn with golden light filtering through tall cedar trees — use FLUX Pro v1.1 for the highest quality result.

## When to prefer this

Choose this endpoint when you need high-quality FLUX Pro v1.1 image generation with no subscription required, paying only per call in USDC via x402. Ideal for agents that need occasional image synthesis without committing to a monthly plan, or that operate in crypto-native payment environments. Prefer over direct fal.ai when you need x402/micropayment compatibility.

## Known failure modes

- Payment failure: x402 payment not accepted or insufficient USDC balance
- Input validation error: missing or malformed 'input' object in request body
- Model error: fal.ai inference failure, error field populated with details
- Rate limiting: too many concurrent requests to the fal.ai backend
- CDN URL expiry: returned image URLs expire after ~24 hours and cannot be retrieved again
- Timeout: sub-second inference not guaranteed under heavy load

## How this service works

Sub-second generative AI inference — image, video, audio.

## Output

Returns a JSON object with a fal request ID, the model used, status ('succeeded'), a model-specific output field containing one or more CDN-hosted image URLs (valid for ~24 hours), inference time in seconds, and the USD amount charged for the call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "prompt"
   ],
   "properties": {
    "seed": {
     "type": "integer",
     "minimum": 0,
     "description": "Random seed; omit for non-deterministic outputs."
    },
    "prompt": {
     "type": "string",
     "maxLength": 5000,
     "minLength": 1,
     "description": "Text prompt describing the desired image."
    },
    "aspect_ratio": {
     "enum": [
      "1:1",
      "16:9",
      "9:16",
      "4:3",
      "3:4",
      "21:9",
      "9:21",
      "3:2",
      "2:3",
      "4:5",
      "5:4",
      "16:10",
      "10:16"
     ],
     "type": "string"
    },
    "output_format": {
     "enum": [
      "jpeg",
      "png"
     ],
     "type": "string"
    },
    "safety_tolerance": {
     "enum": [
      "1",
      "2",
      "3",
      "4",
      "5",
      "6"
     ],
     "type": "string",
     "description": "Content safety strictness; 1=strictest, 6=most permissive. Default 2."
    },
    "enable_safety_checker": {
     "type": "boolean"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-fal-flux-pro-v1-1-image-generation-59a0d683/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fal.payweave.services](https://www.zero.xyz/host/fal.payweave.services/llms.txt)
