New: Post-Quantum Cryptography tools — is your domain quantum-safe? Check now

network

IP Lookup

Get detailed information about an IP address

What You Need to Know

What This Tool Does

IP Lookup provides detailed information about an IP address including geographic location, hosting provider, ASN (Autonomous System Number), and network details.

Why It Matters

  • Security Analysis: Identify suspicious IP addresses and their origin
  • Geotargeting: Understand where your traffic is coming from
  • Network Troubleshooting: Diagnose connectivity issues
  • Fraud Prevention: Detect mismatches between claimed and actual locations

How to Read the Results

  • Country/City: Physical location of the IP address
  • ISP/Organization: Who owns or operates the IP block
  • ASN: Unique identifier for the network
  • Type: Residential, datacenter, mobile, etc.

Input Parameters

Enter an IPv4 or IPv6 address

Tool Status: Ready

Developer

API & CLI Usage

API Endpoint

POST /api/tools/ip-lookup

Platform-Specific Examples

Bash (curl)
curl -X POST https://epcybertools.com/api/tools/ip-lookup \
  -H "Content-Type: application/json" \
  -d '{"ip":"8.8.8.8"}'
wget
wget --method=POST \
  --header="Content-Type: application/json" \
  --body-data='{"ip":"8.8.8.8"}' \
  -O - https://epcybertools.com/api/tools/ip-lookup
HTTPie (apt install httpie)
http POST https://epcybertools.com/api/tools/ip-lookup \
  ip="8.8.8.8"
View full API documentation →