Every enquiry from your website goes directly to your WhatsApp — instantly! Stop letting hot leads sit in email spam folders. Connect with customers immediately when interest is highest.
Traditional email form submissions get delayed, overlooked, or filtered into spam. WhatsApp delivers 98% open rates within 3 minutes.
Get push notifications straight to your WhatsApp the moment a user submits your website form.
Reply directly via WhatsApp chat with 1-click while the customer is still browsing your website.
Never miss an inquiry again due to full email inboxes or overly strict spam filters.
Convert up to 3x more website leads by engaging prospects instantly on their favorite messaging app.
Works seamlessly with any website, WordPress plugin, or custom HTML form in less than 5 minutes.
Customer submits your website contact form, quote request, or booking form.
Our ultra-fast gateway formats field data into a clean WhatsApp template.
Your phone buzzes instantly with complete customer details ready for action.
No hidden setup fees. Instant setup with 99.9% Uptime Guarantee.
Perfect for single websites & small business owners.
Ideal for growing businesses & active lead generators.
Built for agencies, sales teams & high volume sites.
No complex coding required. Connects with virtually any HTML or CMS contact form.
Configure once with your isolated tenant API key (X-API-Key). Form submissions are delivered straight to WhatsApp, completely unchanged.
<!-- HTML Form with E.164 Dial-Code Phone Field -->
<form id="whatsapp-contact-form">
<input type="text" name="name" placeholder="Full Name" required />
<input type="tel" name="phone" placeholder="+919876543210 (E.164 format)" required />
<input type="email" name="email" placeholder="client@company.com" />
<textarea name="message" placeholder="Requirement & scope..."></textarea>
<button type="submit">Send to WhatsApp</button>
</form>
<script>
document.getElementById('whatsapp-contact-form').addEventListener('submit', async (e) => {
e.preventDefault();
const formData = new FormData(e.target);
const response = await fetch('https://thete.in/api/v1/enquiry', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'YOUR_TENANT_API_KEY'
},
body: JSON.stringify(Object.fromEntries(formData))
});
if (response.ok) alert('Notification queued & sent directly to WhatsApp!');
});
</script>
<?php
// Hook into Contact Form 7, Elementor Forms, or custom PHP backend
add_action('wpcf7_mail_sent', 'hostromeo_forward_to_whatsapp');
function hostromeo_forward_to_whatsapp($contact_form) {
$submission = WPCF7_Submission::get_instance();
if ($submission) {
$posted_data = $submission->get_posted_data();
$body = array(
'name' => sanitize_text_field($posted_data['your-name']),
'phone' => sanitize_text_field($posted_data['your-phone']),
'email' => sanitize_email($posted_data['your-email']),
'message' => sanitize_textarea_field($posted_data['your-message']),
'page_url' => get_permalink()
);
wp_remote_post('https://thete.in/api/v1/enquiry', array(
'headers' => array(
'Content-Type' => 'application/json',
'X-API-Key' => 'YOUR_TENANT_API_KEY'
),
'body' => json_encode($body)
));
}
}
?>
import { useState } from 'react';
export default function WhatsAppContactForm() {
const [status, setStatus] = useState('');
const handleSubmit = async (e) => {
e.preventDefault();
setStatus('Sending to WhatsApp...');
const res = await fetch('https://thete.in/api/v1/enquiry', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': process.env.NEXT_PUBLIC_WHATSAPP_API_KEY
},
body: JSON.stringify({
name: e.target.name.value,
phone: e.target.phone.value,
message: e.target.message.value
})
});
if (res.ok) setStatus('Enquiry delivered to WhatsApp!');
};
return (
<form onSubmit={handleSubmit}>
<input name="name" placeholder="Full Name" required />
<input name="phone" placeholder="+91..." required />
<textarea name="message" placeholder="Requirement..." />
<button type="submit">Submit Lead</button>
<p>{status}</p>
</form>
);
}
import requests
url = "https://thete.in/api/v1/enquiry"
headers = {
"Content-Type": "application/json",
"X-API-Key": "YOUR_TENANT_API_KEY"
}
payload = {
"name": "Jane Doe",
"phone": "+919025971986",
"email": "jane@company.com",
"message": "Enquiring about custom WhatsApp integration.",
"page_url": "https://hostromeo.com/whatsapp-contact-form.html"
}
response = requests.post(url, json=payload, headers=headers)
print("Delivery Status:", response.status_code)
print("Payload Output:", response.json())
Got questions? We have answers.
X-API-Key). Form submissions are forwarded immediately without altering enquiry content, and we never sell visitor data or run conversion tracking pixels on lead payloads.
Start receiving real-time WhatsApp enquiries today. Boost your response speed, engage potential clients instantly, and close more sales effortlessly.