Skip to Content

LinkedIn URL From Name

Find the LinkedIn profile URL by using the prospect's name as input.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
pipe0-get-profileurl-from-name
P
pipe0
Always
Managed

0.60 credits

Input Fields

string
name
string
company_name
string
location_hint(optional)

Output Fields

string
professional_profile_url

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production'},
    pipes: [{pipe_id: 'people:professionalprofileurl:name@1'}],
    input: [{id: '1', name: 'John', company_name: 'Pipe0', location_int: 'Berlin'}]
  })
};

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