Block known malicious IPs before they can cause harm.
Malicious actors use IPs from known threat lists for fraud, account takeover, and attacks. Without blocklist checks, you allow known bad actors.
Check visitor IPs against our blocklist API. Block or flag IPs on inbound threat lists. Add an extra layer of security to your fraud prevention stack.
const res = await fetch("https://api.apiverve.com/v1/ipblacklistlookup?ip=185.220.101.1", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);