Developer First
Build With DigiSky WhatsApp
Powerful APIs, comprehensive SDKs, and excellent documentation to integrate messaging into your applications in minutes.
Documentation
Step-by-step guides to get you up and running fast.
SDKs & Libraries
Official SDKs for Node.js, Python, PHP, Java, Ruby & Go.
API Reference
Complete endpoint reference with request/response examples.
Webhooks
Real-time event notifications for delivery, reads & replies.
Install in Seconds
Official SDKs for every major language.
Node.js
npm install digisky-whatsapp-sdk
Python
pip install digisky-whatsapp
PHP
composer require digisky/whatsapp-sdk
Java
implementation 'live.digisky:whatsapp-sdk:1.0'
Ruby
gem install digisky-whatsapp
Go
go get github.com/digisky/whatsapp-sdk-go
Code Examples
Send your first message in minutes.
const client = new DigiSky WhatsApp({ apiKey: process.env.API_KEY });
await client.whatsapp.send({
to: '+911234567890',
template: 'order_confirmation',
language: 'en',
});const client = new DigiSky WhatsApp({ apiKey: process.env.API_KEY });
await client.sms.send({
to: '+911234567890',
message: 'Your OTP is 482913',
senderId: 'WUNJA',
});const client = new DigiSky WhatsApp({ apiKey: process.env.API_KEY });
await client.rcs.send({
to: '+911234567890',
card: { title: 'Order Shipped', image: 'https://cdn.example.com/order.png' },
});const client = new DigiSky WhatsApp({ apiKey: process.env.API_KEY });
await client.voice.call({
to: '+911234567890',
ivr: 'appointment_reminder',
});API Reference
Core RESTful endpoints at a glance.
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/messages | Send a WhatsApp, RCS, or SMS message |
| GET | /v1/messages/:id | Retrieve message delivery status |
| GET | /v1/analytics | Fetch delivery and engagement analytics |
| POST | /v1/templates | Create or update a message template |
| POST | /v1/voice/calls | Trigger an automated voice call |
| PUT | /v1/webhooks | Configure webhook endpoints for events |
GitHub Repositories
Explore open-source SDKs, samples, and starter kits.
Video Tutorials
Watch step-by-step integration walkthroughs.
Sandbox Environment
Test API calls safely before going live.