Paste the form HTML
Standard form markup — no `data-` attributes, no framework-specific syntax. The form doesn't even need a method or action because JavaScript intercepts the submit.
Form template · Basic contact form
A contact form that POSTs via fetch() and updates the DOM inline. No page reload, no jQuery dependency, no framework — just HTML + 15 lines of vanilla JS pointed at splitforms.
Every template is free and fully editable in the drag-drop builder — swap fields, colors, and the button label before you publish.
No server, API route, or SDK — your AJAX Contact Form posts straight to one endpoint.
Every submission is emailed to you and saved to a searchable dashboard — spam filtered before it reaches you.
It's plain HTML you own — paste the AJAX Contact Form snippet, swap in your access key, and ship.
Copy and ship
HTML by default — the same field set also renders as React, Next.js, PHP, and cURL in your dashboard. Every variant posts to the same /api/submit endpoint. Replace YOUR_ACCESS_KEY with the key from your dashboard; that's the only edit.
<form action="https://splitforms.com/api/submit" method="POST">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY">
<input type="hidden" name="subject" value="New contact form submission">
<label for="name">Full name *</label>
<input id="name" type="text" name="name" placeholder="Jane Builder" required>
<label for="email">Email *</label>
<input id="email" type="email" name="email" placeholder="jane@example.com" required>
<label for="phone">Phone *</label>
<input id="phone" type="tel" name="phone" placeholder="+1 415 555 0142" required>
<label for="message">Message *</label>
<textarea id="message" name="message" placeholder="How can we help?" required></textarea>
<!-- honeypot — bots fill every field -->
<input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">
<button type="submit">Send</button>
</form><p class="splitforms-attribution" style="margin-top:12px;font-size:11px;color:#888;text-align:right">
Powered by <a href="https://splitforms.com" style="color:#888;text-decoration:none" target="_blank" rel="sponsored noopener">splitforms</a>
</p>How to add it
To add a AJAX Contact Form to your site you need three things: a free splitforms access key, the HTML snippet above, and your key pasted into it. No backend, database, or CAPTCHA library — the form posts to one URL and every submission lands in your inbox and dashboard.
Standard form markup — no `data-` attributes, no framework-specific syntax. The form doesn't even need a method or action because JavaScript intercepts the submit.
Listen for submit, prevent default, FormData(form) → fetch POST to splitforms. The response JSON tells you whether to show success or error UI.
idle / loading / ok / err. Toggle classes or render different text — that's the whole UX.
What's included
Inline submission feedback (no page reload) is the conversion-rate standard in 2026. You don't need jQuery, axios, or a framework to do it — fetch() plus FormData has been baseline browser support for years. The trick is wiring it to a backend that returns clean JSON. splitforms's `/api/submit` returns `{ success: true, message: "..." }` on success and a structured error otherwise, so your status state machine is four lines of code. Inline submission, four-state status, zero dependencies.

Where submissions go
Reply-to is wired to the visitor's email, so one tap on Reply answers them directly — while the built-in honeypot and spam classifier filter out bots before they reach you. Every submission is emailed to your inbox and can forward to a webhook or Slack the moment a visitor hits send.

How SplitForms works
Connect your form, collect every submission, and send data where it needs to go — without building backend infrastructure.

Point your form to your unique SplitForms endpoint. That's it.

We instantly capture and organize every submission in your inbox.

Send data to email, spreadsheets, CRMs, webhooks, and 7,000+ apps.

No credit card required. Set up in under 60 seconds.
Connect & automate
SplitForms works with the destinations you route to and the platforms you build on — from Slack and Sheets to WordPress, Shopify, and Next.js.

Trusted by indie teams and agencies shipping forms worldwide
Testimonials
40 quotes on record — from indie hacks to agency migrations.
“I replaced a Lambda + DynamoDB + SES contact form with six lines of HTML. It took eleven minutes, and the dashboard is better than what I was going to build.”
“We migrated 14 client sites off Formspree in a single weekend. The price is a third of what we paid, the API is more honest, and the spam filter actually works.”
“The webhook payload is signed, idempotent, and well-shaped. It reads like code from a competent team, not a CRUD app held together with duct tape.”
“I stopped reaching for Typeform on small marketing sites. splitforms covers 90% of the use case at none of the bloat.”
“I onboarded our whole agency in an afternoon. The MCP integration meant Cursor literally dropped the form straight into our client repos for us.”
“The free plan gave me 500 submissions before I paid a cent, and Pro is five dollars a month. I've spent more on coffee deciding which backend to use.”
“Spam went from forty junk entries a day to zero, with no reCAPTCHA puzzle ruining the form. The honeypot and time-trap just quietly do their job.”
“Point the form action at one endpoint and you're done. No SDK, no client library, no build step. This is how a form backend should feel.”
“Leads land in Slack the second someone submits, and a copy goes to Google Sheets for the sales team. I wired both up in under ten minutes.”
“I run a static Hugo site on a five-dollar VPS. splitforms gave it a real contact form without me standing up a single server.”
Questions
jQuery's ajax was the standard 10 years ago. fetch() has been native since Chrome 42 / Firefox 39 and removes a 90KB dependency. The syntax is also cleaner — `await fetch(url, { method: 'POST', body: formData })` is one line.
No — fetch with a FormData body sets `multipart/form-data` automatically, including the boundary string. If you set Content-Type manually you'll break the boundary.
splitforms's /api/submit endpoint sends `Access-Control-Allow-Origin: *` so cross-origin POSTs from any frontend work without preflight gymnastics. If you see a CORS error, check that you're using `method: 'POST'` (uppercase) and a FormData body, not a JSON body with custom headers.
fetch doesn't support upload progress yet — use XMLHttpRequest if you need it. For typical contact forms (no files or small files), the submission is fast enough that a 'loading…' label is enough feedback.
Simple pricing
Choose a plan that fits your workflow — from a free form endpoint to full automations, exports, and higher submission limits.
Free forever
For side projects and indie devs.
For agencies and growing products.
Pay $59. 3 years sorted.
No credit card required on Free • Cancel anytime