"IP Intelligence API & Dashboard"
Look up any IPv4 address instantly — geolocation, ASN, reverse DNS, and blacklist status, all in one place.
What it does
The new IP Intelligence tool at /ip-intel gives you a complete profile of any IP address:
- Geolocation — country, region, city, ZIP, coordinates (with OpenStreetMap link), timezone
- ASN / Network — ISP, organisation, ASN number and name
- Reverse DNS — hostname(s) for the IP
- Flags — is it a mobile IP? proxy/VPN? hosting/datacenter?
- Blacklist checks — 6 DNSBLs checked in parallel: Spamhaus ZEN, Barracuda, SORBS (spam + HTTP), SpamCop, NordSpam
All data comes from free, open sources — no API keys required.
Endpoints
# Single lookup
GET /ip-intel/api/lookup/8.8.8.8
# Bulk (up to 20 IPs)
POST /ip-intel/api/bulk
Content-Type: application/json
{"ips": ["8.8.8.8", "1.1.1.1", "..."]}`
Example response:
{
"ip": "8.8.8.8",
"geo": { "country": "United States", "city": "Mountain View", "lat": 37.386, "lon": -122.0838 },
"network": { "isp": "Google LLC", "asn": "AS15169 Google LLC" },
"reverseDns": ["dns.google"],
"flags": { "mobile": false, "proxy": false, "hosting": true },
"blacklists": [{ "name": "Spamhaus ZEN", "listed": false }, ...],
"blacklistCount": 0
}
Dashboard
The /ip-intel page auto-detects your own IP on load, so you immediately see your own profile. Type any IP and hit Look up for a full card view with colour-coded risk banners:
- 🟢 Clean — no blacklist hits
- 🟡 Warning — proxy or hosting detected
- 🔴 Flagged — listed on one or more blacklists
Useful for fraud detection, debugging network issues, or just satisfying curiosity.