How it works
Here's what happens after you get a webhook URL
Pricing
"Set it and Forget it" pricing
| Triggers per month | Ad free? | Analytics? | Price | ||
|---|---|---|---|---|---|
| Free tier | 32 | ❌ | ❌ | Free (ad-supported) | |
| Standard Plan (yearly) | Unlimited* | ✅ | ✅ | $24/year | Purchase | 
| *Excluding excessive use (ex. 1 webhook/second). | 
Questions you might have
How can I trigger the webhook?
You can use a tool like curl (or visit your trigger URL directly) to trigger an email send:
      
curl 'https://webhooked.email/api/v1/hooks/<your hook id>/trigger?param1=param1¶m2=param2'
      
     A POST request with JSON looks this:
      
curl 'https://webhooked.email/api/v1/hooks/<your hook id>/trigger'
  -H 'Content-Type: application/json'
  --data '{"your":"json","goes":"here"}'
      
    What data does the email have?
We send along:
- all query parameters (?query=param)
- the body of the request (ex. JSON)