Developer Portal

Build with Intellisar

Everything you need to integrate Intellisar into your applications. SDKs, APIs, webhooks, and comprehensive documentation.

Official SDKs

Node.js SDK

Official SDK for Node.js applications

npm install @intellisar/node-sdk
View documentation

Python SDK

Official SDK for Python applications

pip install intellisar
View documentation

REST API

Direct HTTP API access for any language

curl https://api.intellisar.ai/v1/...
View documentation

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.