Skip to main content

Documentation

Integration

Each snippet below is a complete, working example. Replace YOUR_FORM_ID with your actual form ID from the dashboard.

<form action="http://formcore.io/f/YOUR_FORM_ID" method="POST"
  enctype="application/x-www-form-urlencoded">
 <input type="text" name="name" placeholder="Name" required />
 <input type="email" name="email" placeholder="Email" required />
 <textarea name="message" placeholder="Message"></textarea>
 <button type="submit">Send</button>
</form>

Standard HTML form submission. The browser sends the form data as URL-encoded key-value pairs. Every field name becomes a column in your dashboard.

Get copy-paste snippets with your form ID

Open any form in the dashboard and click the Setup tab to get ready-to-use code with your endpoint URL and form ID already filled in.