Getting started
Quickstart
Wire FormsDock into an existing HTML form in under five minutes.
4 min read
FormsDock is a single endpoint. You can wire it into any HTML form by pointing the form action at the FormsDock URL. No SDK required.
1. Grab your form key
After signing up, open the dashboard and copy the access key for the form you want to wire up. The key starts with fk_live_ (or fk_test_ for the sandbox).
2. Update your form action
html
<form action="https://api.formdock.dev/v1/submit" method="POST">
<input type="hidden" name="access_key" value="fk_live_3xq7..." />
<input type="email" name="email" required />
<textarea name="message" required></textarea>
<button type="submit">Send</button>
</form>3. Test locally
Submit the form from your local dev server. The first submission should appear in your dashboard inbox within a second.
Tip: every form gets a unique access key. Rotate it from the dashboard without changing your existing form code.