Fast and accurate email verification API client
Project description
FatihAI Email Verification
Fast and accurate email verification API client for Python.
Features
- ✅ Real-time validation (<100ms)
- ✅ Syntax, domain, MX checks
- ✅ Disposable email detection
- ✅ 99.9% accuracy
- ✅ Type hints included
Installation
pip install fatihai-email-verify
Quick Start
from fatihai_email_verify import FatihAIEmailVerify
client = FatihAIEmailVerify('your_api_key')
# Verify single email
result = client.verify('test@example.com')
print(result)
# {'valid': True, 'email': '...', 'checks': {'syntax': True, 'domain': True, 'mx': True, 'disposable': False}}
# Simple boolean check
is_valid = client.is_valid('test@example.com')
print(is_valid) # True or False
# Check if disposable
is_disposable = client.is_disposable('temp@mailinator.com')
print(is_disposable) # True
# Bulk verification
emails = ['a@example.com', 'b@example.com']
results = client.verify_bulk(emails)
Pricing
| 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
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fatihai_email_verify-1.0.0.tar.gz.
File metadata
- Download URL: fatihai_email_verify-1.0.0.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bc62701e7e68a1b446c2d9f0002834d53fbc81afcb18e968fb1c2c0cc8d5e26
|
|
| MD5 |
c150a4afbacade1567faac23fbaeac58
|
|
| BLAKE2b-256 |
3b3e448d1a83e8020a2ac880774b7b34545ed6ef82b1057e24d47bde15e1784d
|
File details
Details for the file fatihai_email_verify-1.0.0-py3-none-any.whl.
File metadata
- Download URL: fatihai_email_verify-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c385934fdb773151549f6865d87db4bf19f163f28ef18e92fe28f6cd7566ed4b
|
|
| MD5 |
16c31c2775b94a9a9baa2b1d42939162
|
|
| BLAKE2b-256 |
2276fbf13cef5d8d89d3001dae021f9c96fb6cbe23240393b2a23c80f1932b35
|