<?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: Choi Changhwan</title>
    <description>The latest articles on DEV Community by Choi Changhwan (@choi_changhwan_a8cf9f164f).</description>
    <link>https://dev.to/choi_changhwan_a8cf9f164f</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4012911%2F6d410a47-ebf6-4689-8274-8e6455c57b36.png</url>
      <title>DEV Community: Choi Changhwan</title>
      <link>https://dev.to/choi_changhwan_a8cf9f164f</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/choi_changhwan_a8cf9f164f"/>
    <language>en</language>
    <item>
      <title>I built free email, phone &amp; card validators + a tiny hosted API (with real MX deliverability)</title>
      <dc:creator>Choi Changhwan</dc:creator>
      <pubDate>Fri, 03 Jul 2026 02:02:47 +0000</pubDate>
      <link>https://dev.to/choi_changhwan_a8cf9f164f/i-built-free-email-phone-card-validators-a-tiny-hosted-api-with-real-mx-deliverability-4mkd</link>
      <guid>https://dev.to/choi_changhwan_a8cf9f164f/i-built-free-email-phone-card-validators-a-tiny-hosted-api-with-real-mx-deliverability-4mkd</guid>
      <description>&lt;p&gt;I kept needing the same small checks in side projects — is this email real, is this phone number formatted right, is this card number even valid — so I built a set of free tools and put the same logic behind a tiny hosted API. Sharing in case it saves someone else time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live tools (no signup):&lt;/strong&gt; &lt;a href="https://tools-site.cchkjjdobby.workers.dev" rel="noopener noreferrer"&gt;https://tools-site.cchkjjdobby.workers.dev&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Email&lt;/strong&gt; — syntax, disposable/role detection, typo suggestions (&lt;code&gt;gmial.com&lt;/code&gt; → &lt;code&gt;gmail.com&lt;/code&gt;), and a real &lt;strong&gt;MX-record deliverability&lt;/strong&gt; check (not just regex).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Phone&lt;/strong&gt; — E.164 formatting + country detection for 35+ countries.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Card&lt;/strong&gt; — Luhn checksum + brand detection (Visa, Mastercard, Amex…). Format-level only.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bonus&lt;/strong&gt; — an SEO/readability text analyzer (Flesch, reading time, keyword density) that also works on Korean.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Using the API
&lt;/h2&gt;

&lt;p&gt;One GET call, JSON back, CORS enabled:&lt;/p&gt;

&lt;p&gt;GET &lt;a href="https://verify-api.cchkjjdobby.workers.dev/email?email=test@mailinator.com" rel="noopener noreferrer"&gt;https://verify-api.cchkjjdobby.workers.dev/email?email=test@mailinator.com&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"domain"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"mailinator.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"is_disposable"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"has_mx"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"status"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"disposable"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"deliverable"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Docs: &lt;a href="https://tools-site.cchkjjdobby.workers.dev/docs" rel="noopener noreferrer"&gt;https://tools-site.cchkjjdobby.workers.dev/docs&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Honest limitations
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Card check is &lt;strong&gt;format/Luhn/brand only&lt;/strong&gt; — it does not confirm a card is real or active.&lt;/li&gt;
&lt;li&gt;Phone validation is length/prefix-based, not carrier-level.&lt;/li&gt;
&lt;li&gt;The email MX check estimates deliverability; it can't guarantee an inbox exists.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It runs on Cloudflare Workers with no paid external calls, so the free tier is real and it stays fast.&lt;/p&gt;

&lt;p&gt;Would love feedback — especially: &lt;strong&gt;what would make something like this actually worth paying for in your stack?&lt;/strong&gt; That's the part I'm trying to figure out.&lt;/p&gt;

</description>
      <category>api</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
