What this is. “CloudNote” is a made-up SaaS standing in for one of our customers. You are playing someone signing up to it. On the left is what that visitor sees; on the right is what CloudNote’s server does behind the scenes. Pick a preset, or type your own details.
What happens to what you type. It is scored by the same engine our paying customers call — real signals, real verdict, nothing simulated. It is not recorded: nothing you enter here is stored, added to our reputation data, or used in anyone else’s score. Entering a real address does not flag it, block it, or affect any account anywhere.
The verdict you see is CloudNote’s to act on, not ours. We return a score and the reasons behind it; what to do about it — allow, verify, refuse — is always the customer’s decision.
Live demo — signup fraud check
Start your free trial
No credit card required
// submit the form (or pick a preset) to see the live response…
const check = await fetch("https://www.layercall.com/v1/score/user", {
method: "POST",
headers: { "X-Api-Key": process.env.LAYERCALL_API_KEY },
body: JSON.stringify({
ip: "<visitor IP>",
email: "",
phone: "",
}),
}).then(r => r.json());
if (check.verdict === "block") return reject();
if (check.verdict === "review") return requireEmailVerification();
createAccount(); // allow