> ## 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 integrations this platform supports



## OpenAPI

````yaml /api-reference/openapi.json get /v1/integrations
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:
    get:
      tags:
        - integrations
      summary: List the integrations this platform supports
      operationId: listIntegrations
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/IntegrationSummary'
                type: array
                title: Response Listintegrations
        '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:
    IntegrationSummary:
      properties:
        key:
          $ref: '#/components/schemas/IntegrationKey'
        display_name:
          type: string
          title: Display Name
        description:
          type: string
          title: Description
        category:
          type: string
          title: Category
        logo_url:
          type: string
          title: Logo Url
      type: object
      required:
        - key
        - display_name
        - description
        - category
        - logo_url
      title: IntegrationSummary
      description: Platform catalog row — one per ``IntegrationSpec``.
    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).
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````