cURL
curl --request POST \ --url https://api.migma.ai/v1/emails/validate/compatibility \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "html": "<string>", "clients": [ "<string>" ] } '
{ "success": true, "data": { "clientIssues": [ { "client": "<string>", "issues": [ {} ], "warnings": [ {} ] } ], "summary": { "totalErrors": 123, "totalWarnings": 123, "compatibilityScore": 123 }, "supportedClients": [ "<string>" ], "metadata": { "processingTime": 123, "clientsTested": 123 } } }
Test email HTML across 40+ email clients and get detailed compatibility report. Identifies rendering issues across Gmail, Outlook, Apple Mail, and more.
JWT Bearer token authentication. Use 'Authorization: Bearer ' where the JWT token is obtained from the login endpoint.
Email HTML content to validate
Specific email clients to test (optional, defaults to all 40+ clients)
Compatibility check completed
Show child attributes
Issues found for each email client
Overall compatibility score (0-100)
Was this page helpful?