CompanyGetNewsSummary:Website@1
Company News Aggregator
Extracts and summarizes recent news items from a company's website.
News
Company Info
Provider Options
Provider | Credentials | Cost per record |
---|---|---|
P pipe0 | Managed | 1 credits |
Input Fields
companyWebsiteURL
string
Required
Output Fields
companyNewsSummary
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: "CompanyGetNewsSummary:Website@1",
// passing a config is optional
config: {
"inputFields": {
"companyWebsiteURL": {
"alias": ""
}
},
"outputFields": {
"companyNewsSummary": {
"alias": ""
}
}
}
}],
input: []
})
});
Last updated on