Search for employees of a given company using by the companies website URL.
Provider | Billing Mode | Credentials | Cost per result Docs |
---|---|---|---|
P LeadMagic | Per Result | Managed, User | 0.05 credits |
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));