Fast, accurate email validation & deliverability checks.
Validate before you hit “Send”.
Stop throwaway in registrations & marketing lists.
Better email hygiene = higher inbox placement.
POST https://api.yeb.to/v1/mailchecker
Parameter | Type | Req. | Description |
---|---|---|---|
api_key |
string | yes | Your API key |
email |
string | yes | Email to validate |
curl -X POST https://api.yeb.to/v1/mailchecker \
-H "Content-Type: application/json" \
-d '{
"api_key": "YOUR_KEY",
"email": "[email protected]"
}'
{
"email": "[email protected]",
"trusted": "high",
"score": 7,
"risk": "low",
"knownProvider": true,
"recommend": []
}
{"error":"Missing \"email\" parameter","code":422}
Code | Description |
---|---|
200 Success | Request processed OK. |
400 Bad Request | Input validation failed. |
401 Unauthorized | Missing / wrong API key. |
403 Forbidden | Key inactive or not allowed. |
429 Rate Limit | Too many requests. |
500 Server Error | Unexpected failure. |