Getting Started with WhatsSync
Welcome to the WhatsSync documentation. This guide will help you get started with integrating WhatsSync into your applications.
What is WhatsSync?
WhatsSync is a platform that allows you to integrate WhatsApp messaging capabilities into your applications. With WhatsSync, you can:
- Send and receive WhatsApp messages programmatically
- Receive real-time notifications via webhooks
- Manage contacts and conversations
- Send rich media messages including images, documents, and more
Quick Start
- Create an account - Sign up for WhatsSync and create your first project
- Connect your WhatsApp account - Follow the instructions to link your WhatsApp Business account
- Configure webhooks - Set up webhook endpoints to receive real-time updates
- Integrate the API - Use our REST API to send and manage messages
Authentication
All API requests require authentication using an API key. You can generate API keys in your project settings.
// Example API request with authentication
fetch('https://api.whatsync.io/v1/messages', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
to: '+1234567890',
text: 'Hello from WhatsSync!'
})
})Next Steps
Explore our detailed documentation for more information:
- Webhooks API - Learn how to receive real-time updates
- Chat API - Send and receive messages programmatically