Integrate ChatPro365 with your existing systems using our powerful REST API
/api/v1/messages/sendSend a WhatsApp message to a contact
/api/v1/broadcasts/createCreate and schedule a bulk broadcast campaign
/api/v1/contactsList all contacts with pagination and filters
/api/v1/contacts/importImport contacts via CSV or JSON
/api/v1/chats/{id}/messagesRetrieve message history for a specific chat
/api/v1/webhooks/configureSet up webhook endpoints to receive real-time events
/api/v1/analytics/overviewGet dashboard analytics and performance metrics
/api/v1/leadsList all leads with scoring and tags
// Send a WhatsApp message via ChatPro365 API
const response = await fetch('https://api.chatpro365.com/api/v1/messages/send', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
phone: '+917457863240',
message: 'Hello from ChatPro365 API! 🚀'
})
});
const data = await response.json();
console.log(data); // { success: true, messageId: "msg_xxx" }Contact our developer team for API keys, sandbox access, and integration support.
Contact Developer Team