Forms
Hosted form endpoints for every site.
Create a form, copy the public access key, and turn any HTML form into a production workflow with email delivery, spam filtering, uploads, webhooks, and delivery logs.
One endpoint
Post from plain HTML, React, Webflow, WordPress, Astro, Next.js, or any frontend that can submit a form.
Delivery controls
Route submissions to verified email recipients, webhooks, Google Sheets, and team notifications.
Abuse protection
Use honeypots, allowed domains, rate limits, CAPTCHA checks, and upload validation before downstream delivery.
Snippet
Drop this into any form.
<form action="https://api.formsfort.com/submit" method="POST">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY" />
<input type="email" name="email" required />
<textarea name="message" required></textarea>
<input type="checkbox" name="botcheck" style="display:none" />
<button type="submit">Send</button>
</form>