🔍
IP Threat Intelligence
Check IP addresses against our comprehensive threat intelligence database with real-time reputation scoring
Powerful API for real-time IP threat intelligence, security monitoring, and access control
Get up and running with the IPSwamp API in minutes:
# Check an IP address
curl -X GET "https://ipswamp.com/api/v1/checkIP?ip=1.1.1.1" \
-H "Authorization: Bearer your-api-key-here"{
"message": "IP found!",
"details": {
"threat_score": 55,
"threat_level": "HIGH",
"ip": "80.94.92.164",
"last_attack": "2026-04-01T20:19:59.000Z",
"ip_rep": "known attacker",
"total_hits": 28,
"score": 55
},
"ipInfo": {
"ip": "80.94.92.164",
"asn": "AS47890",
"as_name": "UNMANAGED LTD",
"as_domain": "unmanaged.uk",
"country_code": "RO",
"country": "Romania",
"continent_code": "EU",
"continent": "Europe"
}
}