# PayWeave Replicate – Recraft V3 Image Generation

> PayWeave Replicate – Recraft V3 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-15).

Generates high-quality images using the Recraft V3 open-source model via a pay-per-call API gateway

## Facts

- Endpoint: POST https://replicate.payweave.services/models/recraft-ai/recraft-v3/predictions
- 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-replicate-recraft-v3-image-generation-997efc00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cnAS4g-r7qIpYIOIfeCjh

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-recraft-v3-image-generation-997efc00 -d '<json body>'
```

Example prompt: Use Recraft V3 to generate a photorealistic image of a red fox sitting in a snowy pine forest at golden hour, cinematic lighting.

## When to prefer this

Choose this endpoint when you need to generate images specifically using the Recraft V3 model (known for high-quality vector-style and photorealistic outputs) and want to pay per call in USDC without a subscription. Prefer this over other image generation endpoints when the user explicitly wants Recraft V3 quality or style, or when cost-per-call billing via crypto is desired.

## Known failure modes

- Payment failure — insufficient USDC balance or x402 payment not accepted, returning a 402 error
- Model inference error — Recraft V3 returns a failed status with an error message in the error field
- Invalid input schema — missing or malformed input object causes a 4xx validation error
- CDN URL expiry — returned image URLs expire after ~24 hours and become inaccessible
- Timeout or cold start — model returns status 'starting' or 'processing' without completing in time
- Canceled prediction — prediction canceled before completion, status is 'canceled' with no output

## How this service works

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

## Output

Returns a Replicate prediction object including a prediction ID, model name, status (succeeded/failed/canceled/processing/starting), CDN-hosted image URL(s) with ~24-hour TTL, generation timing metrics (total_time and predict_time in seconds), timestamps for creation and completion, and the USD cost charged for the call.

## 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-recraft-v3-image-generation-997efc00/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)
