Quick Start
Send your first WhatsApp message in under 5 minutes.
1. Create an account
Sign up at app.notifo.cloud — a 14-day free trial starts automatically.
2. Connect a WhatsApp channel
- Open Channels in the dashboard
- Click Connect WhatsApp
- Scan the QR code with your WhatsApp app
3. Create an API key
- Open API Keys in the dashboard
- Click New key, give it a name
- Copy the key — it is shown only once
4. Send a message
curl -X POST https://api.notifo.cloud/v1/notify/whatsapp/text \
-H "Content-Type: application/json" \
-H "X-Api-Key: notifo_YOUR_KEY" \
-d '{
"to": "+905551234567",
"text": "Hello from Notifo!"
}'
A successful response looks like:
{
"id": "msg_01j...",
"status": "queued",
"provider": "whatsapp",
"to": "+905551234567",
"createdAt": "2025-01-01T12:00:00.000Z"
}
5. Track delivery
Poll the message status or set up a webhook to receive real-time events:
curl https://api.notifo.cloud/v1/messages/msg_01j... \
-H "Authorization: Bearer YOUR_JWT"