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

# List Connectors

> List available connectors and their connection status. Returns all supported third-party integrations (e.g., Google Sheets, TikTok, YouTube, X (Twitter), LinkedIn) along with whether they are currently connected.



## OpenAPI

````yaml api-reference/openapi/social.json GET /api/connectors
openapi: 3.1.0
info:
  title: Recoup API - Social
  description: >-
    API documentation for the Recoup platform - an AI agent platform for the
    music industry
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.recoupable.dev
security: []
paths:
  /api/connectors:
    get:
      description: >-
        List available connectors and their connection status. Returns all
        supported third-party integrations (e.g., Google Sheets, TikTok,
        YouTube, X (Twitter), LinkedIn) along with whether they are currently
        connected.
      parameters:
        - name: account_id
          in: query
          description: >-
            Optional account ID to get connectors for a different account (e.g.,
            an artist, workspace, or organization). The authenticated account
            must have access to the specified account. Omit to get your own
            account's connectors.
          required: false
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Connectors retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorsResponse'
        '400':
          description: Bad request - invalid account_id format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - no access to the specified account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  schemas:
    ConnectorsResponse:
      type: object
      required:
        - success
        - connectors
      properties:
        success:
          type: boolean
        connectors:
          type: array
          items:
            $ref: '#/components/schemas/ConnectorInfo'
          description: List of available connectors with connection status
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
    ConnectorInfo:
      type: object
      required:
        - slug
        - name
        - isConnected
      properties:
        slug:
          type: string
          description: >-
            Unique identifier for the connector (e.g., 'googlesheets', 'tiktok',
            'youtube', 'twitter', 'linkedin')
        name:
          type: string
          description: Human-readable name of the connector
        isConnected:
          type: boolean
          description: Whether the connector is currently connected
        connectedAccountId:
          type: string
          description: The connected account ID (only present when isConnected is true)
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Recoup API key. [Learn more](/quickstart#api-keys).
    bearerAuth:
      type: http
      scheme: bearer

````