
DNS Propagation Checker
API
Query the same hostname against ~10 public resolvers across the world (Cloudflare, Google, Quad9, OpenDNS, etc.) and report which ones see the same answer. Useful right after a DNS change.
Free. No API key. CORS-enabled. Rate-limited per IP.
https://api.domainee.dev/v1/tools/dns-propagation-checker?host=domainee.devQuery the same hostname against ~10 public resolvers across the world (Cloudflare, Google, Quad9, OpenDNS, etc.) and report which ones see the same answer. Useful right after a DNS change.
Free. No API key required. CORS-enabled. Rate-limited per IP at 30/min and 500/day.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
hostrequired | query | string | Hostname to query across resolvers. example: domainee.dev |
type | query | A | AAAA | CNAME | MX | TXT | NS | Record type to check. Defaults to A. |
Example request
curl -s "https://api.domainee.dev/v1/tools/dns-propagation-checker?host=domainee.dev&type=A" | jqExample response
{
"ok": true,
"data": {
"domain": "domainee.dev",
"type": "A",
"consistent": true,
"results": [
{
"resolver": "Cloudflare (1.1.1.1)",
"values": [
"35.165.194.233"
]
},
{
"resolver": "Google (8.8.8.8)",
"values": [
"35.165.194.233"
]
}
]
}
}Other languages
const res = await fetch("https://api.domainee.dev/v1/tools/dns-propagation-checker?host=domainee.dev&type=");
const { ok, data } = await res.json();import requests
r = requests.get(
"https://api.domainee.dev/v1/tools/dns-propagation-checker",
params={"host":"domainee.dev","type":""},
)
data = r.json()["data"]Rate limits & errors
- 30 requests/minute and 500 requests/day per IP. Exceeding either returns HTTP 429 with a
Retry-Afterheader. - All responses are JSON with the envelope
{ "ok": true, "data": {...} }on success or{ "ok": false, "error": { "code", "message" } }on failure. codevalues are stable; safe to switch on programmatically.messageis human-friendly and may change.
Try the dns propagation checker in your browser →
No code, no curl. Type a domain, get a result.
Documentation for /v1/tools/dns-propagation-checker →
All parameters, error codes, edge cases.
Need more than free?
Domainee's full platform: Custom Domains API, MCP for AI agents, Buy-a-Domain API, and 50 customer domains free forever. The same engineering team that built these free APIs.