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

name
string, required
company_name
string, required
location_hint
string, optional

Output Fields

profile_url
string

const result = await fetch("https://api.pipe0.com/v1/pipes/run", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    pipes: [{ 
      pipe_id: "people:profileurl:name@1", 
    }],
    input: []
  })
});