Quick Start

Get up and running with FastSubmit in under 5 minutes.

1

Create an Account

Sign up for a free FastSubmit account to get started.

2

Create a Form

In your dashboard, create a new form and define your fields. You'll get a unique form ID and API key.

Your form endpoint will look like:

https://fastsubmit.hostspica.com/api/submit/YOUR_FORM_ID
3

Add to Your Website

Add the endpoint URL to your HTML form's action attribute:

<form action="https://fastsubmit.hostspica.com/api/submit/abc123" method="POST">
  <label>
    Name
    <input type="text" name="name" required />
  </label>
  
  <label>
    Email
    <input type="email" name="email" required />
  </label>
  
  <label>
    Message
    <textarea name="message"></textarea>
  </label>
  
  <!-- Honeypot field for spam protection (keep hidden) -->
  <input type="text" name="_honeypot" style="display:none" />
  
  <button type="submit">Send Message</button>
</form>
4

View Submissions

That's it! All form submissions will appear in your FastSubmit dashboard. You can also fetch them via the REST API.

Important Notes

  • • Field name attributes must match the field IDs you defined in your form
  • • Add a hidden _honeypot field for spam protection
  • • The form accepts both application/json and application/x-www-form-urlencoded

Next Steps