Developers
Documentation
Everything you need to build on the Adyapan Connect platform.
Quickstart
Create an account, connect a number and send your first message.
Authentication
Generate API keys and authenticate your requests.
Sending Messages
Send templates, media and interactive messages via the API.
Webhooks
Receive real-time events for message status and inbound chats.
SDKs & Libraries
Official SDKs for Node.js, Python, PHP and more.
Guides
Step-by-step tutorials for common integration patterns.
Example: send a message
curl -X POST https://api.adyapanconnect.com/v1/messages \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"to": "+919999999999",
"type": "template",
"template": "welcome_message"
}'