Why not call Any Webhook's API directly from your own endpoint? You can — but then you own Any Webhook's signature verification, retry handling, and payload quirks yourself. ZestyGlue verifies the signature, normalizes the event into a clean JSON body, and POSTs it to your URL — you only write the part that's actually yours.
What it looks like
ZestyGlue
Any Webhook — Deploy · Finished
{
"type": "deploy.finished",
"service": "api",
"status": "green"
}
A real Any Webhook event, shown as ZestyGlue formats it for Custom Webhook.
Setup — about two minutes
- Create the connector. In ZestyGlue, start a new Any Webhook → Custom Webhook connector. You'll get a unique webhook URL right away.
- Paste your ZestyGlue webhook URL into whatever tool, script, or service needs to send events — no source-side setup, no admin panel, no signing secret.
- Point it at your endpoint. Paste the URL of your own server, script, or automation tool's webhook receiver — no signup, no app to install.
Tip: This connector has no source-side setup at all. If your tool, script, or cron job can send an HTTP POST with a JSON body, it can use this connector today.
Events you can forward
any JSON payload, any shape
Questions
What if the JSON structure doesn't match what your other connectors expect?
That's fine — this connector doesn't require a specific shape. It formats whatever keys and values you send as a readable preview in your destination.
Can I use this for something that isn't JSON?
If the body isn't valid JSON, ZestyGlue falls back to showing the raw text it received, so plain-text posts still show up — just without field-by-field formatting.
Do I need to write my own server to receive this?
Yes — this destination expects your own endpoint (or a tool like a serverless function, a script, or another automation platform's webhook trigger) to receive the POST. If you don't have one yet, pick one of ZestyGlue's built-in destinations instead.
What happens if my ZestyGlue subscription lapses?
Events are silently dropped rather than causing errors on Any Webhook's side — Any Webhook never sees a failure response, so it won't retry aggressively or flag your webhook as broken. Your dashboard will simply stop showing new events until you resubscribe.