← Help centre
Leads & billing
Send leads to your CRM with webhooks
Receive every new lead as signed JSON in Zapier, Make, your CRM or your own server.
On paid plans, add up to 5 webhook URLs under Settings → Webhooks. We send a POST request with JSON for every new lead.
{
"type": "lead.created",
"created_at": "2026-10-01T09:30:00Z",
"data": {
"id": "…", "calculator": "…", "name": "…", "email": "…", "phone": "…",
"estimate": { "text": "$200 – $220", "low": 200, "high": 220, "currency": "USD" },
"answers": [{ "label": "Bedrooms", "answer": "3 bedrooms" }]
}
}To verify a request came from Quotewise, compute HMAC-SHA256 of `timestamp + "." + raw body` with your webhook secret and compare it with the x-quotewise-signature header (format sha256=<hex>). The timestamp is in x-quotewise-timestamp.
Related guides