Backend
Incoming webhooks
Screen a payload arriving from a form provider, CRM or payment platform before you act on it.
What exists today
Any service that can POST to your endpoint can be screened. You receive the webhook, score the identity in it, then decide what to do — no integration on their side is required.
Setup
- 1Receive the inbound webhook at your own endpoint as usual.
- 2Extract the identity fields: IP, email, phone.
- 3POST them to /v1/score/user.
- 4Branch on verdict before writing anything to your database.
Questions
Does this add latency to the sender's request?
About 300ms if you do it inline. If the sender is strict about timeouts, acknowledge the webhook first and score asynchronously — the signal is just as valid a second later.