Bouncer scores every submission in real time using AI — letting genuine leads through while silently blocking bots, spammers, and low-quality noise before they hit your inbox.
Real-time scoring keeps your inbox clean without touching your workflow.
Drop Bouncer into any backend. REST API, JSON response, done.
// Score a submission before it reaches your inbox const score = await fetch('https://formshield.naptownlabs.dev/api/score', { method: 'POST', headers: { 'Authorization': `Bearer ${API_KEY}` }, body: JSON.stringify({ name, email, message }) }).then(r => r.json()); // Route based on verdict if (score.verdict === 'pass') sendToYourInbox(data); if (score.verdict === 'review') flagForReview(data); if (score.verdict === 'blocked') silentDrop(data);
{ "score": 96, "verdict": "pass", "reasons": ["valid domain", "natural language", "low-risk sender"], "ms": 84 }
100 free submissions/mo forever, no credit card.