fatihai-email-verify
v1.0.0
Published
Fast and accurate email verification API client. Validate emails in real-time with 99.9% accuracy.
Maintainers
Readme
FatihAI Email Verification
Fast and accurate email verification API client for Node.js.
Features
- ✅ Real-time validation (<100ms)
- ✅ Syntax, domain, MX checks
- ✅ Disposable email detection
- ✅ 99.9% accuracy
- ✅ TypeScript support
Installation
npm install fatihai-email-verifyQuick Start
const FatihAI = require('fatihai-email-verify');
const client = new FatihAI('your_api_key');
// Verify single email
const result = await client.verify('[email protected]');
console.log(result);
// { valid: true, email: '...', checks: { syntax: true, domain: true, mx: true, disposable: false } }
// Simple boolean check
const isValid = await client.isValid('[email protected]');
console.log(isValid); // true or false
// Check if disposable
const isDisposable = await client.isDisposable('[email protected]');
console.log(isDisposable); // truePricing
| Plan | Verifications/month | Price | |------|---------------------|-------| | Starter | 1,000 | $29/mo | | Growth | 10,000 | $59/mo | | Business | 50,000 | $99/mo |
Get API Key
Sign up at fatihai.app
Links
License
MIT
