"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:

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:

Useful for fraud detection, debugging network issues, or just satisfying curiosity.

← All posts