ZapForm is a free service that forwards website contact form submissions directly to your WhatsApp. No more missed leads - get instant notifications on the platform you use most.
Built for developers who want a simple, reliable way to handle form submissions without the complexity of managing servers or databases.
Form submissions are sent directly to your WhatsApp number. Get notifications instantly and respond to leads faster.
Your data is encrypted in transit and we don't store any form submissions. Built with enterprise-grade security standards.
No hidden costs, no usage limits, no premium plans. ZapForm is completely free to use for all your projects.
Built on modern infrastructure with 99.9% uptime. Your forms will always work when your users need them most.
Clean API, comprehensive documentation, and code examples in multiple languages. Integration takes minutes, not hours.
No hidden fees, no premium plans. ZapForm is completely free for everyone, forever.
No credit card required
Go to developers.facebook.com and create a new app with WhatsApp Business API product.
Copy your Access Token and Phone Number ID from the WhatsApp API configuration panel.
Enter your credentials in our form above and get your secure API key via email.
Get up and running in minutes with our simple API and comprehensive examples.
The easiest way to integrate ZapForm. Just point your existing forms to our endpoint.
<form action="https://zapform.onrender.com/submit" method="POST">
<input type="hidden" name="api_key" value="your-api-key" />
<input type="text" name="name" placeholder="Your Name" required />
<input type="email" name="email" placeholder="Email" required />
<textarea name="message" placeholder="Your message"></textarea>
<button type="submit">Send to WhatsApp</button>
</form>
Your form submission will redirect to a success page, and the message will be delivered to WhatsApp instantly.
For more control, use our API directly with JavaScript fetch requests.
// Send form data to ZapForm
const formData = new FormData();
formData.append('api_key', 'your-api-key');
formData.append('name', 'John Doe');
formData.append('email', 'john@example.com');
formData.append('message', 'Hello from ZapForm!');
fetch('https://zapform.onrender.com/submit', {
method: 'POST',
body: formData
})
.then(response => response.json())
.then(data => {
if (data.success) {
// Success - message sent to WhatsApp
console.log('Message sent successfully!');
} else {
// Handle error
console.error('Failed to send message');
}
});
{
"success": true,
"message": "Form submitted successfully",
"whatsapp_message_id": "wamid.xxx"
}
Start sending forms to WhatsApp in minutes. No credit card required.