Validate DMARC (Domain-based Message Authentication, Reporting & Conformance) records. Returns policy, alignment settings, and reporting addresses.
{
"status": "ok",
"error": null,
"data": {
"host": "paypal.com",
"dmarcHost": "_dmarc.paypal.com",
"hasDmarc": true,
"dmarc_record": "v=DMARC1; p=reject; rua=mailto:[email protected]; ruf=mailto:[email protected]",
"rua": {
"email": "[email protected]",
"domain": "rua.agari.com",
"valid": true
},
"ruf": {
"email": "[email protected]",
"domain": "ruf.agari.com",
"valid": true
},
"v": "DMARC1",
"p": "reject",
"valid": true
}
}






Validate DMARC (Domain-based Message Authentication, Reporting & Conformance) records. Returns policy, alignment settings, and reporting addresses.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/dmarcvalidator?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ host, dmarcHost, hasDmarc, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseValidate DMARC records to assess email security posture and identify gaps.
Regularly validate DMARC across all domains and track progress toward full enforcement.
Copy a working request, or install a typed SDK. Same endpoint, same key.
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);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog