Assess DMARC implementation as part of security reviews.
Organizations don't know if their email authentication is properly configured or protecting against spoofing.
Validate DMARC records to assess email security posture and identify gaps.
const res = await fetch("https://api.apiverve.com/v1/dmarcvalidator?domain=paypal.com", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);