List TLDs
GET /radar/tlds
Retrieves a list of TLDs.
Responses
200 Successful response.
Data is at
body["result"]
{
"tlds": [
{
"manager": "*string*",
"tld": "*string*",
"type": "*string*"
}
]
}400 Bad request.
{
"errors": [
{
"message": "*string*"
}
],
"result": {},
"success": "*boolean*"
}Get TLD details
GET /radar/tlds/{tld}
Retrieves the requested TLD information.
Responses
200 Successful response.
Data is at
body["result"]
{
"tld": {
"manager": "*string*",
"tld": "*string*",
"type": "*string*"
}
}404 Not found.
{
"error": "*string*"
}