Skip to Content

Employee finder

Search for employees of a given company using by the companies website URL.

ProviderBilling ModeCredentialsCost per result
Docs
P
LeadMagic
Per Result
Managed, User

0.05 credits

Output Fields

string
first_name
string
last_name
string
job_title
string
company_website_url
string
company_name

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production', dedup: {strategy: 'default'}},
    searches: [
      {
        search_id: 'people:employees:leadmagic@1',
        config: {limit: 20, filters: {company_website_url: 'https://pipe0.com'}}
      }
    ]
  })
};

fetch('https://api.pipe0.com/v1/searches/run', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));