Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of a simple way to retrieve the country for a given IP Address? Preferably in ISO_3166-1 format?

share|improve this question
5  
Don't place too much reliance on the IP telling you the country where the user is sitting: because I work for a Scandinavian company I keep seeing adverts in Swedish, even though our office is in Scotland... – AAT Jan 13 '10 at 13:45
Exactly - if you think about it. There are many cases where you may appear to come from somewhere, but actually come from somewhere else. Its all down to the fact that network topology does not have to confirm to political or geological borders. F.ex. VPN's, wireless, satelite and so on. – Phluks Feb 6 at 10:26

9 Answers

up vote 30 down vote accepted

A lot of people (including my company) seem to use MaxMind GeoIP.

They have a free version GeoLite which is not as accurate as the paid version, but if you're just after something simple, it may be good enough.

share|improve this answer

There are two approaches: using an Internet service and using some kind of local list (perhaps wrapped in a library). What you want will depend on what you are building.

For services:

For lists:

share|improve this answer
1  
One of the most useful answers in general that I have seen in SO. Thank you! – tzot Oct 3 '08 at 12:08
Do you maybe know if the RIRs also have more detailed information, like the geopipcity db from maxmind, available as open data? I did look, but could not find it – Jevado Jul 29 '11 at 9:44

Here's a nice free service with a public API: http://www.hostip.info/use.html

share|improve this answer

ipinfodb provides a free database and API for IP to country and vice versa. They use free data from MaxMind. The data gets updated every month, and it's a great free alternative with decent accuracy.

share|improve this answer
Way better than maintaining your own database. Just tested it on a really obscure place (Uthai Thani, Thailand) and it was spot on. Great find, thanks! – JannieT Jul 29 '10 at 13:05

I don't know how accurate that hostip.info site is. I just visted that site, and it reported that my country is Canada. I'm in the US and the ISP that my office uses only operates from the US. It does allow you to correct it's guess, but if you are using this service to track web site vistors by country, you'll have no way of knowing if the data is correct. Of course, I'm just one data point. I downloaded the GeoLite Country database, which is just a .csv file, and my IP address was correctly identified as US.

Another benefit of the MaxMind product line (paid or free) is that you have the data, you don't incur the performance hit of making a web service call to another system.

share|improve this answer
Im in the UK and it said i was in Rio, Brazil :) – Mike May 8 '11 at 15:44

You can use the solution provided for this question.

But it returns a 2 digit country code.

share|improve this answer

The most accurate is Digital Elements NetAcuity...not free but you get what you pay for most of the time....Digital Element

share|improve this answer

google's clientlocation returns (my example)

latlng = new google.maps.LatLng(google.loader.ClientLocation.latitude, google.loader.ClientLocation.longitude);
location = "IP location: " + getFormattedLocation();
document.getElementById("location").innerHTML = location;
share|improve this answer

Try this php code

  <?php  $ip = $_SERVER['REMOTE_ADDR'];
    $json = file_get_contents("http://api.easyjquery.com/ips/?ip=".$ip."&full=true");
    $json = json_decode($json,true);
    $timezone = $json[localTimeZone];?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.