/srs/domain_available
GET https://api.sitehost.nz/1.3/srs/domain_available.json
Checks if a domain is available for registration.
Query Parameters
Parameter | Type | Required | Description |
domain | string | Yes | The domain name to be checked.Example: example.com |
Code Samples
JavaScript PHP Rails Pythonvar xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "https://api.sitehost.nz/1.3/srs/domain_available.json?apikey=your_key_here&domain=example.com", false);
xmlHttp.send();
var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.3/srs/domain_available.json?apikey=your_key_here&domain=example.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
require 'net/http'
require 'uri'
uri = URI.parse("https://api.sitehost.nz/1.3/srs/domain_available.json?apikey=your_key_here&domain=example.com")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)
import requests
uri = 'https://api.sitehost.nz/1.3/srs/domain_available.json?apikey=your_key_here&domain=example.com'
response = requests.get(uri)
Response
200:application/json
{
"return": false,
"msg": "Domain is not available, and cannot be registered.",
"status": true
}
"return": false,
"msg": "Domain is not available, and cannot be registered.",
"status": true
}