Email Finder
Discover verified professional email addresses. Enter a person's name and their company — we'll find the correct email format and verify deliverability.
Single Search
2 credits per searchBatch Search
CSVUpload a CSV or Excel file with name and company columns. Each row costs 2 credits.
People Finder
Identify key people at any company by job title. We research company leadership and staff to find the right contacts.
Single Search
3 credits per searchBatch Search
CSVUpload a CSV or Excel file with company and title columns. Each row costs 3 credits.
Email Checker
Verify whether email addresses are deliverable before you send. Checks MX records, mailbox existence, and catch-all status.
Single Verification
1 credit per checkBatch Verification
1 credit per emailEnter one email per line.
History
Browse your past searches and results from this account.
Select a type and click Refresh to load results.
Team
Manage your team, invite members, and share a credit pool.
Loading...
Credits
Purchase credits to power your searches. Different tools use different amounts of credits.
Credit Costs
Buy Credits
Secure payment powered by Stripe. Credits never expire.
Analytics
Activity
Last 14 daysLoading...
Usage Breakdown
This month| Tool | Searches | Credits used | Cost per search |
|---|---|---|---|
| Email Finder | — | — | 2 credits |
| People Finder | — | — | 3 credits |
| Email Checker | — | — | 1 credit |
| Total | — | — |
Settings
Manage API connections and application cache.
Appearance
API Access
Generate API keys to use Name To Inbox programmatically. Keys inherit your credit balance.
Loading keys...
API documentation
Authentication: Include your API key in the X-API-Key header with every request.
Rate limit: 60 requests per minute per account.
Email Finder (2 credits) — Find a person's email:
POST /findEmail
{
"personName": "Tim Cook",
"company": "Apple",
"linkedinUrl": "https://linkedin.com/in/..." // optional
}
People Finder (3 credits) — Find who holds a role:
POST /findPerson
{
"company": "Apple",
"title": "VP Marketing"
}
Email Checker (1 credit) — Verify an email:
POST /verifyEmail
{ "email": "tim@apple.com" }
Example curl:
curl -X POST https://findemailfn-YOUR_ID.us-central1.run.app \
-H "X-API-Key: efk_your_key_here" \
-H "Content-Type: application/json" \
-d '{"personName":"Tim Cook","company":"Apple"}'
Batch endpoints: /findEmailBatch and /findPersonBatch accept {"csvContent": "..."}. Credits charged per row.
Response format: JSON with deliverable, risky arrays, domain, status, and confidence score (0-100).
API Connections
Verify that the server-side services are configured and responding correctly.