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

> List all workflows in your organization (latest version of each). Use when managing deterministic workflow definitions and triggering or inspecting their runs.

# [Beta] List workflows



## OpenAPI

````yaml get /workflows
openapi: 3.1.0
info:
  title: OpenCX API
  description: >

    OpenCX is an AI-powered, all-in-one platform for customer support and
    outbound communications.


    Use this API to manage your OpenCX organization's AI agents, actions,
    conversations, contacts, and more.


    To get started, generate a new API key from the dashboard.


    ## Authentication

    All API endpoints require authentication using a Bearer token. You can
    generate an API key from your OpenCX dashboard.


    ## Rate Limiting

    API requests are rate limited to ensure fair usage. The current limits are:

    - 100 requests per minute for standard endpoints

    - 1000 requests per minute for streaming endpoints


    ## Error Handling

    The API uses standard HTTP status codes and returns detailed error messages
    in the response body.
  version: 1.0-beta
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
  - url: https://api.open.cx
    description: Production
security:
  - bearerAuth: []
paths:
  /workflows:
    get:
      tags:
        - Workflows (Beta)
      summary: '[Beta] List workflows'
      description: >-
        List all workflows in your organization (latest version of each).
        Workflows automate multi-step processes triggered by events, schedules,
        webhooks, or manual action.
      operationId: listWorkflows
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListWorkflowsOutput'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDto'
components:
  schemas:
    ListWorkflowsOutput:
      $schema: https://json-schema.org/draft/2020-12/schema
      $id: '#/components/schemas/ListWorkflowsOutput'
      type: array
      items:
        $ref: '#/components/schemas/WorkflowPublicResponseDto'
    ErrorDto:
      type: object
      properties:
        statusCode:
          type: integer
        message:
          type: string
        error:
          type: string
    WorkflowPublicResponseDto:
      $schema: https://json-schema.org/draft/2020-12/schema
      $id: '#/components/schemas/WorkflowPublicResponseDto'
      type: object
      properties:
        id:
          type: number
          description: Version serial ID
        workflow_id:
          type: string
          description: Workflow UUID (groups all versions of the same workflow)
        name:
          type: string
          description: Workflow name
        description:
          anyOf:
            - type: string
            - type: 'null'
          description: Workflow description
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
          description: Whether this version is currently active
        trigger_type:
          type: string
          description: >-
            Trigger type: "manual-trigger", "ai-trigger", "cron-trigger",
            "webhook", "form-trigger", or event-based triggers
        version_number:
          type: number
          description: Version number (increments with each edit)
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - id
        - workflow_id
        - name
        - description
        - is_active
        - trigger_type
        - version_number
        - created_at
        - updated_at
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````