Check public domain availability
curl --request GET \
--url https://domain.kmerhosting.com/api/domain-searchimport requests
url = "https://domain.kmerhosting.com/api/domain-search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://domain.kmerhosting.com/api/domain-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://domain.kmerhosting.com/api/domain-search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://domain.kmerhosting.com/api/domain-search"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://domain.kmerhosting.com/api/domain-search")
.asString();require 'uri'
require 'net/http'
url = URI("https://domain.kmerhosting.com/api/domain-search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"results": [
{
"domainName": "<string>",
"registrar": {
"domainName": "<string>",
"available": true,
"isAvailable": true,
"status": "available",
"availabilitySource": "ote",
"isPremium": true,
"customerPriceUsd": 123,
"error": "<string>"
},
"price": {
"tld": ".com",
"registration_price_usd": 123,
"renewal_price_usd": 123,
"transfer_price_usd": 123,
"popular": true,
"is_promo": true,
"restore_price_usd": 123,
"min_years": 123,
"max_years": 123,
"registration_periods": [
123
],
"renewal_periods": [
123
],
"transfer_periods": [
123
],
"supports_privacy": true,
"provider_attributes": [
{
"key": "<string>",
"options": [
"<string>"
],
"isRequired": true,
"type": "<string>",
"description": "<string>"
}
]
}
}
],
"bulkSearch": true,
"availabilitySource": "ote",
"registrarEnvironment": "ote",
"requested": 123,
"accepted": 19,
"invalid": [
"<string>"
],
"unsupported": 123,
"generatedAt": "2023-11-07T05:31:56Z"
}{
"error": "search_rate_limited",
"message": "<string>"
}{
"error": "search_rate_limited",
"message": "<string>"
}{
"error": "search_rate_limited",
"message": "<string>"
}Check public domain availability
Unauthenticated public search served from domain.kmerhosting.com. Send one domain with domain or q, or up to 20 domains with repeated domain/domains parameters or a comma-separated domains value. The allowance is 20 requests per client IP in a rolling 60-second window; one bulk request counts as one request. The legacy Domain web portal UI may redirect users to Dashboard, but this API endpoint remains stable.
GET
/
api
/
domain-search
Check public domain availability
curl --request GET \
--url https://domain.kmerhosting.com/api/domain-searchimport requests
url = "https://domain.kmerhosting.com/api/domain-search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://domain.kmerhosting.com/api/domain-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://domain.kmerhosting.com/api/domain-search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://domain.kmerhosting.com/api/domain-search"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://domain.kmerhosting.com/api/domain-search")
.asString();require 'uri'
require 'net/http'
url = URI("https://domain.kmerhosting.com/api/domain-search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"results": [
{
"domainName": "<string>",
"registrar": {
"domainName": "<string>",
"available": true,
"isAvailable": true,
"status": "available",
"availabilitySource": "ote",
"isPremium": true,
"customerPriceUsd": 123,
"error": "<string>"
},
"price": {
"tld": ".com",
"registration_price_usd": 123,
"renewal_price_usd": 123,
"transfer_price_usd": 123,
"popular": true,
"is_promo": true,
"restore_price_usd": 123,
"min_years": 123,
"max_years": 123,
"registration_periods": [
123
],
"renewal_periods": [
123
],
"transfer_periods": [
123
],
"supports_privacy": true,
"provider_attributes": [
{
"key": "<string>",
"options": [
"<string>"
],
"isRequired": true,
"type": "<string>",
"description": "<string>"
}
]
}
}
],
"bulkSearch": true,
"availabilitySource": "ote",
"registrarEnvironment": "ote",
"requested": 123,
"accepted": 19,
"invalid": [
"<string>"
],
"unsupported": 123,
"generatedAt": "2023-11-07T05:31:56Z"
}{
"error": "search_rate_limited",
"message": "<string>"
}{
"error": "search_rate_limited",
"message": "<string>"
}{
"error": "search_rate_limited",
"message": "<string>"
}Query Parameters
A domain to check. Repeat this parameter for a bulk search.
Required string length:
3 - 253Example:
"example.com"
Comma-, whitespace- or newline-separated domains. Repeat this parameter when useful.
Required string length:
3 - 5099Example:
"example.com,example.org,example.cm"
Alias for domain for simple integrations.
Required string length:
3 - 253Example:
"example.com"
Response
Availability results and current customer pricing.
Maximum array length:
20Show child attributes
Show child attributes
Available options:
ote, production Available options:
ote, production Required range:
x <= 20
