Quickstart
Get from zero to your first WhatsApp message in under five minutes. You'll need an Alabrish account and an approved sender number.
1. Install the SDK
npm install @alabrish/sdk2. Send a test message
import { Alabrish } from "@alabrish/sdk";
const wa = new Alabrish({ apiKey: process.env.ALABRISH_KEY });
await wa.messages.send({
to: "+15551234567",
template: "hello_world",
});3. Subscribe to webhooks
Configure a webhook endpoint in the dashboard to receive inbound messages and delivery events. Verify each request with the X-Alabrish-Signature header.
