Welcome to SendWhapp's documentation. This guide will help you set up and start using our WhatsApp API platform to connect with your customers.
Note: You'll need a business phone number that can receive SMS or calls for verification.
Key Features
- Bulk Messaging: Send messages to thousands of contacts
- Chatbots: Automate customer interactions
- Templates: Use pre-approved message templates
- API Access: Integrate with your existing systems
Quick Start
To get started with SendWhapp:
1. Create an account at https://app.sendwhapp.com
2. Verify your business phone number
3. Get your API credentials
4. Start sending messages
API Example
Here's how to send a message using our API:
const response = await fetch('https://api.sendwhapp.com/v1/messages', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
to: '15551234567',
type: 'text',
text: { body: 'Hello from SendWhapp!' }
})
});
Next Steps
Continue with our Quick Start Guide or explore the API Reference.