Collect HTML and framework form submissions without running your own server. Route leads to email, WhatsApp (official Meta WhatsApp Business API), Telegram, Discord, webhooks, and Google Sheets from a shared monthly credit pool.
Product: formsreach.com · App: app.formsreach.com
Teams still need a contact form API, HTML form backend, and form to WhatsApp / email path without PHP or a custom Node server. FormsReach is that hosted form endpoint:
| You need | FormsReach |
|---|---|
| Contact form API / form backend | Public submit URL per form + dashboard |
| Static site / Next / Vue forms | Official SDKs + Raw HTML POST |
| WhatsApp for enquiries | Meta Cloud API delivery (plan-gated) |
| Multi-channel routing | Email, Telegram, Discord, webhooks, Sheets, workflow rules |
| Visual form design | Form builder + hosted embed |
| Spam filtering | Server honeypot + time-trap; SDKs auto-inject control fields |
Not for: WhatsApp marketing blasts, website chatbots, or unofficial WhatsApp tools.
| Repository | What it is |
|---|---|
| formsreach/sdk | Official clients: @formsreach/js, @formsreach/react, @formsreach/vue (CDN + npm). Auto spam field inject from v0.2.0. |
| formsreach/skills | AI coding agent skill (Claude Code, Cursor, Codex, …) for integrating FormsReach correctly. |
npm:
CDN:
https://unpkg.com/@formsreach/js/dist/formsreach.min.js
<form action="https://api.formsreach.com/submit" method="POST">
<input type="hidden" name="api_key" value="YOUR_API_KEY" />
<input type="text" name="name" required />
<input type="email" name="email" required />
<textarea name="message" required></textarea>
<button type="submit">Submit</button>
</form>Get a free API key at app.formsreach.com. Configure email, WhatsApp, and other channels in the dashboard after submit works.
<script src="https://unpkg.com/@formsreach/js/dist/formsreach.min.js"></script>
<script>
FormsReach.init({ apiKey: 'YOUR_API_KEY' });
</script>
<form data-formsreach>
<input type="text" name="name" required />
<input type="email" name="email" required />
<textarea name="message" required></textarea>
<button type="submit">Submit</button>
</form>React / Next: @formsreach/react → useFormsReach. Vue / Nuxt: @formsreach/vue → useFormsReach. See the SDK README.
| Resource | URL |
|---|---|
| Homepage | https://formsreach.com |
| Documentation | https://docs.formsreach.com/ |
| Dashboard | https://app.formsreach.com |
| Pricing (machine-readable) | https://formsreach.com/pricing.json |
| Pricing (markdown) | https://formsreach.com/pricing.md |
| AI / LLM brief | https://formsreach.com/llms.txt |
| Integrations | https://formsreach.com/integrations/ |
| Submit API | POST https://api.formsreach.com/submit |
Keywords we care about (product category): contact form API, HTML form backend, form to WhatsApp, form API for static sites, Formspree alternative, Webflow / WordPress form backend, React Next.js form endpoint.
Install the FormsReach skill so agents wire the official endpoint and SDKs instead of inventing backends:
npx skills add formsreach/skillsSource: formsreach/skills
Monthly credits meter accepted submissions, email notifications, and WhatsApp (by country band). Webhooks are free. Plans include Free, Starter, Pro, and Agency — always confirm current numbers on pricing.json.
- Product & support: hello@formsreach.com / support@formsreach.com
- Website: formsreach.com
formsreach.com · sdk · skills