POST /v1/contact – Accept form submissions and deliver them straight to your inbox.
POST /v1/subscribe – Collect newsletter signups, manage subscribers, and unsubscribe.
POST /v1/broadcast – Send announcements to all your active subscribers in one call.
GET/POST /v1/cms – Store and retrieve editable content blocks by key for your site.
GET /v1/ping & /v1/config – Verify connectivity and retrieve public company info.
Each company gets a unique public key. Origin validation keeps your API locked down.
Set up your company name, contact email, website URL and generate an API key.
Include the key in a simple x-api-key header with every fetch request from your HTML/JS site.
Use standard fetch() calls to send contact forms, manage CMS content, handle subscriptions and more.
// Send a contact form from your static site
fetch('https://yourapi.com/v1/contact', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'YOUR_PUBLIC_KEY'
},
body: JSON.stringify({
from: 'visitor@example.com',
subject: 'Enquiry',
message: 'Hello, I have a question...'
})
});Sign up, configure your company, and start making API calls in minutes.