latestOpenAPI 3.0.32026-08-08360156.4 KB

ae7fddf16bf9

Misc

Find employees

Find one or more employees using the company website and job title.

This endpoint uses 1 credit per found contact.

This endpoint does NOT return an email.

post/api/search/employees

Request body

websitestring required

company website

job_titlesstring[] required

target job titles (max 10)

countinteger

Number of contacts to return (max 5). Default 1.

Example request

{
  "website": "google.com",
  "job_titles": [
    "Software Engineer",
    "CEO"
  ],
  "count": 2
}

Response

namestring
linkedinUrlstring
companyWebsitestring
companyNamestring
jobTitlestring

Example response

[
  {
    "name": "John Done",
    "linkedinUrl": "https://www.linkedin.com/in/john-doe/",
    "companyWebsite": "https://www.findymail.com",
    "companyName": "Findymail",
    "jobTitle": "Software Engineer"
  }
]