EN
Sign in Start free Docs/Getting started/ Quickstart
Quickstart
Get a working form endpoint in under a minute. You'll create a form, copy a snippet, and submit it from any HTML page you control.
You don't need an account to test
Use the playground endpoint
fflw.io/f/playground — it accepts anything, stores nothing, and 200s back. Swap it for your real endpoint once you sign up. 1
Create a form
From the console, click New form. Give it a name and the email address that should receive notifications.
[ screenshot · console → New form dialog ]
You'll get a unique slug like abc12xy. That slug is your endpoint.
2
Point your HTML at it
Set the form's action attribute and that's it. No JavaScript required.
3
Submit and verify
Open the page, fill it in, hit submit. You'll get an email within seconds; the submission shows up in the console with the full payload, headers and any uploaded files.
That's it.
Next: add a webhook, configure spam protection, or invite a teammate.
Next steps
Browse the docs
Guides and API reference for everything FormFlow ships today.
API
- API overviewBase URL, authentication with submission and management keys, and how errors are shaped.
- Submission ingestPOST /v1/f/:slug — content types, file uploads, idempotency, response shapes and quota behaviour.
- WebhooksSigned JSON deliveries for every submission — envelope format, HMAC verification, retries and testing.