Verify domain ownership by checking for verification TXT records.
Many services require proving domain ownership before activation. Manually checking DNS records is tedious and error-prone.
Automate domain verification by querying TXT records with our API. Check if the required verification token exists before proceeding with service setup.
const res = await fetch("https://api.apiverve.com/v1/dnslookup?domain=myspace.com", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);