CompanyGetDescription:Website@1
Company Description Generator
Analyzes website content to create a comprehensive company description.
Company Info
Provider Options
Provider | Credentials | Cost per record |
---|---|---|
P pipe0 | Managed | 0.5 credits |
Input Fields
companyWebsiteURL
string
Required
Output Fields
companyDescription
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: "CompanyGetDescription:Website@1",
// passing a config is optional
config: {
"inputFields": {
"companyWebsiteURL": {
"alias": ""
}
},
"outputFields": {
"companyDescription": {
"alias": ""
}
}
}
}],
input: []
})
});
Last updated on