Bulk DNS Lookup
dns_bulk_lookupRetrieve DNS records (A, AAAA, MX, NS, SOA, SPF, TXT, CNAME) for up to 100 hostnames in a single request. Each entry includes a status indicator for failed lookups.
Instructions
Retrieve real-time DNS records for up to 100 hostnames at once. Supports A, AAAA, MX, NS, SOA, SPF, TXT, and CNAME record types. The response is an array under 'bulk_dns_info'. If a single hostname fails its entry has status=false while the rest are still returned.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain_names | Yes | List of hostnames or URLs to look up DNS records for (max 100). Example: ["google.com", "cloudflare.com"] | |
| record_types | Yes | List of DNS record types to retrieve. Allowed values: 'A', 'AAAA', 'MX', 'NS', 'SOA', 'SPF', 'TXT', 'CNAME', 'all'. Use ['all'] to retrieve every supported type in one request. |