CompanyGetOverview@1
Get Company Overview
Get a company summary, and high-level business and financial information.
Company Info
Website
LinkedIn
Financial Data
Provider Options
Provider | Credentials | Cost per record |
---|---|---|
P pipe0 | Managed | 1 credits |
Input Fields
Field Group
At Least One Required
companyWebsiteURL
string
companyLinkedInProfileUrl
string
Output Fields
companyDescription
string
companyIndustry
string
companyRegion
string
headcount
string
estimatedRevenue
string
foundedYear
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: "CompanyGetOverview@1",
// passing a config is optional
config: {
"inputFields": {
"companyWebsiteURL": {
"alias": ""
},
"companyLinkedInProfileUrl": {
"alias": ""
}
},
"outputFields": {
"companyDescription": {
"alias": ""
},
"companyIndustry": {
"alias": ""
},
"companyRegion": {
"alias": ""
},
"headcount": {
"alias": ""
},
"estimatedRevenue": {
"alias": ""
},
"foundedYear": {
"alias": ""
}
}
}
}],
input: []
})
});
Last updated on