Basic Information

Enter an IP address to see results

Geolocation

Geolocation data will appear here

Network Information

Network details will appear here

WHOIS Lookup

Get detailed domain and IP registration information

Reverse DNS

Find hostnames associated with an IP address

Subnet Calculator

Calculate network ranges and subnet information

Port Scanner

Check which ports are open on a target IP

Ping Test

Test network connectivity and latency

Traceroute

Trace the network path to a destination

Enter an IP address to perform security analysis
Enter IP addresses above to perform bulk lookup

0

Total Lookups

0

Unique Countries

0

Security Checks

0ms

Avg Response Time

Recent Activity

No recent activity

Top Countries

No data available

API Overview

The Advanced IP Lookup API provides comprehensive IP address and domain information through RESTful endpoints. All endpoints return JSON responses and support CORS for web applications.

Base URL: https://ip.bdzonemc.com/api
Format: JSON
CORS: Enabled
Rate Limit: No limits (for demo purposes)

IP Lookup API

GET /api/lookup

Retrieve comprehensive information about an IP address including geolocation, ISP, and network details.

Request
GET /api/lookup?ip=8.8.8.8
Response
{
  "success": true,
  "ip": "8.8.8.8",
  "country": "United States",
  "city": "Mountain View",
  "isp": "Google LLC",
  "organization": "Google Public DNS",
  "timezone": "America/Los_Angeles",
  "latitude": 37.386,
  "longitude": -122.0838,
  "asn": "AS15169",
  "threat": "clean",
  "proxy": false,
  "vpn": false
}
Parameters:
  • ip (required) - IP address to lookup

Network Tools API

GET /api/network-tools

Access various network analysis tools including WHOIS, reverse DNS, subnet calculator, and more.

Request
GET /api/network-tools?ip=google.com&tool=whois
Available Tools:
  • whois - WHOIS lookup for IP addresses and domains
  • reverse-dns - Reverse DNS lookup
  • subnet-calc - Subnet calculator
  • ping-sim - Ping simulation
  • traceroute - Traceroute simulation
Parameters:
  • ip (required) - IP address or domain name
  • tool (required) - Tool to use (see available tools above)

Security Check API

GET /api/security-check

Analyze IP addresses for security threats, VPN usage, proxy detection, and malicious activity.

Request
GET /api/security-check?ip=8.8.8.8
Security Checks:
  • VPN Detection - Identifies VPN usage
  • Proxy Detection - Detects proxy servers
  • Tor Network - Identifies Tor exit nodes
  • Threat Intelligence - Checks against threat databases
  • Hosting Detection - Identifies hosting providers

Bulk Lookup API

POST /api/bulk-lookup

Perform lookups on multiple IP addresses simultaneously for batch processing.

Request
POST /api/bulk-lookup
Content-Type: application/json

{
  "ips": ["8.8.8.8", "1.1.1.1", "208.67.222.222"]
}
Parameters:
  • ips (required) - Array of IP addresses to lookup

Minecraft Status API

GET /api/minecraft-status

Check the status of Minecraft servers including player count, version, and MOTD.

Request
GET /api/minecraft-status

Usage Examples

JavaScript (Fetch API)

Example
// IP Lookup
fetch('/api/lookup?ip=8.8.8.8')
  .then(response => response.json())
  .then(data => console.log(data));

// WHOIS Lookup
fetch('/api/network-tools?ip=google.com&tool=whois')
  .then(response => response.json())
  .then(data => console.log(data));

// Security Check
fetch('/api/security-check?ip=8.8.8.8')
  .then(response => response.json())
  .then(data => console.log(data));

cURL

Example
# IP Lookup
curl -X GET 'https://ip.bdzonemc.com/api/lookup?ip=8.8.8.8'

# WHOIS Lookup
curl -X GET 'https://ip.bdzonemc.com/api/network-tools?ip=google.com&tool=whois'

# Security Check
curl -X GET 'https://ip.bdzonemc.com/api/security-check?ip=8.8.8.8'

Error Handling

All API endpoints return consistent error responses with appropriate HTTP status codes.

Error Response
{
  "success": false,
  "error": "Invalid IP address format",
  "details": "The provided IP address is not valid"
}
Common HTTP Status Codes:
  • 200 - Success
  • 400 - Bad Request (invalid parameters)
  • 404 - Not Found (endpoint not found)
  • 500 - Internal Server Error

Help & Support

Getting Started

  1. Start with the IP Lookup tab to get basic IP information
  2. Use Network Tools for advanced analysis like WHOIS and reverse DNS
  3. Check Security tab for threat analysis and VPN detection
  4. Use Bulk Lookup for processing multiple IPs at once
  5. View Dashboard for statistics and analytics

Tips & Best Practices

  • Always validate IP addresses before making API calls
  • Use appropriate timeouts for WHOIS lookups (they can be slow)
  • Cache results when possible to improve performance
  • Handle errors gracefully in your applications
  • Respect rate limits in production environments

Common Issues

Q: WHOIS lookup is taking too long

A: WHOIS lookups have a 10-second timeout. If it times out, fallback data will be provided.

Q: Can I lookup domain names?

A: Yes! The WHOIS tool supports both IP addresses and domain names.

Q: Is there a rate limit?

A: Currently no rate limits are enforced, but please use responsibly.