IP Address Locator

Our IP Address Locator lets you find out the location of over 16,000 IP Addresses per hour for free – no registration, no captchas, no keys required. Both robotic and human IP Address lookups are welcome. Optionally deep link directly to the IP Address Locator results. AJAX, JSON, and JSON-P all supported. Scroll down for a list of nearby cities and a map.

IP Address to locate:

IP AddressLocation
Nearby Cities
MiKmCityBearingDirection
0.000.00Ljubljana0.00North
6.6410.69Medvode324.27North-West
11.9819.28Vrhnika239.97South-West
14.7723.77Kranj330.54North-West
16.4426.47Sentjost325.08North-West
17.7728.60Naklo328.03North-West
23.5337.86Trzic336.47North-West
28.3045.55Hrastnik76.53East
35.4056.97Velenje53.39North-East
40.1164.55Ravne na Koroskem32.62North-East
40.6365.38Klagenfurt345.87North
Country Code
Country
Region Code
Region
City Code
City
CityId
Latitude
Longitude
Capital City
TimeZone
NationalitySingular
Population
NationalityPlural
CIA MapReference
Currency
CurrencyCode
Link to these results: https://geobytes.com/iplocator/?IpAddress=92.63.20.39

Map

Here is a code sample showing how to use this service programmatically.

In PHP, for example, you might access this IP Address Locator service like this:

   function getIP() {
      foreach (array('HTTP_CLIENT_IP','HTTP_X_FORWARDED_FOR','HTTP_X_FORWARDED',
                     'HTTP_X_CLUSTER_CLIENT_IP','HTTP_FORWARDED_FOR','HTTP_FORWARDED',
                     'REMOTE_ADDR') as $key) {
         if (array_key_exists($key, $_SERVER) === true) {
            foreach (explode(',', $_SERVER[$key]) as $ip) {
               if (filter_var($ip, FILTER_VALIDATE_IP) !== false) {
                  return $ip;
               }
            }
         }
      }
   }

   $json = file_get_contents('https://secure.geobytes.com/GetCityDetails?key=7c756203dbb38590a66e01a5a3e1ad96&fqcn=' . getIP());
   $data = json_decode($json);
   echo '<b>'. getIP() .'</b> resolves to:
'. var_dump($data);

– because everybody's somewhere

BESbswy