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

# List Workflows

> Returns all non-deleted workflows for the authenticated organization.



## OpenAPI

````yaml GET /workflows
openapi: 3.1.0
info:
  title: CallCow Workflow API
  description: API to trigger AI phone call workflows
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://www.callcow.ai/api
security:
  - bearerAuth: []
paths:
  /workflows:
    get:
      summary: List Workflows
      description: Returns all non-deleted workflows for the authenticated organization.
      operationId: listWorkflows
      responses:
        '200':
          description: List of workflows
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListWorkflowsResponse'
        '401':
          description: Unauthorized — missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit exceeded
          headers:
            Retry-After:
              description: Seconds until rate limit resets
              schema:
                type: integer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    ListWorkflowsResponse:
      type: object
      properties:
        workflows:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                description: Workflow ID
                example: b8f40b44-3b7a-425b-a2ae-1327471b0410
              name:
                type: string
                description: Workflow name
                example: Customer Support Workflow
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key generated from Settings → API Keys. Format: `ck_live_...`'

````