Get Started in 2 Minutes
Add this tiny snippet to your form and start collecting submissions instantly.
Your Access Key
Copy this key to use in your forms
Your Key:
ak_1234567890abcdefAdd this to your form:
<input type="hidden" name="access_key" value="ak_1234567890abcdef">Paste this anywhere inside your form. It's invisible to users.
For React forms:
<input type="hidden" name="access_key" value="ak_1234567890abcdef" />Add this to your React form component.
For WordPress:
<input type="hidden" name="access_key" value="ak_1234567890abcdef">Add to your form block or contact form plugin.
Other platforms:
Google Forms
Settings → Advanced → Custom code
Typeform
Embed → Custom HTML
Webflow
Form settings → Custom code
Wix
Form settings → Custom code
Complete Form Example
See how it looks in a real form
<form action="https://api.formingo.com/submit" method="POST">
<!-- Formingo Access Key -->
<input type="hidden" name="access_key" value="ak_1234567890abcdef">
<!-- Formingo Form ID optional -->
<input type="hidden" name="form_id" value="CONTACT_PAGE">
<!-- Your Form Fields -->
<input type="text" name="name" placeholder="Your Name">
<input type="email" name="email" placeholder="Your Email">
<textarea name="message" placeholder="Your Message"></textarea>
<button type="submit">Submit Form</button>
</form>Optional: Add Form Label
Helpful if you have multiple forms
Add this second snippet:
<input type="hidden" name="form_id" value="CONTACT_PAGE">Use names like "CONTACT_PAGE", "NEWSLETTER_SIGNUP", "BLOG_COMMENT"
Test Your Setup
Submit a test entry to your form and watch it appear on your dashboard instantly.