Check public domain availability in bulk
curl --request POST \
--url https://domain.kmerhosting.com/api/domain/domain-search-fast \
--header 'Content-Type: application/json' \
--data '
{
"domains": [
"<string>"
]
}
'import requests
url = "https://domain.kmerhosting.com/api/domain/domain-search-fast"
payload = { "domains": ["<string>"] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({domains: ['<string>']})
};
fetch('https://domain.kmerhosting.com/api/domain/domain-search-fast', 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/domain-search-fast",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'domains' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://domain.kmerhosting.com/api/domain/domain-search-fast"
payload := strings.NewReader("{\n \"domains\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://domain.kmerhosting.com/api/domain/domain-search-fast")
.header("Content-Type", "application/json")
.body("{\n \"domains\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://domain.kmerhosting.com/api/domain/domain-search-fast")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"domains\": [\n \"<string>\"\n ]\n}"
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 in bulk
Unauthenticated public search served from domain.kmerhosting.com. Send an array of up to 20 domains, or one scalar domain, domainName or q value. One bulk request counts as one request against the client IP allowance. The legacy Domain web portal UI may redirect users to Dashboard, but this API endpoint remains stable.
POST
/
api
/
domain
/
domain-search-fast
Check public domain availability in bulk
curl --request POST \
--url https://domain.kmerhosting.com/api/domain/domain-search-fast \
--header 'Content-Type: application/json' \
--data '
{
"domains": [
"<string>"
]
}
'import requests
url = "https://domain.kmerhosting.com/api/domain/domain-search-fast"
payload = { "domains": ["<string>"] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({domains: ['<string>']})
};
fetch('https://domain.kmerhosting.com/api/domain/domain-search-fast', 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/domain-search-fast",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'domains' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://domain.kmerhosting.com/api/domain/domain-search-fast"
payload := strings.NewReader("{\n \"domains\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://domain.kmerhosting.com/api/domain/domain-search-fast")
.header("Content-Type", "application/json")
.body("{\n \"domains\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://domain.kmerhosting.com/api/domain/domain-search-fast")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"domains\": [\n \"<string>\"\n ]\n}"
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>"
}Body
application/json
- Option 1
- Option 2
- Option 3
- Option 4
Required array length:
1 - 20 elementsRequired string length:
3 - 253Response
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
