Developer Portal
Build with Intellisar
Everything you need to integrate Intellisar into your applications. SDKs, APIs, webhooks, and comprehensive documentation.
Official SDKs
REST API
Direct HTTP API access for any language
curl https://api.intellisar.ai/v1/...Quick Start Example
example.ts
import { Intellisar } from '@intellisar/node-sdk';
const client = new Intellisar({
apiKey: process.env.INTELLISAR_API_KEY
});
// Create a new contact
const contact = await client.contacts.create({
email: 'john@example.com',
firstName: 'John',
lastName: 'Doe',
tags: ['lead', 'website']
});
// Send an automated email
await client.campaigns.send({
templateId: 'welcome-sequence',
contactId: contact.id
});Ready to start building?
Sign up for a free developer account to get your API keys and start integrating Intellisar today.