Skip to Content

Profile from work email

Find person profile by their work email address.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
crustdata-profile-from-workemail
P
Crustdata
On Success
Managed, User

5.00 credits

Input Fields

string
work_email

Output Fields

json
crustdata_person_match
number
crustdata_profile_match_score

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production'},
    pipes: [{pipe_id: 'people:profile:workemail:crustdata@1'}],
    input: [{id: '1', work_email: 'john@pipe0.com'}]
  })
};

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