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

# List connectors



## OpenAPI

````yaml /openapi.json get /v1/connectors
openapi: 3.1.0
info:
  title: Erna API
  version: 1.0.0
  description: >-
    AI business operations platform API.


    Erna uses a reusable pipeline lifecycle: Playbook -> Pipeline -> Revision ->
    Run.


    - A playbook defines the repeatable task type, generation behavior, and run
    input/output contract.

    - A pipeline stores reusable instructions and configuration for one
    playbook. Do not create a new pipeline for every execution.

    - A revision is the built executable version of a pipeline definition.

    - A run executes the latest ready revision with playbook-specific input.


    For scheduling, create one pipeline with the reusable business rules, staff
    context, and constraints. Then run that pipeline repeatedly with
    date-specific input such as { "input": { "dateRange": { "start":
    "2026-05-11", "end": "2026-05-17" } } }.
servers:
  - url: https://api.erna.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/connectors:
    get:
      tags:
        - Connectors
      summary: List connectors
      operationId: listConnectors
      responses:
        '200':
          description: Connector catalog
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorListResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ConnectorListResponse:
      type: object
      properties:
        connectors:
          type: array
          items:
            type: object
            properties:
              connector:
                type: string
              name:
                type: string
              description:
                type: string
              status:
                type: string
                enum:
                  - available
                  - planned
              requiresConnection:
                type: boolean
                enum:
                  - true
              auth:
                type: object
                properties:
                  kind:
                    type: string
                    enum:
                      - oauth2
                      - manual
                      - none
                required:
                  - kind
                additionalProperties: false
            required:
              - connector
              - name
              - description
              - status
              - requiresConnection
            additionalProperties: false
      required:
        - connectors
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth2 access token or API key

````