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

# List Available Connectors

> Public — list every connector type currently registered.



## OpenAPI

````yaml get /api/v1/connectors
openapi: 3.1.0
info:
  title: EDN Memory Engine
  version: 0.1.0
servers:
  - description: EDN evaluation endpoint
    url: https://api.tensorpro.ai
security:
  - EDNApiKey: []
paths:
  /api/v1/connectors:
    get:
      summary: List Available Connectors
      description: Public — list every connector type currently registered.
      operationId: list_available_connectors_api_v1_connectors_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorsResponse'
          description: Successful Response
      security: []
components:
  schemas:
    ConnectorsResponse:
      properties:
        connectors:
          items:
            type: string
          title: Connectors
          type: array
      required:
        - connectors
      title: ConnectorsResponse
      type: object
  securitySchemes:
    EDNApiKey:
      description: >-
        EDN API key presented as 'Bearer <key>' in the Authorization header.
        Create and manage keys from the Console.
      in: header
      name: Authorization
      type: apiKey

````