Overview
AbuseIPDB lets you check whether an IP address has been reported for malicious activity like spam, hacking, or DDoS attacks. It is maintained by a community of network administrators who submit and verify abuse reports. Beginners can use it to add a basic security layer to web apps by blocking or flagging suspicious IPs.
Beginner Tip
Get a free API key at abuseipdb.com and use the /check endpoint with ?ipAddress= to instantly look up any IP. Free tier allows 1,000 checks per day.
Available Data
Example Response
{
"route": "Line 1",
"origin": "Station A",
"destination": "Station B",
"departure": "08:30",
"arrival": "09:15",
"status": "On Time",
"delays_min": 0
} Field Reference
ipAddress The IP address that was checked isPublic Whether the IP is a public (non-private) address abuseConfidenceScore Score from 0-100 indicating likelihood of abuse; higher means more suspicious countryCode Two-letter ISO country code of the IP origin totalReports Total number of abuse reports submitted for this IP lastReportedAt ISO 8601 timestamp of the most recent abuse report Implementation Example
const url = "https://docs.abuseipdb.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →AlienVault Open Threat Exchange (OTX)
AlienVault Open Threat Exchange (OTX) provides programmatic access to ip/domain/url reputation via REST API.
CAPEsandbox
CAPEsandbox is an open-source malware analysis platform that executes suspicious files in an isolated environment and reports on their behavior.
Google Safe Browsing
Google Safe Browsing lets you check any URL against Google's constantly updated lists of phishing sites, malware distributors, and unwanted software.
MalDatabase
MalDatabase provides programmatic access to provide malware datasets and threat intelligence feeds via REST API.
MalShare
MalShare is a free community-driven repository of malware samples that security researchers upload and share for analysis.