Test your email content for spam triggers before sending. Get a deliverability score (0-100, higher is better) with specific issues and suggestions for improvement.
Use this to:
- Check emails before sending campaigns
- Improve inbox placement rates
- Identify problematic content patterns
Rate Limit: Subject to monthly quota (default: 1000 checks/month)
Security
ApiKeyAuth
HTML email content
Example:"<html><body><h1>Hello!</h1><p>Check out our latest updates...</p></body></html>"
- US Data Centerhttps://api.mailerlogic.net/api/v1/content-score
- EU Data Center (coming soon)https://eu-api.mailerlogic.net/api/v1/content-score
curl -i -X POST \
https://api.mailerlogic.net/api/v1/content-score \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"subject": "Your Monthly Newsletter",
"html": "<html><body><h1>Hello!</h1><p>Check out our latest updates...</p></body></html>",
"text": "Hello! Check out our latest updates..."
}'Content analyzed successfully
Response
{ "status": "ok", "score": 92, "risk_level": "low", "matches": [ { … } ], "suggestions": [ "Reduce capitalization in subject line", "Add a plain-text version of your email" ], "usage": { "used": 145, "limit": 1000, "period": "monthly" } }