Developer Guide
Documentation
Everything you need to integrate our headless form backend into your application in minutes.
Getting Started
01
Create a Form
Go to the dashboard and click "New Form". Fill in your form details and email address where you want to receive submissions.
02
Get Your Endpoint
Each form gets a unique endpoint:
/f/YOUR_KEY03
Add to Your App
Use the endpoint as your complete HTML forms action attribute and start collecting submissions instantly.
index.html
<form
action="https://yourapp.vercel.app/f/YOUR_KEY"
method="POST"
enctype="multipart/form-data"
>
<!-- Input Fields -->
<input type="text" name="name">
<input type="email" name="email">
<textarea name="message"></textarea>
<!-- File Attachments (Optional) -->
<input type="file" name="attachment">
<button type="submit">Send Message</button>
</form>
API Reference
POST
/f/[key]Submit form data directly to endpoint. Payload broadly supports both raw JSON encoding and multipart/form-data for uploads.
200 OK