Verify DNS changes have propagated globally before completing migrations.
During DNS migrations, you need to confirm changes have propagated worldwide before decommissioning old infrastructure. Manual checking is tedious and unreliable.
Use our DNS Propagation API to automatically check propagation from multiple global locations. Set up automated monitoring to alert you when propagation is complete.
const res = await fetch("https://api.apiverve.com/v1/dnspropagation?domain=google.com&type=A", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);