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

# List Connections

> Returns a list of active connections.

<Snippet file="api/connectors/list-connections.mdx" />


## OpenAPI

````yaml GET /v1/connections
openapi: 3.1.0
info:
  title: Adapter API
  description: Connect and sync data from any SaaS tool.
  version: 0.1.0
servers:
  - url: https://api.adapter.com
security:
  - ApiKeyAuth: []
tags:
  - name: connections
    description: Manage OAuth connections to data sources.
paths:
  /v1/connections:
    get:
      tags:
        - connectors
      summary: List Connections
      description: Returns a list of active connections.
      operationId: list_connections
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ConnectionOut'
                type: array
                title: Response List Connections
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationErrorModel'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PermissionDeniedErrorModel'
          description: Forbidden
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorModel'
          description: Internal Server Error
components:
  schemas:
    ConnectionOut:
      properties:
        connection_id:
          type: string
          title: Connection Id
          description: Unique identifier for the connection.
          examples:
            - conn_01abc123
        provider:
          type: string
          title: Provider
          description: Provider slug.
          examples:
            - slack
        connected_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Connected At
          description: ISO 8601 timestamp of when the connection was created.
          examples:
            - '2026-01-15T10:30:00Z'
        team_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Team Name
          description: Workspace or team display name from the provider.
          examples:
            - Acme Corp
        external_account_id:
          anyOf:
            - type: string
            - type: 'null'
          title: External Account Id
          description: Account ID assigned by the provider.
          examples:
            - T01ABC123
        resources:
          items:
            type: string
          type: array
          title: Resources
          description: Resource slugs enabled for this connection.
          examples:
            - - messages
              - files
        disabled_resources:
          items:
            type: string
          type: array
          title: Disabled Resources
          description: >-
            Resource slugs turned off for this connection — by the setup wizard,
            the filters dialog, or connect-time credential verification.
            Excluded from status displays but still configurable
            (re-enableable).
          examples:
            - - email
      type: object
      required:
        - connection_id
        - provider
        - resources
      title: ConnectionOut
    AuthenticationErrorModel:
      properties:
        error_code:
          type: string
          const: authentication_error
          title: Error Code
          default: authentication_error
        message:
          type: string
          title: Message
          default: Invalid or missing credentials.
        details:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Details
      type: object
      title: AuthenticationErrorModel
    PermissionDeniedErrorModel:
      properties:
        error_code:
          type: string
          const: permission_denied
          title: Error Code
          default: permission_denied
        message:
          type: string
          title: Message
          default: You do not have permission to perform this action.
        details:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Details
      type: object
      title: PermissionDeniedErrorModel
    InternalServerErrorModel:
      properties:
        error_code:
          type: string
          const: internal_server_error
          title: Error Code
          default: internal_server_error
        message:
          type: string
          title: Message
          default: An unexpected error occurred.
        details:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Details
      type: object
      title: InternalServerErrorModel
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: Pass your `pk_live_...` API key as a Bearer token.

````