Zaptickdocs
Zaptick developers

The marketing infrastructure API

One typed client for WhatsApp, email, SMS, RCS and voice. Send messages, build flows, capture submissions, and listen to events — all over a single, well-tested surface.

#Install the SDK

Shell
npm install zaptick
# or
pnpm add zaptick
# or
bun add zaptick
TypeScript
import Zaptick from 'zaptick';

const zaptick = new Zaptick(process.env.ZAPTICK_API_KEY!);

const { messageId } = await zaptick.messages.send({
  phone: '+919876543210',
  templateName: 'welcome_message',
  language: 'en',
  variables: { '1': 'Rahul' },
});

#Channels

#Base URL

All endpoints below are relative to:

HTTP
https://zaptick.io/api

Requests must be made over HTTPS. Plain-HTTP requests are rejected with 400 invalid_protocol.

#What's live, what's coming

See the full SDK coverage matrix for a method-by-method breakdown, or check any channel page above for its current shipping status.