Skip to Content

Company Technology Stack

Identifies all technologies and frameworks powering a given website.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
builtwith-get-technology-stack
P
BuiltWith
Always
Managed, User

2.00 credits

Input Fields

string
company_website_url

Output Fields

json
technology_list
json
technology_match_builtwith
number
spending_trend

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