From zero to a working form in three steps. No SDK required for plain HTML — a hook and a CLI are there when you want them.
Sign up and add a form. You get a unique endpoint URL and a stable form ID.
https://inboundly.top/api/f/mdojqlbaSet the form's action to your endpoint and use method="POST". Give every input a name.
<form action="https://inboundly.top/api/f/mdojqlba"
method="POST">
<label>
Email
<input type="email" name="email" required>
</label>
<label>
Message
<textarea name="message" required></textarea>
</label>
<button type="submit">Send</button>
</form>Deploy your site. The first submission appears in your inbox within seconds, spam-filtered and stored.
The same endpoint accepts a plain form post, a React hook submission, or a CLI deploy.
<form action="https://inboundly.top/api/f/mdojqlba"
method="POST">
<label>
Email
<input type="email" name="email" required>
</label>
<label>
Message
<textarea name="message" required></textarea>
</label>
<button type="submit">Send</button>
</form>Change the action, name your inputs, ship. No script tag, no server, no build step.
Step-by-step setup for the frameworks and site builders you already use.
Create a free form and copy your POST URL. No card, no server, no build step.
Start free