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

# List all integrations

> List all integrations for the user.



## OpenAPI

````yaml https://app.stainlessapi.com/api/spec/documented/hyperspell.yaml get /integrations/list
openapi: 3.1.0
info:
  title: Hyperspell API
  summary: >-
    Hyperspell is the memory layer for AI apps and agents. Through the API, you
    can add memories, connect data sources to index them in real-time, and
    search memories with our natural language query engine.
  termsOfService: https://hyperspell.com/blog/tos
  contact:
    name: Hyperspell
    url: https://hyperspell.com/
    email: hello@hyperspell.com
  version: 0.32.1
servers:
  - url: https://api.hyperspell.com
    description: Production
security:
  - APIKey: []
    AsUser: []
paths:
  /integrations/list:
    get:
      tags:
        - Integrations
        - Integrations
      summary: List all integrations
      description: List all integrations for the user.
      operationId: list_integrations_integrations_list_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntegrationListResponse'
      security:
        - APIKey: []
        - AsUser: []
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Hyperspell from '@hyperspell/hyperspell';

            const client = new Hyperspell({
              apiKey: process.env['HYPERSPELL_API_KEY'], // This is the default and can be omitted
            });

            const integrations = await client.integrations.list();

            console.log(integrations.integrations);
        - lang: Python
          source: |-
            import os
            from hyperspell import Hyperspell

            client = Hyperspell(
                api_key=os.environ.get("HYPERSPELL_API_KEY"),  # This is the default and can be omitted
            )
            integrations = client.integrations.list()
            print(integrations.integrations)
        - lang: Go
          source: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/hyperspell/hyperspell-go\"\n\t\"github.com/hyperspell/hyperspell-go/option\"\n)\n\nfunc main() {\n\tclient := hyperspell.NewClient(\n\t\toption.WithAPIKey(\"My API Key\"),\n\t)\n\tintegrations, err := client.Integrations.List(context.TODO())\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", integrations.Integrations)\n}\n"
        - lang: CLI
          source: |-
            hyperspell integrations list \
              --api-key 'My API Key'
components:
  schemas:
    IntegrationListResponse:
      properties:
        integrations:
          items:
            $ref: '#/components/schemas/IntegrationInfo'
          type: array
          title: Integrations
      type: object
      required:
        - integrations
      title: IntegrationListResponse
    IntegrationInfo:
      properties:
        id:
          type: string
          title: Id
          description: The integration's id
        provider:
          $ref: '#/components/schemas/DocumentProviders'
          description: The integration's provider
        name:
          type: string
          title: Name
          description: The integration's display name
        icon:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon
          description: URL to the integration's icon
        allow_multiple_connections:
          type: boolean
          title: Allow Multiple Connections
          description: Whether the integration allows multiple connections
        auth_provider:
          $ref: '#/components/schemas/AuthProvider'
          description: The integration's auth provider
        actions_only:
          type: boolean
          title: Actions Only
          description: Whether this integration only supports write actions (no sync)
          default: false
        requires_channel_selection:
          type: boolean
          title: Requires Channel Selection
          description: Whether the user must select channels before indexing starts
          default: false
        supports_channel_selection:
          type: boolean
          title: Supports Channel Selection
          description: >-
            Whether the integration offers an optional channel picker to narrow
            indexing. Empty selection indexes everything (opt-in narrowing).
          default: false
        channel_selection_required:
          type: boolean
          title: Channel Selection Required
          description: >-
            Effective per-app requirement: True when an empty selection indexes
            NOTHING (the user must pick channels). Combines the integration's
            requires_channel_selection with the app's index_all_by_default
            config.
          default: false
        supports_folder_selection:
          type: boolean
          title: Supports Folder Selection
          description: >-
            Whether the integration supports listing folders and per-folder sync
            policies (GET /connections/{id}/folders + folder-policies). Drives
            the folder picker in the connect flow.
          default: false
        folder_selection_required:
          type: boolean
          title: Folder Selection Required
          description: >-
            Effective per-app requirement: True when the integration's
            require_folder_selection index option is on, i.e. new connections
            sync NOTHING until the user picks folders.
          default: false
      type: object
      required:
        - id
        - provider
        - name
        - icon
        - allow_multiple_connections
        - auth_provider
      title: IntegrationInfo
    DocumentProviders:
      type: string
      enum:
        - reddit
        - notion
        - slack
        - google_calendar
        - google_mail
        - box
        - dropbox
        - github
        - google_drive
        - vault
        - web_crawler
        - trace
        - microsoft_teams
        - gmail_actions
        - granola
        - fathom
        - fireflies
        - linear
        - hubspot
        - salesforce
        - coda
        - lightfield
        - gong
        - pylon
        - clickup
      title: DocumentProviders
    AuthProvider:
      type: string
      enum:
        - nango
        - unified
        - whitelabel
      title: AuthProvider
  securitySchemes:
    APIKey:
      type: http
      description: >-
        API Key or JWT User Token. If using an API Key, set the X-As-User header
        to act as a specific user. A JWT User Token is always scoped to a
        specific user.
      scheme: bearer
      bearerFormat: Bearer <token>
    AsUser:
      type: apiKey
      description: >-
        Optionally set this header to act as a specific user when using an API
        Key, equivalent to first exchanging the API Key for a User Token
      in: header
      name: X-As-User

````