Developers
The Continuum API, all resources.
Authenticate with your API key as a Bearer token or x-api-key header. All responses are JSON. Webhooks are HMAC-signed.
NODE.JS SDK
npm install @continuum/api
import { Continuum } from '@continuum/api';
const client = new Continuum({ apiKey: 'cont_live_...' });
const result = await client.verify.single('user@example.com');
const msg = await client.send.send({ to: 'alex@acme.com', subject: 'Hi', html: '<p>Hello</p>' });QUICK START — REST
curl -X POST https://api.continuumapi.com/v1/send \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "to": "alex@acme.com", "subject": "Welcome", "html": "<p>Hi Alex!</p>", "verify_before_send": true }'Verification
Transactional
Templates
Sending domains
Lists & contacts
Campaigns
Sequences
Mailboxes
AI
Analytics & usage
Suppressions & monitoring
Get your API key from the dashboard — free plan includes 1,000 verifications and 1,000 sends per month.