Skip to main content
GET
/
integrations
/
list
JavaScript
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);
{
  "integrations": [
    {
      "id": "<string>",
      "provider": "reddit",
      "name": "<string>",
      "icon": "<string>",
      "allow_multiple_connections": true,
      "auth_provider": "nango",
      "actions_only": false,
      "requires_channel_selection": false
    }
  ]
}

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.

Authorizations

Authorization
string
header
required

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.

Response

200 - application/json

Successful Response

integrations
IntegrationInfo · object[]
required