> ## 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.

# Get workflow

> Retrieve a single workflow and its details



## OpenAPI

````yaml /openapi.yaml get /workflows/{workflowId}
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/{workflowId}:
    get:
      tags:
        - Workflows
      summary: Get workflow
      description: Retrieve a single workflow and its details
      operationId: getWorkflow
      parameters:
        - name: workflowId
          in: path
          required: true
          description: Workflow ID
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Workflow details
          content:
            application/json:
              schema:
                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
                  input_schema:
                    nullable: true
                    description: >-
                      JSON Schema defining the expected input format for
                      workflow execution. Null if no input required.
                required:
                  - id
                  - name
                  - description
                  - created_at
                  - updated_at
                additionalProperties: false
                description: Detailed workflow information
        '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
        '404':
          description: Not found - resource doesn't exist
          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.

````