5 min read
Capture website form leads
Send leads from any website form into LeadOs using a signed webhook — no plugins, works with any stack.
Any form on any site can feed LeadOs. Post the submission to your signed webhook and the AI takes it from there.
This uses the same custom webhook as the developer API — see the Webhook & REST API guide for the full signing details. The short version:
- 1
In LeadOs → Integrations → Custom Webhook, choose a Webhook Secret and save to reveal your unique Webhook URL.
- 2
Point your form handler (Zapier, Make, or your backend) to POST JSON to your webhook URL (copy the exact URL from the dashboard) with at least one of: name, email, phone, or message.
POST https://api.leados.saya-io.com/webhooks/your-workspace/webhook Content-Type: application/json X-Signature: sha256=<hmac-sha256(secret, body)> { "name": "Ada Lovelace", "email": "ada@example.com", "message": "Do you offer demos?" } - 3
LeadOs verifies the signature, creates a scored lead, and the AI follows up automatically.