I'd like to get your impressions on any ip geolocation (as in IP to location) service services you may have employed?

I'm looking for something free or cheap, which shouldn't be unrealistic because I need to make a very small volume of requests.

Anything with python bindings would be especially ideal.

link|improve this question

55% accept rate
I don't think that you mean what you asked, according to google: "Geocoding is the process of converting addresses (like "1600 Amphitheatre Parkway, Mountain View, CA") into geographic coordinates" – Evan Teran Nov 12 '08 at 5:34
feedback

14 Answers

I like the free GeoLite City from Maxmind which works for most applications and from which you can upgrade to a paying version if it's not precise enough. There is a Python API included, as well as for other languages. And if you are running Lighttpd as a webserver, you can even use a module to get the information in the SERVER variable for every visitor if that's what you need.

Edit: I should add there is also a free Geolite Country (which would be faster if you don't need to pinpoint the city the IP is from) and Geolite ASN (if you want to know who owns the IP) and that finally all these are downloadable on your own server, are updated every month and are pretty quick to lookup with the provided APIs as they state "thousands of lookups per second".

link|improve this answer
feedback

This is good:

http://ipinfodb.com/ip_database.php


Update August 2011: This site is no longer available for download.

link|improve this answer
feedback

We've worked with three different providers of such services in the past 4 years. We started with Geobytes. We've since moved to Digital Envoy. At the time we used geobytes, we had to go through a manual process to update our database with their data updates. Digital Envoy provides software to run on a local server that contacts tehir "Master Server" over the (large I) Internet nightly. We have a C library interface and get round-trip times from the server on the order of 600 microseconds, in our Gigabit internal network. The Digital Envoy tech support has been responsive.

In recent months we've also experimented with Quova, which has had somewhat better data in the realm of information about anonymous proxy services.

I can't comment on the prices of the various services, I'm not involved in that end of the business.

With all of them, we've had issues where customers questioned the vailidy of the data. I thank that's going to be true with whatever service you use. It's hard to validate the data.

link|improve this answer
feedback

I can also vouch for MaxMind's GeoIP product. We use it on a very large internet radio website (which is restricted by licensing to only stream to users in the US) and it works great. For only $12 per update (for country data), it's WAY cheaper than some of the other companies.

They also have other databases down to the city level, too - it just depends on what level of granularity you need.

link|improve this answer
feedback

This one works great for me. Returns an XML file to the query.

It's free and pretty accurate http://ipinfodb.com

link|improve this answer
Under the hood this is MaxMinds LGPL database GeoLite Country. These guys add more attributes from other sources to the data. – Felix Ogg Dec 1 '09 at 13:05
is not accurate at all, i tried in several small town in Italy and it fails 90% of the time pulling only the major cities nearby...useless. – Francesco Oct 7 '10 at 21:46
feedback

I have been looking into this for my company as well.

Here are a couple of pay ones that look very good http://www.ip2location.com http://www.maxmind.com

And here is a freebie! http://iploc.mwudka.com/index.html

link|improve this answer
feedback

Try the free Spotter Geolocation Service for accurate, measurement-based results: http://spotter.etomic.org. From the results of a measurement performed right now, the Host for www.stackoverflow.com is actually located on the East-Coast: "IP Address: 64.34.119.12, Expected Coordinates: 41,84 -73,91, City-level Location: New York, United States of America". :)

link|improve this answer
feedback

We use IP2Location on several projects, you purchase a database of Geocoded locations from them, so it's very fast (as it's on your local network).

But if you're after a free one I'm come across this web service: http://www.webservicex.net/WCF/ServiceDetails.aspx?SID=46

link|improve this answer
Server Error in '/' Application. The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly. Requested URL: /WCF/ServiceDetails.aspx Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1 – Pratik Dec 12 '10 at 10:22
feedback

hostip.info is a free database that maps IP to country/city. It's not very accurate unfortunately.

link|improve this answer
feedback

Since you prefer free or cheap IP geolocation service, I would recommend the FraudLabs' IP2Location free web service at http://www.fraudlabs.com/ip2location.aspx. You just have to sign up for a free account.

link|improve this answer
feedback

since you prefer a cheap Ip-details provider, i may suggest a cheap and best site, that is http://www.whoisxy.com/ I was used to it and it was useful to get accurate details for IP-details location.

link|improve this answer
feedback

Another option is Digital Element, which seem to have good results in regarding to zip coverage.

link|improve this answer
feedback

I would recommend IPAddressLabs.com (http://www.IPAddressLabs.com).

They provide an IP address geolocation web service. I have been using them for several months. As far as I can say, it is very accurate, or as accurate as it can be given this type of solution (IP geolocation).

They offer several editions of the service. One of them ("Micro" edition) is absolutely free and delivers the country and continent. There are 3 other editions (Basic, Standard and Pro), which can be used also for free but with a limitation that you can choose: Either a quota in the quantity of lookups, or a slower response (a delay of a few seconds). If you are willing to pay, they can be used without quotas or delays.

Regarding the speed, it is really fast (50 miliseconds according to our measurements).

Regarding availability, they promise 99.995%. As far as can say, it seems to be true. We haven't found problems in our logs so far (after months using it).

Regarding the prices, I think they are very affordable compared to other providers. Specially considering that when you pay, there is no lookups quota. Other providers apply quotas, which I find very stressing to deal with.

In the negative side, they don't offer the database. I would have liked to buy it, because it would be cheaper in the long term. But if you are looking for a service and not to buy the database, I would recommend this company.

link|improve this answer
feedback

protected by John Saunders Jan 14 at 0:17

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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