Documentation

StaticSend Docs

Learn how to integrate StaticSend into your project and configure powerful notifications.

Quick Start

Every form gets a unique endpoint. Replace YOUR_FORM_ID with your actual form ID from the dashboard.

Endpoint URL

https://staticsend.vercel.app/api/submit/YOUR_FORM_ID

Integration Examples

The simplest way: just set your form's action attribute.

<form action="https://staticsend.vercel.app/api/submit/YOUR_FORM_ID" method="POST">
  <input type="email" name="email" placeholder="Your email" required />
  <textarea name="message" placeholder="Your message"></textarea>
  <button type="submit">Send</button>
</form>

How It Works

Multi-Channel Delivery

Get submissions via Discord or Slack. Configure multiple channels per form.

Spam Protection

Built-in honeypot fields block bots. Optional hCaptcha for advanced protection.

Automatic Retries

Failed deliveries retry up to 3 times with exponential backoff.

Dashboard & Logs

View all submissions, inspect delivery logs, and export your data.

Spam Protection

StaticSend includes automatic spam filtering using a honeypot technique:

  • Add a hidden field named _gotcha to your form
  • Bots that fill this field will be silently rejected
  • Real users never see or interact with this field
<input type="text" name="_gotcha" style="display:none" tabindex="-1" />

For additional protection, you can enable hCaptcha in your form dashboard.

Frequently Asked Questions

What happens to my data?

Submissions are stored securely in MongoDB. You can view and export them anytime from your dashboard. Data is never shared with third parties.

Is there a free tier?

Yes! The free tier includes 100 submissions per month. Paid plans offer higher limits and priority support.

Can I use my own domain?

Currently, forms submit to staticsend.vercel.app. Custom domains are on the roadmap.

Which frameworks are supported?

Any framework that can send HTTP POST requests — static HTML, React, Vue, Svelte, Astro, Next.js, Python, PHP, and more.

Ready to simplify your forms?

Get started in minutes, no credit card required.

Documentation | StaticSend — StaticSend