Simple, Powerful Form Backend for Developers
Handle Forms
Without a Server
The easiest way to receive form submissions from your static site. Connect your frontend to our API and get emails instantly.
Built for modern workflows
Everything you need to manage your form data at scale.
Secure API Keys
Create unique keys for each project. Control where your submissions come from with domain locking.
Auto-Responders
Send beautiful, branded confirmation emails to your users automatically after they submit.
Data Dashboard
A clean interface to view, filter, and export your submissions. No more messy spreadsheets.
Implement in
seconds, not hours.
Sendly works with any frontend framework. No complex SDKs or libraries to install. Just a simple POST request.
- Zero configuration required
- Works with static sites (HTML, Jekyll, Hugo)
- Spam protection included
api_test.js
Javascript
fetch('https://sendly-bay.vercel.app/api/send', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'apikey': 'sk_live_xxxxxxxxxxxxxxxx'
},
body: JSON.stringify({
name: 'Jane Doe',
email: 'jane@example.com',
message: 'Hello, this API is amazing'
})
})