Automation
n8n
Self-hosted or cloud n8n workflows can call the API with the standard HTTP Request node.
What exists today
No community node exists yet. The built-in HTTP Request node does everything required, and on self-hosted n8n there is no per-task cost.
Setup
- 1Add an HTTP Request node, method POST.
- 2URL: https://www.layercall.com/v1/score/user
- 3Authentication: Generic Credential Type → Header Auth, name X-Api-Key, value your key.
- 4Body Content Type: JSON, then map ip, email and phone from the previous node.
- 5Follow it with an IF node branching on {{ $json.verdict }}.
Questions
Can I batch a whole list in n8n?
Yes — POST to /v1/batch with up to 500 values of one type per request, which is far faster than looping a single-record node 500 times and much kinder to both sides.