FormSync

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.

Ask ChatGPT

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

  1. Go to formsync.app
  2. Sign up using your email
  3. Navigate to your Dashboard

Step 2: Create a New Form

  1. Click on Forms in sidebar
  2. Click Create a New Form
  3. Enter basic details like:
    • Form Title (e.g., Contact Form)
    • Form Description (e.g., Get in touch with us)
  4. 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:

html
1<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:


Need Help?

If you face any issues or have feedback:

How is this guide?

Quick Start | FormSync