Skip to Content

Company match

Find brand data like logos, colors, and social links via the Logo.dev API.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
logodev-company-describe
P
Logo.dev
On Success
Managed, User

0.10 credits

Input Fields

string
company_website_url

Output Fields

string
company_profile_url
json
logodev_describe_match
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:match:logodev@1'}],
    input: [{id: '1', company_website_url: 'https://acme.com'}]
  })
};

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