> ## Documentation Index
> Fetch the complete documentation index at: https://felix.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List workflows

> Retrieve all workflows for your account



## OpenAPI

````yaml /openapi.yaml get /workflows
openapi: 3.0.3
info:
  title: Felix API
  description: >
    Programmatic access to Felix workflows.


    Felix lets you describe workflows in natural language and get automation
    that works.

    Use this API to create, manage, and execute workflows programmatically.


    ## Limitations


    - **Request body size**: Maximum 4MB per request

    - **Rate limiting**: 100 requests per minute per API key

    - **Pagination**: List endpoints return up to 100 items per request

    - **Execution timeout**: Workflows have a maximum execution time of 15
    minutes

    - **Concurrent executions**: Maximum 10 concurrent executions per workflow
  version: 1.0.0
servers:
  - url: https://felix.so/api/v1
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Workflows
    description: Manage workflows
  - name: Executions
    description: Run workflows and retrieve results
paths:
  /workflows:
    get:
      tags:
        - Workflows
      summary: List workflows
      description: Retrieve all workflows for your account
      operationId: listWorkflows
      parameters:
        - name: limit
          in: query
          required: false
          description: Maximum number of items to return (1-100)
          schema:
            type: number
            minimum: 1
            maximum: 100
            default: 100
            description: Maximum number of workflows to return (1-100)
        - name: cursor
          in: query
          required: false
          description: >-
            Pagination cursor (created_at timestamp from previous response).
            Must be URL-encoded.
          schema:
            type: string
            format: date-time
            description: >-
              Pagination cursor (created_at timestamp from previous response).
              Must be URL-encoded.
      responses:
        '200':
          description: List of workflows
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Unique workflow identifier
                        name:
                          type: string
                          description: Workflow name
                        description:
                          type: string
                          description: Workflow description
                        created_at:
                          type: string
                          format: date-time
                          description: Timestamp when the workflow was created
                        updated_at:
                          type: string
                          format: date-time
                          description: Timestamp when the workflow was last updated
                      required:
                        - id
                        - name
                        - description
                        - created_at
                        - updated_at
                      additionalProperties: false
                      description: Workflow summary
                    description: List of workflows
                  cursor:
                    type: string
                    format: date-time
                    nullable: true
                    description: Cursor for the next page. Null if no more results.
                required:
                  - data
                  - cursor
                additionalProperties: false
                description: Paginated list of workflows
        '401':
          description: Unauthorized - invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Human-readable error message describing what went wrong
                required:
                  - error
                additionalProperties: false
                description: Standard error response returned when an API request fails
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key authentication. Get your key from Settings → API Keys.

````