Check if an IP address appears on known malicious IP blocklists. Identifies inbound threats (attackers, spammers) and outbound threats (C2 servers, malware hosts).
{
"status": "ok",
"error": null,
"data": {
"ipAddress": "185.220.101.1",
"isIPBlacklisted": true,
"inbound": {
"found": true,
"description": "IP is known for malicious inbound activity (spam, scanning, brute-force attacks)"
},
"outbound": null,
"threatLevel": "high",
"ipDetails": {
"ip": "185.220.101.1",
"country": "DE",
"region": "BY",
"timezone": "Europe/Berlin",
"city": "Nuremberg",
"coordinates": [
49.4478,
11.0683
],
"countryName": "Germany",
"regionName": "Bavaria",
"postalCode": "90403",
"continent": "EU",
"continentName": "Europe",
"accuracyRadius": 20
}
}
}






Check if an IP address appears on known malicious IP blocklists. Identifies inbound threats (attackers, spammers) and outbound threats (C2 servers, malware hosts).
A single authenticated GET with the location you care about — no SDK required.
GET /v1/ipblacklistlookup?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ ipAddress, isIPBlacklisted, inbound, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseProactively monitor your sending IPs with our API. Check if your IP appears on inbound blocklists that email providers use to filter spam.
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.
Copy a working request, or install a typed SDK. Same endpoint, same key.
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);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog