cURL
curl --request POST \ --url https://api.example.com/api/validate_email/ \ --header 'Content-Type: application/json' \ --data ' { "text_snippet": "<string>" } '
{ "job_id": "email_abc123", "status": "accepted" }
Submit email content for validation against all rule packs
accepted
curl -X POST "https://{api-url}/api/validate_email/" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "text_snippet": "Dear Investor,\n\nI am excited to share that our fund has achieved exceptional returns..." }'