Webhooked.email - Webhooks that email you
Get a webhook URL, send any GET or POST request, and receive the payload as an email. webhooked.email makes dead-simple webhook-to-email bridging with a free 32-trigger tier.
TL;DR
TL;DR: webhooked.email gives you a unique webhook URL — send it any GET or POST request and it emails you the payload. Free tier covers 32 triggers per month, no signup required beyond email validation.
Source and Accuracy Notes
⚠️ This section is MANDATORY. All links must be verified from actual source, not guessed.
- Project page: webhooked.email ← verified via direct fetch
- Creator: VADOSWARE LLC ← confirmed on product page
- License: not applicable (closed-source SaaS)
- HN launch thread: news.ycombinator.com/item?id=41148753 (38 points, 2024-08-03)
What Is webhooked.email?
Most webhook integrations require running a server, configuring a pipeline, or wiring up a third-party automation tool. webhooked.email cuts through that: you get a permanent webhook URL, validated to your email address, and every incoming request lands in your inbox.
From the product page:
“Get a webhook that emails you in 30 seconds or less. No complicated registration, flow building, or dragging and dropping.”
The entire product fits on one page. There is no dashboard, no project setup, no API key management. You validate your email, receive your unique webhook URL, and start sending requests.
Setup Workflow
Step 1: Get your webhook URL
Visit webhooked.email, enter your email address, and submit. You receive an activation link in your inbox. Clicking it enables your unique webhook URL.
Your webhook URL looks like this:
https://webhooked.email/api/v1/hooks/<your-hook-id>/trigger
Step 2: Trigger with GET
For simple notifications, open the URL in a browser or use curl:
curl 'https://webhooked.email/api/v1/hooks/<your-hook-id>/trigger?user=alice&event=deploy'
The email you receive contains all query parameters.
Step 3: Trigger with POST and JSON
For structured payloads, send a POST request with a JSON body:
curl 'https://webhooked.email/api/v1/hooks/<your-hook-id>/trigger' \
-H 'Content-Type: application/json' \
--data '{"status": "success", "service": "production", "duration_ms": 1423}'
The email includes the full request body alongside any query parameters.
Step 4: Receive and act
Emails arrive with the trigger URL, query parameters, and body rendered in plain text. You can filter, forward, or auto-process them with standard email rules — no special tooling needed.
Pricing
webhooked.email uses a “set it and forget it” pricing model:
| Plan | Triggers/month | Ads | Analytics | Price | |------|---------------|-----|-----------|-------| | Free tier | 32 | Yes | No | Free | | Standard (yearly) | Unlimited | No | Yes | $24/year |
The free tier is ad-supported and suitable for personal use or low-volume automation. The Standard plan removes ads and adds analytics so you can see trigger history.
Practical Evaluation Checklist
Getting started:
- [x] No account required — email validation only
- [x] Webhook URL available immediately after activation
- [x] Works with GET and POST out of the box
Payload handling:
- [x] Query parameters included in email
- [x] JSON body included in email (with
Content-Type: application/json) - [x] No character encoding issues on test payloads
Practical uses:
- [x] GitHub Actions webhook → email on build failure
- [x] Cron job
curl→ email when a scheduled task misses - [x] Uptime monitor ping → email when a service goes down
- [x] External API webhook relay → email without exposing a server endpoint
Limitations to know:
- The free tier caps at 32 triggers per month — track usage before relying on it for critical alerts
- No retry mechanism or delivery confirmation — if the email service drops the message, there is no redelivery
- No programmable filtering or transformation of the payload before it hits your inbox
Security Notes
- Each webhook URL is tied to a specific validated email address — another address cannot trigger your hook
- The service does not appear to support payload signing or secret verification, so treat incoming emails as unauthenticated
- Email delivery is subject to standard spam filtering — use a sender address you monitor
FAQ
Q: Can I use this for production alerts? A: The free tier is too limited for production use (32 triggers/month). The Standard plan at $24/year is unlimited but still lacks retry logic and delivery SLAs. For critical alerts, use a service with acknowledgment and retry (e.g., PagerDuty, OpsGenie).
Q: What does the email actually look like? A: The email contains the trigger URL, all query parameters as key-value pairs, and the raw request body. It arrives from the webhooked.email sender address and is formatted in plain text.
Q: Can I filter or transform the payload before receiving it? A: No. webhooked.email forwards the raw payload without modification. Any filtering must happen in your email client using rules.
Q: Is there an API to manage webhooks programmatically? A: The product is deliberately minimal — there is no dashboard beyond the landing page, and no documented management API. Each user gets one webhook URL per email address.
Conclusion
webhooked.email solves one narrow problem with minimal friction. If you need to route a webhook to an email address without running a server, setting up Zapier, or configuring a pipeline, it is the right tool for the job.
The free tier is generous enough for personal projects. The $24/year Standard plan removes the cap and ads for light professional use. The tradeoff is that there is no retry, no payload transformation, and no SLA — so it fits workflows where occasional missed emails are acceptable.
Related Posts
dev-tools
Automotive Skills Suite for AI Engineering
Evaluate Automotive Skills Suite for APQP, ASPICE, HARA, safety-plan, and DIA workflows with setup notes, governance risks, and SME review guidance.
5/28/2026
dev-tools
awesome-agentic-ai-zh Roadmap Guide
Explore awesome-agentic-ai-zh as a Chinese agentic AI learning roadmap, with setup notes, track selection, study workflow, and evaluation guidance.
5/28/2026
dev-tools
Baguette iOS Simulator Automation Guide
Set up Baguette for iOS Simulator automation, web dashboards, device farms, gesture input, streaming, and camera testing with Xcode caveats.
5/28/2026