A push for every form submission
A new lead that waits in your inbox until tomorrow is a colder lead. Connect your form tool to Webhooky and you know about every submission the second it happens.
Typeform & Tally
Both have native webhooks: in Typeform open your form → Connect → Webhooks, in Tally open Integrations → Webhooks. Paste your Webhooky link – done. The notification shows your endpoint's configured text; enable store payload to keep the full answers in your history.
Google Forms
Google Forms has no webhook UI, but a five-line Apps Script does the job. In the linked spreadsheet open Extensions → Apps Script, paste this and add an “On form submit” trigger:
function onSubmit(e) {
UrlFetchApp.fetch("https://api.webhooky.app/YOUR_KEY", {
method: "post",
contentType: "application/json",
payload: JSON.stringify({
title: "📝 New form submission",
message: e.values.join(" · ").slice(0, 400),
}),
});
}
Jotform, Webflow, Framer & everything else
Jotform has webhooks under Settings → Integrations. Form tools without native webhooks (Webflow, Framer, Squarespace) connect in two clicks via Zapier or Make – form trigger in, webhook POST out.
Tip: one endpoint per form
Give your contact form, your demo-booking form and your survey each their own endpoint with its own sound and color – you'll know which one fired without unlocking your phone.