Formstorkdocs
PricingENTRDashboard

Formstork docs

Formstork is the backend for your forms. Point any HTML form at our endpoint, add one hidden field with your access key, and every submission lands in your inbox and dashboard. No server, no backend code.

How it works

  1. Create a form in the dashboard and copy its access key.
  2. Add the key to your form as a hidden field and set the form’s action to our endpoint.
  3. Submissions are delivered by email, stored in your dashboard (90 days on the Free plan, forever on paid plans), and forwarded to any integrations you connect.
<form action="https://api.formstork.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>
  <button type="submit">Send</button>
</form>

Next steps