Skip to main content

Check a domain

This endpoint allows you to check a domain name

Endpoint

GET /registrar/v1/domains/{domain}/check

Parameters

NameLocationRequiredTypeDescription
domainNameURLYesStringThe domain name

Response

A Domain Check

Example Request

GET /registrar/v1/domains/exemple.com/check"
Content-Type: application/json

Example Response

{
"message": "Ok",
"data": [
{
"available": true,
"dpmlExists": true,
"premium": true,
"trademarkExists": true,
"reserved": true,
"collision": true,
"launchDate": "2027-04-12"
}
]
}