CompanyGetProfileBuiltWith@1
Company Tech Profile
Retrieves technology-focused financial and operational data for an organization.
Company Info
Financial Data
Provider Options
Provider | Credentials | Cost per record |
---|---|---|
P BuiltWith | Managed User | 1.8 credits |
Input Fields
companyWebsiteURL
string
Required
Output Fields
companyName
string
headcount
string
numberOfSocialFollowers
number
monthlyTechSpendInUSD
number
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: "CompanyGetProfileBuiltWith@1",
// passing a config is optional
config: {
"inputFields": {
"companyWebsiteURL": {
"alias": ""
}
},
"outputFields": {
"companyName": {
"alias": ""
},
"headcount": {
"alias": ""
},
"numberOfSocialFollowers": {
"alias": ""
},
"monthlyTechSpendInUSD": {
"alias": ""
}
}
}
}],
input: []
})
});
Last updated on