Skip to Content

Funding History

Get funding history of a company with detailed information on investors and size of rounds.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
get-company-funding-leadmagic
P
LeadMagic
On Success
Managed, User

2.00 credits

Input Fields

Field group

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

Output Fields

json
funding_history
number
funding_total_usd
json
leadmagic_acquisition_history
json
leadmagic_company_news_list
json
leadmagic_competitor_list

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production'},
    pipes: [{pipe_id: 'company:funding:leadmagic@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));