REST API Architecture
One Unified REST API for All Channels
Stop juggling multiple API implementations. Unipile provides a single, consistent REST API schema that works across LinkedIn, WhatsApp, Gmail, Outlook, and all major communication platforms. Write once, integrate everywhere.
// One request structure for all providers
const response = await
fetch('https://api.unipile.com/api/v1/messages', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_TOKEN' },
body: JSON.stringify({
account_id: "acc_123",
attendees: [{ identifier: "contact@example.com" }],
text: "Hello from Unipile!"
})
});
// Same structure works for:
// LinkedIn • WhatsApp • Gmail • Instagram • Telegram
200 OK - Message Sent