Skip to Content

Company News

Find recent comapny news by doing a websearch and scrape.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
pipe0-get-company-news-summary
P
pipe0
Always
Managed

1.00 credits

Input Fields

string
company_website_url

Output Fields

string
company_news_summary

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production'},
    pipes: [{pipe_id: 'company:newssummary:website@1'}],
    input: [{id: '1', company_website_url: 'https://pipe0.com'}]
  })
};

fetch('https://api.pipe0.com/v1/pipes/run', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));