List workflows for the authenticated user with optional search and filtering.
Features:
Authentication: Required. Returns only workflows owned by the authenticated user.
Common Use Cases:
API key must be prefixed with "Key ", e.g. Authorization: Key YOUR_API_KEY
Maximum number of items to return. Actual maximum depends on query type and expansion parameters.
x >= 150
Pagination cursor from previous response. Encodes the page number.
"Mg=="
Search by workflow name or title
"image generation"
Filter by model endpoint IDs used in the workflow. Can be a single value or comma-separated values.
["fal-ai/flux/dev"]Successfully retrieved workflows
Response containing workflow data with pagination support
Array of workflow items
[
{
"name": "my-image-workflow",
"title": "My Image Generation Workflow",
"user_nickname": "johndoe",
"created_at": "2024-01-15T10:30:00Z",
"thumbnail_url": "https://fal.ai/workflows/thumb_abc123.png",
"description": "Generate high-quality images using FLUX model",
"tags": ["image-generation", "ai", "flux"],
"endpoint_ids": ["fal-ai/flux/dev", "fal-ai/face-swap"]
}
]Cursor for the next page of results, null if no more pages
"eyJvZmZzZXQiOjEwfQ=="
Whether more results are available
true
Total number of workflows matching the query
42