Verify any email address with Theotrade, subscribe for us today!
POST validate.theotracking.com/validate
POST /validate
Content-Type: application/json
{
"email": "user@example.com"
}
{
"email": "user@example.com",
"status_code": 1,
"status": "Verified",
"description": "Valid and active email."
}
You can call this API from the frontend using fetch like this:
fetch("https://validate.theotracking.com/validate", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({ email: "user@example.com" })
})
.then(res => res.json())
.then(data => console.log(data));