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

# List Workflows



## OpenAPI

````yaml openapi.json get /api/workflows
openapi: 3.1.0
info:
  title: Kinetic API
  version: 0.1.0
servers: []
security: []
paths:
  /api/workflows:
    get:
      tags:
        - workflows
      summary: List Workflows
      operationId: list_workflows_api_workflows_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowListResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    WorkflowListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/WorkflowResponse'
          type: array
          title: Items
        total:
          type: integer
          title: Total
      type: object
      required:
        - items
        - total
      title: WorkflowListResponse
    WorkflowResponse:
      properties:
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
        workflow_uuid:
          type: string
          title: Workflow Uuid
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        workflow_version_uuid:
          anyOf:
            - type: string
            - type: 'null'
          title: Workflow Version Uuid
        specification:
          anyOf:
            - {}
            - type: 'null'
          title: Specification
        versions:
          anyOf:
            - items:
                $ref: '#/components/schemas/WorkflowVersionResponse'
              type: array
            - type: 'null'
          title: Versions
        current_version:
          anyOf:
            - type: integer
            - type: 'null'
          title: Current Version
        executions:
          type: integer
          title: Executions
          default: 0
        success_rate:
          anyOf:
            - type: number
            - type: 'null'
          title: Success Rate
        last_run:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Run
      type: object
      required:
        - workflow_uuid
        - name
      title: WorkflowResponse
      description: >-
        Backed by `workflows` table (see `kinetic/db/schema.sql`).


        `workflow_version_uuid`/`specification` are derived from the latest
        version

        and may be included by some endpoints.
    WorkflowVersionResponse:
      properties:
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
        workflow_version_uuid:
          type: string
          title: Workflow Version Uuid
        workflow_uuid:
          type: string
          title: Workflow Uuid
        version:
          anyOf:
            - type: integer
            - type: 'null'
          title: Version
        is_current:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Current
        specification:
          title: Specification
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
      type: object
      required:
        - workflow_version_uuid
        - workflow_uuid
        - specification
      title: WorkflowVersionResponse
      description: >-
        Backed by `workflow_versions` table (see `kinetic/db/schema.sql`).


        Note: `name`/`description` are workflow-identity fields (from
        `workflows`) and

        may be included by some endpoints (e.g. create), but are not stored on
        the

        version row itself, so they must be optional.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Kinetic-Key
      description: Your Kinetic API key

````