WhatsApp Forms Made Simple

Receive Contact Forms Directly in WhatsApp

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.

Why Choose ZapForm?

Built for developers who want a simple, reliable way to handle form submissions without the complexity of managing servers or databases.

Direct to WhatsApp

Form submissions are sent directly to your WhatsApp number. Get notifications instantly and respond to leads faster.

Secure & Reliable

Your data is encrypted in transit and we don't store any form submissions. Built with enterprise-grade security standards.

Always Free

No hidden costs, no usage limits, no premium plans. ZapForm is completely free to use for all your projects.

High Performance

Built on modern infrastructure with 99.9% uptime. Your forms will always work when your users need them most.

Developer Friendly

Clean API, comprehensive documentation, and code examples in multiple languages. Integration takes minutes, not hours.

Simple, Transparent Pricing

No hidden fees, no premium plans. ZapForm is completely free for everyone, forever.

Free Forever

$0

No credit card required

Unlimited form submissions
WhatsApp Business API integration
Flexible form fields
Email API key delivery
99.9% uptime guarantee
Community support

WhatsApp Business API Setup

1

Create Meta App

Go to developers.facebook.com and create a new app with WhatsApp Business API product.

2

Get Credentials

Copy your Access Token and Phone Number ID from the WhatsApp API configuration panel.

3

Register with ZapForm

Enter your credentials in our form above and get your secure API key via email.

Integration Documentation

Get up and running in minutes with our simple API and comprehensive examples.

HTML Form Integration

The easiest way to integrate ZapForm. Just point your existing forms to our endpoint.

Basic HTML Form HTML
<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>

Success Response:

Your form submission will redirect to a success page, and the message will be delivered to WhatsApp instantly.

JavaScript Integration

For more control, use our API directly with JavaScript fetch requests.

Send form data to ZapForm JavaScript
// 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');
    }
});

🔌 API Response Format

{
    "success": true,
    "message": "Form submitted successfully",
    "whatsapp_message_id": "wamid.xxx"
}

Get Your Free API Key

Start sending forms to WhatsApp in minutes. No credit card required.

Get your token from Facebook Developers
Found in your WhatsApp Business Account dashboard
Include country code (e.g., +1234567890)
Built with love by the Itnoa team