Find verified emails, verify addresses, and discover leads programmatically with our simple REST API.
Everything you need to build powerful sales and marketing workflows.
Find someone's verified email from their name and company. Uses 1 credit if found.
Learn morePOST
/api/search/name
{
"name": "Elon Musk",
"domain": "tesla.com"
}{
"contact": {
"name": "Elon Musk",
"email": "elon@tesla.com",
"domain": "tesla.com"
}
}Verify any email address for deliverability. Returns verification status and email provider.
Learn morePOST
/api/verify
{
"email": "john@example.com"
}{
"email": "john@example.com",
"verified": true,
"provider": "Google"
}Find companies and contacts using natural language queries. Build targeted lead lists automatically.
POST
/api/intellimatch/search
{
"query": "SaaS companies in US",
"limit": 100,
"config": {
"find_contact": true,
"find_email": true
}
}{
"data": [{
"name": "Acme Corp",
"domain": "acme.com",
"contact_email": "john@acme.com"
}]
}Find direct phone numbers from LinkedIn profiles. Uses 10 credits if found. GDPR compliant (excludes EU).
POST
/api/search/phone
{
"linkedin_url": "https://linkedin.com/in/johndoe"
}{
"phone": "+1234567890"
}Get company information from LinkedIn URL, domain, or name. Uses 1 credit per successful response.
POST
/api/search/company
{
"domain": "stripe.com"
}{
"name": "Stripe",
"domain": "stripe.com",
"company_size": "1001-5000",
"industry": "Financial Services"
}Find employees at a company by website and job title. Uses 1 credit per contact found. Returns LinkedIn profiles.
POST
/api/search/employees
{
"website": "google.com",
"job_titles": ["CEO"],
"count": 2
}[{
"name": "John Doe",
"linkedinUrl": "linkedin.com/in/john",
"jobTitle": "CEO"
}]Find a LinkedIn profile from an email address. Uses 1 credit without profile data, 2 credits with full profile enrichment.
POST
/api/search/reverse-email
{
"email": "john@example.com",
"with_profile": true
}{
"fullName": "John Doe",
"headline": "CEO at Example",
"jobTitle": "CEO",
"companyName": "Example Inc"
}All API requests require a Bearer token. Get your API key instantly from your dashboard after signing up.
HEADER
Authorization: Bearer
curl -X POST https://app.findymail.com/api/search/name \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "John Doe",
"domain": "example.com"
}'"Findymail provides a simple and powerful API for sales/marketing SaaS providers looking to integrate best in class email enrichment into their platforms. My only regret is not finding about Findymail sooner!"
Sign up for free and get your API key in seconds. No credit card required.