# Send Fal.ai API to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fal-ai",
    "name": "Fal.ai API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/agmmnn/fal-ai",
    "canonicalUrl": "https://clawhub.ai/agmmnn/fal-ai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/fal-ai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fal-ai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "_meta.json",
      "fal_api.py",
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "fal-ai",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T04:22:30.474Z",
      "expiresAt": "2026-05-10T04:22:30.474Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fal-ai",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fal-ai",
        "contentDisposition": "attachment; filename=\"fal-ai-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "fal-ai"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fal-ai"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fal-ai",
    "downloadUrl": "https://openagent3.xyz/downloads/fal-ai",
    "agentUrl": "https://openagent3.xyz/skills/fal-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fal-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fal-ai/agent.md"
  }
}
```
## Documentation

### fal.ai API Skill

Generate images, videos, and transcripts using fal.ai's API with support for FLUX, Stable Diffusion, Whisper, and more.

### Features

Queue-based async generation (submit → poll → result)
Support for 600+ AI models
Image generation (FLUX, SDXL, Recraft)
Video generation (MiniMax, WAN)
Speech-to-text (Whisper)
Stdlib-only dependencies (no fal_client required)

### Setup

Get your API key from https://fal.ai/dashboard/keys
Configure with:

export FAL_KEY="your-api-key"

Or via clawdbot config:

clawdbot config set skill.fal_api.key YOUR_API_KEY

### Interactive Mode

You: Generate a cyberpunk cityscape with FLUX
Klawf: Creates the image and returns the URL

### Python Script

from fal_api import FalAPI

api = FalAPI()

# Generate and wait
urls = api.generate_and_wait(
    prompt="A serene Japanese garden",
    model="flux-dev"
)
print(urls)

### Available Models

ModelEndpointTypeflux-schnellfal-ai/flux/schnellImage (fast)flux-devfal-ai/flux/devImageflux-profal-ai/flux-pro/v1.1-ultraImage (2K)fast-sdxlfal-ai/fast-sdxlImagerecraft-v3fal-ai/recraft-v3Imagesd35-largefal-ai/stable-diffusion-v35-largeImageminimax-videofal-ai/minimax-video/image-to-videoVideowan-videofal-ai/wan/v2.1/1.3b/text-to-videoVideowhisperfal-ai/whisperAudio

For the full list, run:

python3 fal_api.py --list-models

### Parameters

ParameterTypeDefaultDescriptionpromptstrrequiredImage/video descriptionmodelstr"flux-dev"Model name from table aboveimage_sizestr"landscape_16_9"Preset: square, portrait_4_3, landscape_16_9, etc.num_imagesint1Number of images to generateseedintNoneRandom seed for reproducibility

### Credits

Built following the krea-api skill pattern. Uses fal.ai's queue-based API for reliable async generation.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: agmmnn
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T04:22:30.474Z
- Expires at: 2026-05-10T04:22:30.474Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fal-ai)
- [Send to Agent page](https://openagent3.xyz/skills/fal-ai/agent)
- [JSON manifest](https://openagent3.xyz/skills/fal-ai/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fal-ai/agent.md)
- [Download page](https://openagent3.xyz/downloads/fal-ai)