Last updated 4 days ago
/verify
The email address to verify
curl -L \ --request POST \ --url 'https://noparam.com/api/v1/verify' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \ --header 'Content-Type: application/json' \ --data '{ "email": "text" }'
{ "email": "text", "details": { "syntax": true, "domain_exists": true, "mx_records": true, "mailbox_exists": true, "disposable": true, "role_based": true, "suggestions": [ "text" ] }, "score": 1, "status": "VALID", "duration_ms": 1 }
/verify/bulk
List of email addresses to verify
curl -L \ --request POST \ --url 'https://noparam.com/api/v1/verify/bulk' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \ --header 'Content-Type: application/json' \ --data '{ "emails": [ "text" ] }'
{ "results": [ { "email": "text", "details": { "syntax": true, "domain_exists": true, "mx_records": true, "mailbox_exists": true, "disposable": true, "role_based": true, "suggestions": [ "text" ] }, "score": 1, "status": "VALID", "duration_ms": 1 } ] }