Help Center & API Documentation
Integrate Mailsfinder swiftly. Learn authentication, endpoints, limits, and best practices to find and verify emails reliably.
Mailsfinder offers two core endpoints: Email Finder to discover likely work emails based on name and domain, and Email Verification to validate deliverability, mailbox existence, and risk signals. Use your API key to authenticate requests and process at scale.
Authenticate by passing your API key via the Authorization header. Keep your keys secret and rotate regularly.
curl -X POST "https://server.mailsfinder.com/api/access-key/email/findEmail" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"first_name": "John",
"last_name": "Doe",
"domain": "example.com"
}'
curl -X POST "https://server.mailsfinder.com/api/access-key/email/findBulkEmail" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"domain": "example.com",
"first_name": "John",
"last_name": "Doe"
},
{
"domain": "example.com",
"first_name": "Jane",
"last_name": "Smith"
}
]'
{
"email": "jane.doe@acme.com",
"confidence": 0.92,
"pattern": "first.last",
"sources": ["linkedin", "company_site"],
"meta": { "discovered_at": "2026-01-04T10:15:00Z" }
}
curl -X POST "https://server.mailsfinder.com/api/access-key/email/verifyEmail" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "john.doe@example.com"
}'
curl -X POST "https://server.mailsfinder.com/api/access-key/email/verifyBulkEmail" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"emails": [
"john.doe@example.com",
"jane.smith@example.com"
]
}'
You can generate your API key directly from your dashboard at app.mailsfinder.com after signing in. Once created, use this key to authenticate all API requests.
Our Email Finder provides up to 99% accuracy, using multiple verification layers including domain checks, MX records, and SMTP validation to ensure reliable results.
Yes, we fully support bulk email verification, allowing you to verify multiple email addresses in a single API request efficiently.
Rate limits are applied based on your API key and subscription plan. Each request consumes credits, and limits help ensure fair usage and system stability. If you exceed the allowed rate, requests may be temporarily throttled until limits reset.
Ready to integrate? Start using our API today.
Build workflows that find and verify emails reliably—clean lists, higher deliverability, and more replies.