Developer Portal
Build email trust into anything
REST endpoints for email, domain, link and attachment scanning. Generate a real key and try a live request.
API keys
Sign in to generate real, hashed API keys tied to your account.
Endpoints
- POST
/api/scan/emailFull email trust scan — verdict + all sub-scores.
- POST
/api/scan/domainSender auth (SPF/DKIM/DMARC/BIMI/MTA-STS) + impersonation.
- POST
/api/scan/linkInspect one or more URLs for risk.
- POST
/api/scan/attachmentStatic attachment analysis (multipart or JSON).
- GET
/api/report/:idRetrieve a previously computed scan report.
- GET
/api/usageQuota, keys and usage by endpoint.
Try it live
Real request to POST /api/scan/domain (live DNS).
Authentication
# Pass your key as a Bearer token or x-api-key header
curl https://afriemail.com/api/scan/email \
-H "Authorization: Bearer YOUR_KEY" \
-H "content-type: application/json" \
-d '{ "email": "From: ...\nSubject: ...", "domain": "example.com" }'