Quickstart

Three steps. Sixty seconds.

1. Create a form

Sign in to app.forms.zeno.io, click New form, and describe it. You'll get an endpoint URL that looks like /f/YOUR_SLUG.

2. Paste the HTML

contact.html
<form action="https://forms.zeno.io/f/YOUR_SLUG" method="POST">
  <input name="name" required />
  <input name="email" type="email" required />
  <textarea name="message" required></textarea>
  <button type="submit">Send</button>
</form>

3. Submit from anywhere

Any POST works — HTML form, fetch, or curl:

terminal
curl -X POST https://forms.zeno.io/f/YOUR_SLUG \
  -d name="Arun" \
  -d email="[email protected]" \
  -d message="Hello"

Next