Skip to content

Getting started

1. Get an access key

To use Dev forms, you need an access key. You can get one by filling out your email address on the Dev forms website. You will receive an email with your access key.

2. Create a form

After you have received your access key, you can create a form. You can do this by sending a POST request to the /v1/submit endpoint. You need to pass your access key in the body of the request. Here is a basic example withouth JavaScript:

<form action="https://api.dev-forms.com/v1/submit" method="POST">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY" />
<input type="text" name="name" />
<input type="email" name="email" />
<textarea name="message"></textarea>
<button type="submit">Submit</button>
</form>

3. Receive submissions

That’s it! You will now receive submissions in your inbox. This is a basic example, but you can do a lot more with Dev forms. Check out the API reference and guides to learn more.