
I built a tool that catches disposable email signups in real time, by checking the live mail servers instead of a stale block list
Full disclosure: I built this.
Every free disposable email checker leans on a static list of throwaway domains. The problem is that throwaway inboxes spin up new domains faster than any list keeps up, so the newest ones sail straight through.
IsItDisposable takes a different route. It inspects the live mail servers behind an address in real time, so it catches fresh throwaway disposable emails that lists have never seen. It returns a verdict in milliseconds, and you add it with one line of JavaScript on a form, or call a REST API from your backend.
One thing I was careful about: it flags privacy relays like Apple Hide My Email, but never blocks them, so real people are not shut out.
You can paste any address into the demo on the homepage and watch the verdict land. Would love feedback on the demo and the docs.