Authorizations
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.
Try our new Claude Code Skill to automatically integrate Hyperspell into your project
import Hyperspell from 'hyperspell';
const client = new Hyperspell({
apiKey: 'My API Key',
});
const response = await client.integrations.connect('integration_id');
console.log(response.expires_at);{
"url": "<string>",
"expires_at": "2023-11-07T05:31:56Z"
}Redirects to the connect URL to link an integration.
import Hyperspell from 'hyperspell';
const client = new Hyperspell({
apiKey: 'My API Key',
});
const response = await client.integrations.connect('integration_id');
console.log(response.expires_at);{
"url": "<string>",
"expires_at": "2023-11-07T05:31:56Z"
}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.
Was this page helpful?