> ## Documentation Index
> Fetch the complete documentation index at: https://growthx-chore-remove-output-wrapper.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get the default workflow catalog



## OpenAPI

````yaml /openapi.json get /workflow/catalog
openapi: 3.0.0
info:
  title: Output.ai API
  version: 1.0.0
  description: API for managing and executing Output.ai workflows
servers:
  - url: http://localhost:3001
    description: Development server
security: []
tags: []
paths:
  /workflow/catalog:
    get:
      summary: Get the default workflow catalog
      responses:
        '200':
          description: The catalog
          content:
            application/json:
              schema:
                type: object
                properties:
                  workflows:
                    type: array
                    description: Each workflow available in this catalog
                    items:
                      $ref: '#/components/schemas/Workflow'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    Workflow:
      type: object
      required:
        - name
      properties:
        name:
          type: string
          description: The name of the workflow
        description:
          type: string
          description: The description of the workflow
        path:
          type: string
          description: Absolute path to the workflow file
        inputSchema:
          $ref: '#/components/schemas/JSONSchema'
        outputSchema:
          $ref: '#/components/schemas/JSONSchema'
        aliases:
          type: array
          description: Alternative names that resolve to this workflow
          items:
            type: string
    JSONSchema:
      type: object
      additionalProperties: true
      properties:
        $schema:
          type: string
        type:
          type: string
        properties:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/JSONSchema'
        items:
          $ref: '#/components/schemas/JSONSchema'
        required:
          type: array
          items:
            type: string
        description:
          type: string
        additionalProperties:
          type: boolean
        propertyNames:
          type: object
          properties:
            type:
              type: string
        anyOf:
          type: array
          items:
            $ref: '#/components/schemas/JSONSchema'
    ErrorResponse:
      type: object
      description: >-
        API error body (WorkflowNotFoundError, WorkflowExecutionTimedOutError,
        WorkflowNotCompletedError, CatalogNotAvailableError, or server error)
      properties:
        error:
          type: string
          description: >-
            Error type name (e.g. WorkflowNotFoundError,
            CatalogNotAvailableError)
        message:
          type: string
          description: Human-readable error message
        workflowId:
          type: string
          description: >-
            Workflow ID when the error is tied to a specific execution (e.g.
            timeout)
          nullable: true
  responses:
    NotFound:
      description: Workflow execution, workflow type, or catalog not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalServerError:
      description: Internal server error (e.g. Temporal connection failure)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'

````