Skip to Content

Company Overview

Find high-level business and financial information like company description, estimated revenue, and headcount.

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

1.00 credits

Input Fields

Field group

At Least one of the following fields is required
string
company_website_url
string
company_profile_url

Output Fields

string
company_description
string
company_industry
string
company_region
string
estimated_revenue
string
founded_year
string
headcount
string
company_name

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

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