Skip to Content

Find lead profiles with Icypeas

Icypeas offers a vast, general-purpose lead database, allowing you to fetch lead profiles of any size.

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

0.40 credits

Output Fields

string
company_profile_url
string
company_website_url
string
job_title
string
profile_headline
string
profile_url
json
icypeas_person_match
  Enabled by default

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:profiles:icypeas@1',
        config: {
          limit: 100,
          filters: {
            currentJobTitle: {include: ['Software Engineer']},
            location: {include: ['San Francisco'], exclude: ['New York']},
            keyword: {include: ['Scalar'], exclude: ['Python']}
          }
        }
      }
    ]
  })
};

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