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

# List Source Connectors



## OpenAPI

````yaml GET /api/v1/sources/connectors/
openapi: 3.0.3
info:
  title: Nekt API
  version: v1
  description: Nekt API Documentation
  contact:
    email: support@nekt.ai
servers:
  - url: https://api.nekt.ai
security: []
paths:
  /api/v1/sources/connectors/:
    get:
      tags:
        - v1
      operationId: v1_sources_connectors_list
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Connector'
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Connector:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        type:
          allOf:
            - $ref: '#/components/schemas/ConnectorTypeEnum'
          title: Connector type
        name:
          type: string
          maxLength: 256
        slug:
          type: string
          maxLength: 256
          pattern: ^[-a-zA-Z0-9_]+$
        description:
          type: string
          nullable: true
        logo:
          type: string
          format: uri
          nullable: true
        docs_available:
          type: boolean
        external_docs_url:
          type: string
          format: uri
          nullable: true
          title: Url
          maxLength: 200
        current_version:
          type: string
          readOnly: true
          description: Current connector version for this connector (Expandable)
        oauth_type:
          type: string
          readOnly: true
          description: >-
            OAuth application to drive /oauth/initiate/ and /oauth/callback/
            with. Usually the tap-<slug> / target-<slug> convention, but a
            connector version may pin a different one — clients should send this
            value rather than deriving it from the slug.
      required:
        - created_at
        - current_version
        - id
        - name
        - oauth_type
        - slug
        - type
        - updated_at
    ConnectorTypeEnum:
      enum:
        - source
        - destination
      type: string
      description: |-
        * `source` - SOURCE
        * `destination` - DESTINATION
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````