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

# List the calling org's connections



## OpenAPI

````yaml /api-reference/openapi.json get /v1/integrations/connections
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/integrations/connections:
    get:
      tags:
        - integrations
      summary: List the calling org's connections
      operationId: listConnections
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ConnectionResponse'
                type: array
                title: Response Listconnections
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ConnectionResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        organization_id:
          type: string
          format: uuid
          title: Organization Id
        integration_key:
          $ref: '#/components/schemas/IntegrationKey'
        nickname_slug:
          type: string
          title: Nickname Slug
        nickname:
          type: string
          title: Nickname
        vendor:
          type: string
          title: Vendor
        vendor_connection_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Vendor Connection Id
        status:
          type: string
          title: Status
        tools_status:
          type: string
          title: Tools Status
        tools_synced_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Tools Synced At
        status_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Status Reason
        connected_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Connected At
        last_refreshed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Refreshed At
        last_used_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Used At
        metadata:
          additionalProperties: true
          type: object
          title: Metadata
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        tools:
          items:
            $ref: '#/components/schemas/ConnectionToolResponse'
          type: array
          title: Tools
      type: object
      required:
        - id
        - organization_id
        - integration_key
        - nickname_slug
        - nickname
        - vendor
        - vendor_connection_id
        - status
        - tools_status
        - tools_synced_at
        - status_reason
        - connected_at
        - last_refreshed_at
        - last_used_at
        - metadata
        - created_at
        - updated_at
      title: ConnectionResponse
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    IntegrationKey:
      type: string
      enum:
        - slack
        - custom_mcp
        - notion
        - google_drive
        - calcom
        - twilio
        - email
      title: IntegrationKey
      description: |-
        Stable identifier for each supported integration.

        The string value must match the vendor's per-provider identifier
        (for Nango: ``provider_config_key``). Persisted on
        ``integration_connections.integration_key`` and
        ``integration_connection_tools.integration_key``.

        Adding a new integration: append a member here, add an
        ``IntegrationSpec`` to ``INTEGRATIONS``, register the provider in the
        vendor cloud via ``src/integrations/bootstrap.py`` (Step 3).
    ConnectionToolResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        connection_id:
          type: string
          format: uuid
          title: Connection Id
        organization_id:
          type: string
          format: uuid
          title: Organization Id
        integration_key:
          $ref: '#/components/schemas/IntegrationKey'
        nickname_slug:
          type: string
          title: Nickname Slug
        tool_path:
          type: string
          title: Tool Path
        slug:
          type: string
          title: Slug
        display_name:
          type: string
          title: Display Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        input_schema:
          additionalProperties: true
          type: object
          title: Input Schema
        response_schema:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Response Schema
        response_field_map:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Response Field Map
        input_defaults:
          anyOf:
            - additionalProperties:
                $ref: '#/components/schemas/InputArgConfig'
              type: object
            - type: 'null'
          title: Input Defaults
        is_enabled:
          type: boolean
          title: Is Enabled
        last_seen_at:
          type: string
          format: date-time
          title: Last Seen At
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        stale_field_paths:
          items:
            type: string
          type: array
          title: Stale Field Paths
          description: Saved field-map paths no longer present in the shape (ENG-631 D4).
          readOnly: true
        default_count:
          type: integer
          title: Default Count
          description: >-
            How many input fields carry an operator *default* (ENG-590 / PRD
            7.7).
          readOnly: true
        pinned_count:
          type: integer
          title: Pinned Count
          description: How many input fields are operator-*pinned* (ENG-590).
          readOnly: true
        stale_input_fields:
          items:
            type: string
          type: array
          title: Stale Input Fields
          description: >-
            Configured input fields removed/renamed/retyped by a re-sync (PRD
            7.6).
          readOnly: true
        merged_input_preview:
          additionalProperties: true
          type: object
          title: Merged Input Preview
          description: '``input_schema`` with each operator value injected (PRD 7.8).'
          readOnly: true
      type: object
      required:
        - id
        - connection_id
        - organization_id
        - integration_key
        - nickname_slug
        - tool_path
        - slug
        - display_name
        - description
        - input_schema
        - is_enabled
        - last_seen_at
        - created_at
        - updated_at
        - stale_field_paths
        - default_count
        - pinned_count
        - stale_input_fields
        - merged_input_preview
      title: ConnectionToolResponse
    InputArgConfig:
      properties:
        value:
          title: Value
        type:
          $ref: '#/components/schemas/InputArgType'
          default: default
      additionalProperties: false
      type: object
      required:
        - value
      title: InputArgConfig
      description: >-
        One operator-configured input field: a ``value`` plus its enforcement
        ``type``.


        The wire/stored shape of each entry in the ``input_defaults`` map.
        ``type``

        defaults to ``default`` so a caller can omit it for the common case.
    InputArgType:
      type: string
      enum:
        - default
        - pinned
      title: InputArgType
      description: |-
        How an operator-configured input value is enforced.

        * ``DEFAULT`` — a suggestion the agent may overwrite.
        * ``PINNED`` — a forced value the caller must use and cannot overwrite.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````