get_ns_records
Retrieve nameserver records for any domain to identify DNS infrastructure and hosting details using DNSDumpster API.
Instructions
Get NS (nameserver) records for a domain.
Args: domain: The domain name to query (e.g., example.com) ctx: Request context
Returns: Formatted string containing NS records
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"title": "Domain",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
}