Find information on a person based on their LinkedIn profile URL.
| Billable Operation | Provider | Billing Mode Docs | Connection Docs | Cost per operation Docs |
|---|---|---|---|---|
amplemarket-person-match | P Amplemarket | n/a | Managed, User | n/a |
const options = {
method: 'POST',
headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
body: JSON.stringify({
pipes: [
{
pipe_id: 'people:match:amplemarket@1',
connector: {
strategy: 'first',
connections: [{type: 'vault', connection: 'amplemarket_123'}]
}
}
],
input: [{id: '1', profile_url: 'https://linkedin.com/li/johndoe'}]
})
};
fetch('https://api.pipe0.com/v1/pipes/run', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));