Try our new Setup Skill to automatically integrate Hyperspell into your project
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
}
]
}List all integrations for the user.
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.
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.
Successful Response
Show child attributes
Was this page helpful?