tags:

views:

236

answers:

1

Looking for a Free / OpenSource WHOIS API that returns results in XML or some usable format?

A: 

ProgrammableWeb is a great place to start for things like this. A search there showed me the following:

http://www.programmableweb.com/api/whois

However, since that isn't free after the trial period, you could always just do an HTTP GET request to http://www.whois.net, like so:

http://www.whois.net/whois/microsoft..com

And then use regex scraping to acquire the various fields.

Reinderien
Thank you, yes I've seen this one before and used programmableweb.com. However the API you referenced is actually limited to 100 free lookups, a pricing chart is available for subsequent lookups.
meshwerk