Everything you need to add form endpoints to your website.
Get your first form running in 30 seconds.
Go to Sign up — free, no credit card required.
In your dashboard, click "+ New Form". You'll get a unique endpoint URL instantly.
Set your HTML form's action attribute to your endpoint URL. Submit and see it in your dashboard.
Choose your framework and copy the code.
<form action="https://rowen.in/api/f/YOUR_FORM_ID" method="POST"> <input type="text" name="name" placeholder="Name" required> <input type="email" name="email" placeholder="Email" required> <textarea name="message" placeholder="Message"></textarea> <!-- Spam protection (hidden) --> <input type="text" name="_gotcha" style="display:none"> <button type="submit">Send</button> </form>
Replace YOUR_FORM_ID with the actual ID from your dashboard endpoint URL.
Automatically send a thank-you email to people who submit your form.
Subject: Thanks for reaching out!
Thank you for contacting us!
We received your message and will get back to you within 24 hours.
Best regards,
The Team
Your form must have an email input field. The nameattribute must match the "email field name" in settings (default: "email").
Built-in honeypot field to catch bots.
<!-- Add this hidden field to your form --> <!-- Bots fill it in, real users don't see it --> <input type="text" name="_gotcha" style="display:none">
Submissions with a value in _gotcha are automatically discarded. Real users never see this field.
Send users to a thank-you page after submission.
https://yoursite.com/thank-you)Cross-origin requests work out of the box.
Access-Control-Allow-Origin: * Access-Control-Allow-Methods: POST, OPTIONS Access-Control-Allow-Headers: Content-Type
You can restrict origins in Settings by adding allowed domains (comma-separated).
See how people use Rowen.
Add a contact form to any business website. Get email notifications for every inquiry.
Freelancers use Rowen across all client sites. One dashboard for all forms.
Collect emails on your landing page. Auto-reply with a welcome message.
Registration forms for hackathons, workshops, and meetups.
Let customers request quotes. Get notified instantly to respond fast.
Embed feedback forms in your app. All responses in one dashboard.
Yes! You get 10 forms and 1,000 submissions per month completely free. No credit card required.
No. Just add our endpoint URL to your HTML form and it works. No server, no database, no API code.
The submission is saved to your dashboard. You get an email notification. The submitter gets an auto-reply (if enabled). All automatic.
Yes. Rowen works with any framework. Use our endpoint with fetch() — full CORS support included.
Yes. All data is transmitted over HTTPS. Your submissions are stored securely and only accessible by you.
Yes. Export all submissions as JSON from your dashboard at any time.
It's a honeypot for spam protection. Add a hidden input with name="_gotcha". Bots fill it in, but real users won't see it.