Quickstart
Use the Veria API to screen any address or ENS name in milliseconds.
1. Test with curl
curl https://api.veria.cc/v1/screen \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "input": "vitalik.eth" }'2. Test with JavaScript
const res = await fetch("https://api.veria.cc/v1/screen", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({ input: "vitalik.eth" }),
});
const data = await res.json();
console.log(data);