๐ŸŽ‰ Limited time โ€” 20% off all plans. View pricing โ†’
Docs ยท Intelligence

DNS intelligence

Email provider, nameserver provider, SPF/DMARC, tech inference.

POST /v1/dns/intelligence

DNS lookup plus analysis. Detects the email provider, nameserver provider, SPF and DMARC presence, and inferred technology footprint.

Parameters

Name Type Required Default Description
domain string yes โ€” Domain to analyze.

Request

curl -X POST https://api.qcrawl.com/v1/dns/intelligence \
  -H "Authorization: Bearer osk_..." \
  -d '{"domain": "anthropic.com"}'

Response

{
  "status": "success",
  "domain": "anthropic.com",
  "email_provider": "Google Workspace",
  "nameserver_provider": "Cloudflare",
  "has_spf": true,
  "has_dmarc": true,
  "technologies": ["SPF","Stripe","Atlassian"]
}

Related