DEV Community

scotia1973-bot
scotia1973-bot

Posted on

Real-Time Email Validation with a Free API

One Curl Command

curl "https://api.gadgethumans.com/email-verify?email=user@example.com"
Enter fullscreen mode Exit fullscreen mode

JavaScript

async function validate(email) {
  const r = await fetch(`https://api.gadgethumans.com/email-verify?email=${email}`);
  return (await r.json()).valid;
}
Enter fullscreen mode Exit fullscreen mode

Free - 100/day. api.gadgethumans.com

Top comments (0)