# PayWeave Fal · Recraft V3 Image Generation

> PayWeave Fal · Recraft V3 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-14).

Generates high-quality images from text prompts using the Recraft V3 model via PayWeave's pay-per-call API gateway.

## Facts

- Endpoint: POST https://fal.payweave.services/models/fal-ai/recraft-v3/run
- 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-fal-recraft-v3-image-generation-26016e06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wBD3sZ2DjQyyjAXHi3sxO

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

Example prompt: Generate an image of a serene Japanese garden at sunset with cherry blossom trees and a wooden bridge over a koi pond — I want something painterly and detailed.

## When to prefer this

Choose this endpoint when you need Recraft V3 specifically — known for high-quality vector-style and design-oriented image outputs — and want pay-per-call USDC micropayment billing with no subscription required. Prefer this over other fal-hosted models when the use case involves branding, illustration, or design assets rather than photorealistic scenes.

## Known failure modes

- Payment failure: insufficient USDC balance results in 402 response before inference begins
- Model error: malformed or unsupported input parameters return a non-null error field in the response
- Timeout: complex prompts may occasionally exceed sub-second SLA, causing gateway timeout
- CDN expiry: returned image URLs expire after ~24 hours and cannot be re-fetched
- Rate limiting: high-frequency callers may be throttled by the PayWeave gateway

## How this service works

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

## Output

Returns a JSON object containing a fal request ID, the model name, a status of 'succeeded', one or more CDN-hosted image URLs (valid for ~24 hours), inference time in seconds, and the actual USD charge for the call. The image URLs point to fal-hosted storage and can be downloaded or displayed immediately.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "prompt"
   ],
   "properties": {
    "style": {
     "type": "string",
     "description": "Recraft style id, e.g. 'realistic_image', 'digital_illustration', 'vector_illustration'."
    },
    "colors": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "r",
       "g",
       "b"
      ],
      "properties": {
       "b": {
        "type": "integer",
        "maximum": 255,
        "minimum": 0
       },
       "g": {
        "type": "integer",
        "maximum": 255,
        "minimum": 0
       },
       "r": {
        "type": "integer",
        "maximum": 255,
        "minimum": 0
       }
      },
      "additionalProperties": false
     }
    },
    "prompt": {
     "type": "string",
     "maxLength": 5000,
     "minLength": 1,
     "description": "Text prompt describing the desired image."
    },
    "style_id": {
     "type": "string"
    },
    "image_size": {
     "enum": [
      "square_hd",
      "square",
      "portrait_4_3",
      "portrait_16_9",
      "landscape_4_3",
      "landscape_16_9"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-fal-recraft-v3-image-generation-26016e06/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)
