<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Temirlan Basitov</title>
    <description>The latest articles on DEV Community by Temirlan Basitov (@temirlan_basitov_138f94c8).</description>
    <link>https://dev.to/temirlan_basitov_138f94c8</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3480395%2Ffa0db60c-e7e4-49e3-92f7-bdbcc395b5a9.jpg</url>
      <title>DEV Community: Temirlan Basitov</title>
      <link>https://dev.to/temirlan_basitov_138f94c8</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/temirlan_basitov_138f94c8"/>
    <language>en</language>
    <item>
      <title>🚀 How I Built an Email Verifier API in Java (And Deployed It for Free)</title>
      <dc:creator>Temirlan Basitov</dc:creator>
      <pubDate>Sat, 06 Sep 2025 20:14:24 +0000</pubDate>
      <link>https://dev.to/temirlan_basitov_138f94c8/how-i-built-an-email-verifier-api-in-java-and-deployed-it-for-free-jn9</link>
      <guid>https://dev.to/temirlan_basitov_138f94c8/how-i-built-an-email-verifier-api-in-java-and-deployed-it-for-free-jn9</guid>
      <description>&lt;p&gt;Hey Devs 👋&lt;/p&gt;

&lt;p&gt;I recently built a simple but powerful Email Verifier API using Java and Spring Boot — and deployed it for free using Railway. If you’re building a SaaS, newsletter, or signup form, you know how important it is to filter out fake or invalid emails. So I decided to create my own solution.&lt;/p&gt;

&lt;p&gt;Here’s a quick breakdown of how I did it 👇&lt;/p&gt;

&lt;p&gt;🛠️ Tech Stack&lt;br&gt;
Java 17&lt;/p&gt;

&lt;p&gt;Spring Boot&lt;/p&gt;

&lt;p&gt;Apache Commons Validator (for syntax checks)&lt;/p&gt;

&lt;p&gt;DNS MX Record Lookup (to verify domain)&lt;/p&gt;

&lt;p&gt;Railway (for hosting)&lt;/p&gt;

&lt;p&gt;⚙️ How It Works&lt;br&gt;
The API accepts a POST request with an email address and returns a JSON response like:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;{&lt;br&gt;
  "email": "test@example.com",&lt;br&gt;
  "isValidSyntax": true,&lt;br&gt;
  "hasMXRecord": true,&lt;br&gt;
  "isDisposable": false&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;🔗 Try It Out&lt;br&gt;
You can test the API here: &lt;a href="https://temirlanbasitov.github.io/email-verifier-landing/" rel="noopener noreferrer"&gt;https://temirlanbasitov.github.io/email-verifier-landing/&lt;/a&gt; &lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
