query_domain
Retrieve comprehensive DNS records for any domain including subdomains, mail servers, and infrastructure details through DNSDumpster API queries.
Instructions
Query DNSDumpster for all DNS records related to a domain.
Args: domain: The domain name to query (e.g., example.com) ctx: Request context
Returns: JSON string containing all DNS records
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"title": "Domain",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
}