---
title: "List user workflows"
method: GET
path: "/workflows"
tags: ["Workflows"]
---

# List user workflows

`GET /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

- `limit` integer — Maximum number of items to return. Actual maximum depends on query type and expansion parameters.
- `cursor` string — Pagination cursor from previous response. Encodes the page number.
- `search` string — Search by workflow name or title
- `used_endpoint_ids` union — Filter by model endpoint IDs used in the workflow. Can be a single value or comma-separated values.
  - string
  - string[]

## Response `200`

Successfully retrieved workflows

- object — Response containing workflow data with pagination support
  - `workflows` object[], required — Array of workflow items
    - `name` string, required — Unique workflow name/slug within the user's namespace
    - `title` string, required — Human-readable workflow title
    - `user_nickname` string, required — Display name/username of the owner
    - `created_at` string, required — ISO8601 timestamp of workflow creation
    - `thumbnail_url` string — URL to the workflow thumbnail image
    - `description` string — Brief description of what the workflow does
    - `tags` string[], required — Tags associated with the workflow
    - `endpoint_ids` string[], required — List of model endpoint IDs used in this workflow
  - `next_cursor` string, nullable, 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

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication required
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.dev/fal/apis/platform-apis.md) · [All operations](https://skmtc.dev/fal/apis/platform-apis/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fal/platform-apis/revisions/0c7dabf80b00/schema)
