Formbase is an open-source backend for form submissions. You build the form UI in your app or site, then send the data to a Formbase endpoint. Formbase stores each submission, shows it in the dashboard, and can email you when new data arrives. The workflow is simple: create a form in the dashboard, post to its endpoint, and review submissions. Browser posts redirect to a built-in success page, while server requests receive JSON.Documentation Index
Fetch the complete documentation index at: https://docs.formbase.dev/llms.txt
Use this file to discover all available pages before exploring further.
How Formbase works
Create a form endpoint
Forms live in the dashboard. Each form gets a unique endpoint like
https://formbase.dev/s/your-form-id.Send a submission
Any HTTP client can submit. For static sites, use a normal HTML form. For apps, use fetch or a server action.
Formbase does not enforce a field schema. The
name attributes you send become keys in your submission data.Quick start examples
- HTML form
- Server submit
index.html
Next steps
Create your first form
Set up a form in the dashboard and grab its endpoint.
Find your endpoint
Learn how endpoints work for hosted and self-hosted setups.
