Skip to main content
GET
/
workflows
List user workflows
curl --request GET \
  --url https://api.fal.ai/v1/workflows \
  --header 'Authorization: <api-key>'
{
  "workflows": [
    {
      "name": "my-image-workflow",
      "title": "My Image Generation Workflow",
      "user_nickname": "johndoe",
      "created_at": "2024-01-15T10:30:00Z",
      "tags": [
        "<string>"
      ],
      "endpoint_ids": [
        "<string>"
      ],
      "thumbnail_url": "<string>",
      "description": "<string>"
    }
  ],
  "next_cursor": "<string>",
  "has_more": true,
  "total": 123
}

Authorizations

Authorization
string
header
required

API key must be prefixed with "Key ", e.g. Authorization: Key YOUR_API_KEY

Query Parameters

limit
integer

Maximum number of items to return.

Required range: x >= 1
Example:

50

cursor
string

Pagination cursor from previous response.

Example:

"Mg=="

Search by workflow name or title

Example:

"image generation"

used_endpoint_ids

Filter by model endpoint IDs used in the workflow.

Example:
["fal-ai/flux/dev"]

Response

Successfully retrieved workflows

workflows
object[]
required
next_cursor
string | null
required

Cursor for the next page of results, null if no more pages

has_more
boolean
required

Whether more results are available

total
integer

Total number of workflows matching the query