Alif Bay Tech Infrastructure • Beta v1.0

Zero-Config Form Endpoints
Built for Modern Developers

Integrate backend form submissions into your static websites and web apps instantly. No backend code required.

Join the Waitlist

Be among the first developers to get access to custom domains, webhook routing, and analytics.

✓ Thank you for joining! We'll reach out shortly.
✕ Submission failed. Please try again.

Instant cURL API Test

Send POST requests straight to our production endpoint with full CORS and honeypot protection.

POST /submit
curl -X POST https://formanah.alifbay.in/submit   -H "Content-Type: application/json"   -d '{
    "name": "Alex Vance",
    "email": "alex@example.com",
    "message": "Testing Formanah endpoint",
    "recipientEmail": "your@email.com"
  }'

HTML Form Integration Snippet

Drop this ready-to-use HTML & JavaScript snippet straight into your frontend code.

index.html
<form id="formanahForm">
  <input type="text" id="name" placeholder="Your Name" required />
  <input type="email" id="email" placeholder="Your Email" required />
  <textarea id="message" placeholder="Message"></textarea>
  <button type="submit">Send Message</button>
</form>

<script>
document.getElementById('formanahForm').addEventListener('submit', async (e) => {
  e.preventDefault();
  const res = await fetch('https://formanah.alifbay.in/submit', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      name: document.getElementById('name').value,
      email: document.getElementById('email').value,
      message: document.getElementById('message').value,
      recipientEmail: 'your@email.com' // Destination email
    })
  });
  if (res.ok) alert('Message sent successfully!');
});
</script>

Enterprise Security Features

Built-in protections so you don't have to build them yourself.

Honeypot Spam Defense

Automatic detection and filtering of malicious bot spam.

Rate Limiting

Protection against brute-force request flooding.

Owner Verification

Double opt-in verification for destination email safety.

High Deliverability

Powered by Resend transactional infrastructure.

Direct Feedback

Have a feature request or feedback? Send a note directly to our team.

✓ Thank you for your feedback!
✕ Failed to send feedback. Please try again.