List user workflows
List workflows for the authenticated user with optional search and filtering.
Features:
- Paginated results with cursor-based pagination
- Search by workflow name or title
- Filter by model endpoints used in the workflow
Authentication: Required. Returns only workflows owned by the authenticated user.
Common Use Cases:
- Display user's workflow library
- Search for specific workflows
- Find workflows using particular models
Query parameters
Maximum number of items to return. Actual maximum depends on query type and expansion parameters.
Maximum number of items to return. Actual maximum depends on query type and expansion parameters.
Pagination cursor from previous response. Encodes the page number.
Pagination cursor from previous response. Encodes the page number.
Search by workflow name or title
Search by workflow name or title
Filter by model endpoint IDs used in the workflow. Can be a single value or comma-separated values.
Response
Successfully retrieved workflows
Example response
{
"workflows": [
{
"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"
]
}
],
"next_cursor": "eyJvZmZzZXQiOjEwfQ==",
"has_more": true,
"total": 42
}Changes
No recorded changes to this endpoint across all 2 revisions of this API.