import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
response = client.dns.zones.check_delegation_status(
"name",
)
print(response.authoritative_name_servers)
Returns delegation status for specified domain name.
This endpoint has rate limit.
GET
/
dns
/
v2
/
analyze
/
{name}
/
delegation-status
Python
Copy
Ask AI
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
response = client.dns.zones.check_delegation_status(
"name",
)
print(response.authoritative_name_servers)