Deploy secure form endpoints on Cloudflare Workers in 30 seconds. Seamless SQLite persistence, Turnstile bot trapping, auto-responders, and signed webhooks.
Integrate EntryWise (v0.2.0) into this project as the form backend.
### Specifications:
- Endpoint: POST https://entrywise.webbound.in/v1/submissions
- Header: X-Api-Key: <YOUR_SITE_API_KEY> (or hidden input name="api_key")
### Requirements:
1. Form Payload: Send JSON { name, email, message } or multipart/form-data with file attachments.
2. Bot Defense: Include hidden honeypot input <input name="_gotcha" style="display:none" tabIndex="-1" />.
3. Status Handling: On 201 Created show success toast. On error parse RFC 7807 problem details response.
const response = await fetch('https://entrywise.webbound.in/v1/submissions', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Api-Key': 'YOUR_SITE_API_KEY',
},
body: JSON.stringify({
name: 'Alex Rivera',
email: 'alex@company.com',
message: 'Testing EntryWise edge ingestion',
}),
});
if (response.status === 201) {
const data = await response.json();
console.log('Submission ID:', data.submission_id);
}<!-- Zero-JS Native Form: Works without client-side JavaScript -->
<form action="https://entrywise.webbound.in/v1/submissions" method="POST">
<input type="hidden" name="api_key" value="YOUR_SITE_API_KEY" />
<input type="text" name="_gotcha" style="display:none" tabindex="-1" />
<input type="text" name="name" required placeholder="Your Name" />
<input type="email" name="email" required placeholder="Email Address" />
<textarea name="message" required></textarea>
<button type="submit">Send Message</button>
</form>curl -X POST https://entrywise.webbound.in/v1/submissions \
-H "Content-Type: application/json" \
-H "X-Api-Key: YOUR_SITE_API_KEY" \
-d '{
"name": "Jane Developer",
"email": "jane@example.com",
"message": "Testing from terminal"
}'Everything you need from ingestion to delivery without managing servers, queues, or databases.
Zero-latency distributed SQLite storage with instant RFC 4180 CSV export.
Server-side verification of Cloudflare Turnstile cryptographic tokens and silent honeypot drop traps.
Instant dispatches to Slack, Discord, Zapier, or your backend with Web Crypto HMAC-SHA256 signatures.
Native Cloudflare Send Email binding, Resend, MailerSend, Mailtrap, or SMTP2GO with at-rest encryption.
Send high-end confirmation emails branded with your company name, website link, and variable interpolation.
Submit real data directly to our live edge API endpoint and inspect the RFC 7807 response in real time.
// Submit the form to view the HTTP 201 Created JSON response and latency here.