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

I'm looking for GeoIP database/API providers. I need a local database with C# API with country level accuracy (for now). So far the only one that I find is MaxMind.

Not that there's anything wrong with MaxMind and their price for what I need is reasonable, but I'd like to evaluate alternatives before committing.

Did I miss any other similar offerings?

share|improve this question

3 Answers

GeoBytes offers a RESTful API. All you would have to do is build the URI and make the request. You could leverage this API in just about any language including C#. This IP Address Map lookup service is free to use also.

On a separate note if you don't mind using php there is also a php extension called geoIP that you could use, but it looks like it doesn't meet your specific requirements as the first item that I had listed does.

share|improve this answer

freegeoip.net Has a limit 1000 queries per hour It's open source and freely available at GitHub, you can run your own instance if the limit is a problem.

share|improve this answer

There is Quova which offers a RESTful API interface.

share|improve this answer
Thanks. I'm specifically interested in local solution. As far as I can tell they are not listing prices for their local solution and from the description it seems like an overkill and very expensive for my needs. – Alan Mendelevich Jul 25 '11 at 7:52

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.