🌍 GeoIP API

Free, keyless IP geolocation and network intelligence — powered by geoip.rekkah.net

Your IP: 216.73.216.68

📘 API Documentation

🔗 Base Endpoint

GET http://geoip.rekkah.net/api.php?ip={IP}&format={json|xml|txt}

The ip parameter is optional — if omitted, your own IP is used. Default format is json.

📥 Example Request

GET http://geoip.rekkah.net/api.php?ip=8.8.8.8

📤 Example JSON Response

{
  "ip": "8.8.8.8",
  "geo": {
    "continent": "North America",
    "country": "United States",
    "countryCode": "US",
    "region": "California",
    "city": "Mountain View",
    "lat": 37.4056,
    "lon": -122.0775,
    "timezone": "America/Los_Angeles",
    "postal": "94043",
    "currency": "USD"
  },
  "network": {
    "reverse_dns": "dns.google",
    "asn": "AS15169",
    "asName": "GOOGLE",
    "isp": "Google LLC",
    "org": "Google",
    "domain": "google.com",
    "network_category": "hosting"
  }
}

📚 Query Parameters

ParameterDescriptionDefault
ipIP address to query (IPv4 or IPv6). If omitted, client IP is used.Client IP
formatOutput format: json, xml, or txt.json