FormRelay

Contact Forms Without the Backend

Add working contact forms to any website in minutes. No servers, no databases, no hassle. Just submit to our API and we handle the rest.

Instant Setup

Create a form endpoint in seconds. Get an API URL and start collecting submissions immediately.

Email Notifications

Receive instant email alerts for every submission. Never miss a lead again.

Spam Protection

Built-in rate limiting, domain allowlists, and honeypot support to keep spam out.

Simple Integration

fetch("https://formrelay.app/api/submit", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    form_id: "your-form-id",
    name: "Jane Doe",
    email: "jane@example.com",
    message: "Hello from my website!"
  })
})