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

# List Connectors

> List all connectors for the authenticated organization.

Returns all connectors belonging to the organization associated with the API key.

<RequestExample>
  ```bash cURL theme={"dark"}
  curl 'https://api.hydradb.com/connectors' \
    -H "Authorization: Bearer $HYDRA_DB_API_KEY" \
    -H "API-Version: 2"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={"dark"}
  {
    "connectors": [
      {
        "connector_id": "{connector_id}",
        "provider": "slack",
        "tenant_id": "acme_corp",
        "sub_tenant_id": "engineering",
        "provider_account_scope": "T12345ACME",
        "status": "active",
        "next_sync_at": "2026-06-01T13:00:00Z",
        "last_successful_sync_at": "2026-06-01T12:05:00Z",
        "last_attempted_sync_at": "2026-06-01T12:05:00Z"
      }
    ]
  }
  ```
</ResponseExample>

<div className="api-before-related-resources" />

## Related Resources

* [Get Connector](/api-reference/v2/endpoint/get-connector)  -  fetch a single connector by ID
* [Create Connector](/api-reference/v2/endpoint/create-connector)
* [Delete Connector](/api-reference/v2/endpoint/delete-connector)


## OpenAPI

````yaml api-reference/v2/openapi.json GET /connectors
openapi: 3.1.0
info:
  contact:
    email: support@hydradb.com
    name: HydraDB Support
  description: >-
    HydraDB Application API — knowledge ingestion, search, and memory
    management.
  license:
    name: Proprietary
  title: HydraDB Application API
  version: 0.1.0
servers:
  - description: Production server
    url: https://api.hydradb.com
security: []
externalDocs:
  description: ''
  url: ''
paths:
  /connectors:
    get:
      tags:
        - connectors
      summary: List connectors
      description: >-
        List all connectors for the authenticated org, optionally filtered by
        provider.
      parameters:
        - description: Filter by provider
          in: query
          name: provider
          schema:
            example: slack
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: {}
                type: object
          description: OK
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    handler.ErrorResponse:
      properties:
        detail:
          $ref: '#/components/schemas/handler.ErrorDetail'
          description: Structured error detail with code, message, and deprecation hints.
          example:
            deprecated: true
            deprecated_field: tenant_id
            error_code: VALIDATION_ERROR
            message: Request validation failed
            preferred_field: database
            success: true
      type: object
    handler.ErrorDetail:
      properties:
        deprecated:
          description: Whether this response concerns a deprecated field or route.
          example: true
          type: boolean
        deprecated_field:
          description: The deprecated field name.
          example: tenant_id
          type: string
        error_code:
          description: Machine-readable error classification code.
          example: VALIDATION_ERROR
          type: string
        message:
          description: Human-readable description of the error.
          example: Request validation failed
          type: string
        preferred_field:
          description: The canonical replacement for the deprecated field.
          example: database
          type: string
        success:
          description: Always false for error responses.
          example: true
          type: boolean
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: API key
      description: 'API key sent as a Bearer token: "Bearer prefix.secret"'
      scheme: bearer
      type: http

````