Honeypot detection
Invisible fields catch bots before submissions reach your inbox. Add one line of HTML. No CAPTCHA friction for real visitors.
No embed widgets. No iframe bloat. No drag-and-drop walls. Write the form in HTML and CSS, post to Pathline, and let submissions land in your inbox with spam protection built in.
<style>
.contact-form {
display: grid;
gap: 12px;
padding: 24px;
border-radius: 12px;
}
</style>
<form class="contact-form"
action="https://api.pathline.io/submit"
method="POST">
<input type="hidden" name="access_key"
value="YOUR-ACCESS-KEY">
<input type="text" name="name" required>
<input type="email" name="email" required>
<textarea name="message"></textarea>
<button type="submit">Send</button>
</form>
const form = document.querySelector('#contact-form');
form.addEventListener('submit', async (e) => {
e.preventDefault();
const res = await fetch('https://api.pathline.io/submit', {
method: 'POST',
body: new FormData(form),
});
const json = await res.json();
if (json.success) {
window.location.href = '/thank-you';
}
});
'use client';
export function ContactForm() {
async function handleSubmit(e) {
e.preventDefault();
const res = await fetch('https://api.pathline.io/submit', {
method: 'POST',
body: new FormData(e.currentTarget),
});
const json = await res.json();
if (json.success) {
window.location.href = '/thank-you';
}
}
return (
<form onSubmit={handleSubmit}>
<input type="hidden" name="access_key"
value="YOUR-ACCESS-KEY" />
<input type="text" name="name" required />
<input type="email" name="email" required />
<textarea name="message" />
<button type="submit">Send</button>
</form>
);
}
Trusted by businesses like yours
Behind the scenes
Point your form at the Pathline API from any site. Submissions route to your shared inbox, spam gets filtered before it clutters your team, and you never sacrifice page speed for lead capture.
Invisible fields catch bots before submissions reach your inbox. Add one line of HTML. No CAPTCHA friction for real visitors.
SEO pitches, link scams, and junk outreach get screened automatically. Real leads stay in Messages.
Form submissions land alongside SMS and calls. Reply from the same platform your team already uses.
Your design
Pathline doesn't ship a form skin. You write the markup and CSS: minimal, bold, soft, multi-step, whatever fits your brand. The backend is invisible until someone hits submit.
Minimal
Bold
Soft
Setup
If you can write a contact form in HTML, you can ship on Pathline today.
Sign in and open Forms → Access keys. Copy your UUID or use the AI instructions to wire up any stack.
Style it with your own CSS. Add a hidden access_key field and point action at the Pathline submit endpoint.
Deploy on Pathline hosting, WordPress, or anywhere else. Submissions show up in your inbox instantly.
Your HTML. Your CSS. Zero widget bloat. Pathline handles submissions, spam filtering, and inbox routing behind a single POST endpoint.
Talk to sales
Share a few details and our team will reach out to help you get started.
Thank you
Our team will reach out shortly at the email you provided.