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). using php code we can get the domain is existing or not with reference to domianr API.

 

See the following code to retrieve information

PHP script

 

1
2
3
4
5
6
7
8
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 )

1
$data=getInfo('www.anillabs.com');

Get the results in the json format and convert into string:

1
2
$obj = json_decode($data);
echo "This domain is ".$obj->{'results'}[0]->{'availability'} ;

0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *