Endpoint
One form endpoint for every site you build.
api.formsfort.dev/submit receives every form submission. Email delivery, webhooks, spam controls, and file uploads are handled automatically.
How it works
Three steps to production forms.
Create a form
Generate a public access key in the FormsFort dashboard.
Set the endpoint
Point any HTML form to https://api.formsfort.dev/submit.
Receive everything
Email, webhooks, delivery logs, and spam filtering happen automatically.
Setup
Single endpoint form
<form action="https://api.formsfort.dev/submit" method="POST">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY" />
<input type="text" name="name" required />
<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> Migration
Migration checklist.
Move an existing form in minutes without rebuilding markup.
Create a FormsFort form and copy your access key.
Set your form action to https://api.formsfort.dev/submit.
Add your access_key as a hidden input.
Include required fields like name, email, and message.
Add a botcheck honeypot for spam filtering.
Deploy and test a submission.
FAQ
Common questions.
What is a form endpoint?
A URL that accepts form submissions and handles delivery. FormsFort's endpoint is https://api.formsfort.dev/submit.
Can I use one endpoint for multiple forms?
Each form has its own access key, but they all post to the same URL. Manage multiple forms from one dashboard.
Do I need to configure the endpoint?
No. The endpoint works out of the box. Configure delivery, spam, and integrations from the dashboard.
Is the endpoint always available?
Yes. FormsFort is built for production with redundant infrastructure and monitoring.
Stop managing form servers.
Create a production form endpoint, migrate your first form free, and scale when you are ready.