DNS Records
Check DNS records and subdomains
List all DNS Records (subdomains, A, MX, CNAME, TXT, etc) for a domain.
Subdomains are auto-disovered, and hints for more obscure ones can be sent to the API to check for.
Pro tip: use the "Accept" header to retrieve the DNS records in different types:
"application/json" - get DNS Records as JSON objects
"text/plain" - get DNS Records as text lines in 2 modes: wait for full response or read streamed lines as they are discovered (see JavaScript Fetch example below)
GET
https://domains-api.com/domains/{domain}/dns-records
Path Parameters
domain*
String
Valid domain name
Query Parameters
type
String
A, AAAA, MX, etc
apiKey
String
Your API Key
subdomain
String
Extra subdomain to check for
Headers
Authorization
String
Your API Key
Accept
String
- "text/plain" (default): return DNS records as text lines
- "application/json": return DNS records as JSON object
Examples
Last updated
Was this helpful?