# PayWeave Replicate – FLUX 1.1 Pro Image Generation

> PayWeave Replicate – FLUX 1.1 Pro Image Generation is a paid API for AI agents from replicate.payweave.services, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Generates high-quality images from text prompts using Black Forest Labs' FLUX 1.1 Pro model via a pay-per-call API gateway

## Facts

- Endpoint: POST https://replicate.payweave.services/models/black-forest-labs/flux-1.1-pro/predictions
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-replicate-flux-1-1-pro-image-generation-1123820a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iRcs03AZC4v_iwq7u4jJR

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-replicate-flux-1-1-pro-image-generation-1123820a -d '<json body>'
```

Example prompt: Generate an image of a misty mountain valley at sunrise with golden light filtering through pine trees, photorealistic style — use FLUX 1.1 Pro and return the image URL when it's done.

## When to prefer this

Choose this endpoint when you need to generate images specifically with Black Forest Labs' FLUX 1.1 Pro model via Replicate, want pay-per-call pricing with no subscription commitment, and are operating in an x402/USDC payment environment. Prefer this over general Replicate API access when you want a pre-wired payment gateway. Use when FLUX 1.1 Pro quality is specifically required over other image generators.

## Known failure modes

- Payment failure or insufficient USDC balance returns HTTP 402
- Invalid or missing 'input' object causes validation error
- Model returns status 'failed' with error string if inference fails
- Generated CDN image URLs expire after approximately 24 hours
- Model may return status 'processing' or 'starting' if not yet complete, requiring polling
- Network timeout on long-running predictions
- Malformed input parameters specific to FLUX 1.1 Pro may cause silent failures

## How this service works

Run open-source AI models — image, video, audio.

## Output

Returns a prediction object including a Replicate prediction ID, the model name, status (succeeded/failed/canceled/processing/starting), CDN-hosted image URL(s) with ~24h TTL, timing metrics (total_time and predict_time in seconds), timestamps for creation and completion, and the USD amount charged for the call. On failure, an error string is populated instead of output.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id",
  "model",
  "status",
  "error",
  "predicted_price_usd"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Replicate prediction ID."
  },
  "error": {
   "type": [
    "string",
    "null"
   ]
  },
  "model": {
   "type": "string"
  },
  "output": {
   "description": "Model-specific output. Image/audio models return CDN URLs (Replicate-hosted, ~24h TTL); vision-LLM models return a string; music models return a single audio URL or array."
  },
  "status": {
   "enum": [
    "succeeded",
    "failed",
    "canceled",
    "processing",
    "starting"
   ],
   "type": "string"
  },
  "metrics": {
   "type": "object",
   "properties": {
    "total_time": {
     "type": "number"
    },
    "predict_time": {
     "type": "number"
    }
   },
   "additionalProperties": false
  },
  "created_at": {
   "type": "string"
  },
  "completed_at": {
   "type": "string"
  },
  "predicted_price_usd": {
   "type": "string",
   "description": "USD charged for this call."
  }
 },
 "description": "Replicate prediction result with metadata.",
 "additionalProperties": false
}
```

## More

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