CompanyGetIdentity@1
Find Website and LinkedIn URL
Retrieve a company's official website and LinkedIn profile using its name.
Company Info
Website
LinkedIn
Provider Options
Provider | Credentials | Cost per record |
---|---|---|
P pipe0 | Managed | 0.3 credits |
Input Fields
companyName
string
Required
Output Fields
companyLinkedInProfileUrl
string
companyWebsiteURL
string
Code Example
const result = await fetch("https://api.pipe0.com/v1/run/sync", {
method: "POST",
headers: {
"Authorization": `Bearer ${API_KEY}`,
},
body: JSON.stringify({
pipes: [{
name: "CompanyGetIdentity@1",
// passing a config is optional
config: {
"inputFields": {
"companyName": {
"alias": ""
}
},
"outputFields": {
"companyLinkedInProfileUrl": {
"alias": ""
},
"companyWebsiteURL": {
"alias": ""
}
}
}
}],
input: []
})
});
Last updated on