Platform
Deliverability & analytics
A reputation score with fixes, and the full engagement funnel.
Deliverability
A 0–100 reputation score computed from your real sending outcomes, with specific fixes and the exact DNS records to publish.
GET
/v1/deliverabilitydeliverability.ts
const rep = await mail.deliverability.get();
console.log(rep.score, rep.grade); // 96 "A"Analytics
The engagement funnel — sent → delivered → opened → clicked — platform-wide, or per campaign and per sequence.
GET
/v1/analyticsanalytics.ts
const stats = await mail.analytics.get({ windowDays: 30 });
console.log(stats.rates.open, stats.rates.click);