Skip to content

Findymail API

Build GTM Workflows With A
Robust & Accurate B2B Data API

Find verified emails, verify addresses, and discover leads programmatically with our simple REST API.

Meet Your New Go-To B2B Data Infrastructure

Everything you need to build powerful sales and marketing workflows.

Email Finder API

Find someone's verified email from their name and company. Uses 1 credit if found.

Learn more

POST

/api/search/name

Request
{
  "name": "Elon Musk",
  "domain": "tesla.com"
}
Response 200 OK
{
  "contact": {
    "name": "Elon Musk",
    "email": "elon@tesla.com",
    "domain": "tesla.com"
  }
}

Email Verifier API

Verify any email address for deliverability. Returns verification status and email provider.

Learn more

POST

/api/verify

Request
{
  "email": "john@example.com"
}
Response 200 OK
{
  "email": "john@example.com",
  "verified": true,
  "provider": "Google"
}

Lead Finder API

Find companies and contacts using natural language queries. Build targeted lead lists automatically.

POST

/api/intellimatch/search

Request
{
  "query": "SaaS companies in US",
  "limit": 100,
  "config": {
    "find_contact": true,
    "find_email": true
  }
}
Response 200 OK
{
  "data": [{
    "name": "Acme Corp",
    "domain": "acme.com",
    "contact_email": "john@acme.com"
  }]
}

Phone Finder API

Find direct phone numbers from LinkedIn profiles. Uses 10 credits if found. GDPR compliant (excludes EU).

POST

/api/search/phone

Request
{
  "linkedin_url": "https://linkedin.com/in/johndoe"
}
Response 200 OK
{
  "phone": "+1234567890"
}

Company Enrichment API

Get company information from LinkedIn URL, domain, or name. Uses 1 credit per successful response.

POST

/api/search/company

Request
{
  "domain": "stripe.com"
}
Response 200 OK
{
  "name": "Stripe",
  "domain": "stripe.com",
  "company_size": "1001-5000",
  "industry": "Financial Services"
}

Find People API

Find employees at a company by website and job title. Uses 1 credit per contact found. Returns LinkedIn profiles.

POST

/api/search/employees

Request
{
  "website": "google.com",
  "job_titles": ["CEO"],
  "count": 2
}
Response 200 OK
[{
  "name": "John Doe",
  "linkedinUrl": "linkedin.com/in/john",
  "jobTitle": "CEO"
}]

Reverse Email Lookup API

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

Request
{
  "email": "john@example.com",
  "with_profile": true
}
Response 200 OK
{
  "fullName": "John Doe",
  "headline": "CEO at Example",
  "jobTitle": "CEO",
  "companyName": "Example Inc"
}

Simple Bearer Authentication

All API requests require a Bearer token. Get your API key instantly from your dashboard after signing up.

  • 300 concurrent requests by default
  • Webhook support for async operations
  • JSON request and response format
  • 99%+ uptime SLA

HEADER

Authorization: Bearer

Example cURL request
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"
  }'
Nick G.
"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!"
Nick G.
Managing Director

Ready to start building?

Sign up for free and get your API key in seconds. No credit card required.