Quick Start
Learn how to get started with FormSync in just a few minutes. Create your first form, connect it to your site and start receiving submissions instantly.
Setup in 3 Steps
Setup your form in just 3 steps:
Now you can start receiving submissions instantly in your FormSync Dashboard.
Step 1: Create an Account
- Go to formsync.app
- Sign up using your email
- Navigate to your Dashboard
Step 2: Create a New Form
- Click on Forms in sidebar
- Click Create a New Form
- Enter basic details like:
- Form Title (e.g., Contact Form)
- Form Description (e.g., Get in touch with us)
- Click Create New Form — and you'll get a unique endpoint URL like:
https://api.formsync.app/v1/s/YOUR_FORM_ID
This is your form’s submission endpoint.
You can publish your form by clicking on Publish Form button.
To publish your form, you need to build form in FormSync editor and then copy the form public URL.
Step 3: Connect Your Frontend Form
You can now use that endpoint directly in your form.
Here’s a simple HTML example:
html1<form action="https://api.formsync.app/v1/s/YOUR_FORM_ID" method="POST">2 <input type="text" name="name" placeholder="Your name" required />3 <input type="email" name="email" placeholder="Your email" required />4 <textarea name="message" placeholder="Your message" required></textarea>5 <button type="submit">Send</button>6</form>
When someone submits this form, the data will automatically appear in your FormSync Dashboard.
Step 4: View Submissions
Go to your Dashboard → Forms → [Click on Form] → View Submissions Here you can:
- View all received entries
Need Help?
If you face any issues or have feedback:
- Visit the FAQ
- Contact us at contact@sudhucodes.com
How is this guide?