Check a domain
This endpoint allows you to check a domain name
Endpoint
GET /registrar/v1/domains/{domain}/check
Parameters
| Name | Location | Required | Type | Description |
|---|---|---|---|---|
| domainName | URL | Yes | String | The domain name |
Response
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"
}
]
}