Posted by: Anil Kumar Panigrahi in: ● December 30, 2009
Hello friends,
Domainr API is used to get the information of existing domain names. it is working for all domains ( most probably might not be work for subdomains).
See the following php script :
function getInfo($domain) {
$domain = urlencode($domain); // encode url here…$request = “http://domai.nr/api/json/search?”;
$request .= “q=”.$domain.”&”;return $response = file_get_contents($request);
}
Pass the domain name to that function like : ( without http )
$data=getInfo(‘www.anil2u.info’);
Get the results in the json format and convert into string:
$obj = json_decode($data);
echo “This domain is “.$obj->{‘results’}[0]->{‘availability’} ;
Comments