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

# Get Workflows



## OpenAPI

````yaml /api-reference/openapi.json get /v1/ask-feather/workflows
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/ask-feather/workflows:
    get:
      tags:
        - ask-feather
      summary: Get Workflows
      operationId: get_workflows_v1_ask_feather_workflows_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/src__ask_feather__schemas__WorkflowListResponse
      security:
        - APIKeyHeader: []
components:
  schemas:
    src__ask_feather__schemas__WorkflowListResponse:
      properties:
        workflows:
          items:
            $ref: '#/components/schemas/WorkflowInfo'
          type: array
          title: Workflows
      type: object
      required:
        - workflows
      title: WorkflowListResponse
    WorkflowInfo:
      properties:
        name:
          type: string
          title: Name
        title:
          type: string
          title: Title
        description:
          type: string
          title: Description
      type: object
      required:
        - name
        - title
        - description
      title: WorkflowInfo
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````