Skip to Content

Find Company Identity

Retrieve attributes to uniquely identity a company. This includes its website URL, LinkedIn profile, and cleaned name.

ProviderBilling Mode
Docs
CredentialsCost per record
Docs
P
pipe0
Always
Managed

0.3 credits

Input Fields

company_name
string, required

Output Fields

company_social_url
string
company_website_url
string
cleaned_company_name
string

const result = await fetch("https://api.pipe0.com/v1/run/sync", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${API_KEY}`,
  },
  body: JSON.stringify({
    pipes: [{ 
      pipe_id: "company:identity@1", 
    }],
    input: []
  })
});