Domain Name API
Bulk Domain Check
API Reference
Domain Name API
- POSTGet Reseller Details
- POSTGet Reseller Balance
- POSTGet TLD List
- POSTSingle Domain Check
- POSTBulk Domain Check
- POSTRegister Domain
- POSTDomain List in a Reseller Account
- POSTGet Registered Domain Details
- POSTGet Domain Contact
- POSTEnable Theft Lock (EPP)
- POSTDisable Theft Lock
- POSTModify Domain Nameserver
- POSTAdd Child Nameserver (Private DNS)
- POSTModify Child Nameserver
- POSTDelete Child Nameserver
- POSTSync Domain From Registry
- POSTTransfer Domain
- POSTCancel Transfer
- POSTModify Privacy (WHOIS)
Server
Auth
Hosting
- GETGet all hosting groups
- POSTCreate a new hosting plan
- DELDelete all hosting groups
- POSTCreate a bulk hosting plan
- GETGet a hosting group by ID
- DELDelete a hosting group by ID
- PATCHupdate a hosting group by id
- GETGet a hosting group by name
- DELDelete a hosting group by name
- POSTCreate a new hosting subgroup
Domain Name API
Bulk Domain Check
POST
/
?action=bulkcheckavailability
curl --request POST \
--url 'https://domain.hostwithdothost.com/?action=bulkcheckavailability' \
--header 'Content-Type: application/json' \
--data '{
"username": "your_username",
"password": "your_password",
"domains": [
"example1.com",
"example2.net"
]
}'
{
"status": "success",
"availability": {
"heylomol.com": [
{
"TLD": "com",
"DomainName": "heylomol",
"Status": "available",
"Command": "create",
"Period": 1,
"IsFee": false,
"Price": "11.2900",
"Currency": "USD",
"Reason": null
}
],
"tayad.net": [
{
"TLD": "net",
"DomainName": "tayad",
"Status": "available",
"Command": "create",
"Period": 1,
"IsFee": false,
"Price": "13.9900",
"Currency": "USD",
"Reason": null
}
]
}
}
Response
200
application/json
Was this page helpful?
curl --request POST \
--url 'https://domain.hostwithdothost.com/?action=bulkcheckavailability' \
--header 'Content-Type: application/json' \
--data '{
"username": "your_username",
"password": "your_password",
"domains": [
"example1.com",
"example2.net"
]
}'
{
"status": "success",
"availability": {
"heylomol.com": [
{
"TLD": "com",
"DomainName": "heylomol",
"Status": "available",
"Command": "create",
"Period": 1,
"IsFee": false,
"Price": "11.2900",
"Currency": "USD",
"Reason": null
}
],
"tayad.net": [
{
"TLD": "net",
"DomainName": "tayad",
"Status": "available",
"Command": "create",
"Period": 1,
"IsFee": false,
"Price": "13.9900",
"Currency": "USD",
"Reason": null
}
]
}
}