Skip to Content

Company finder (websets)

Perform detailed, complex company searches for queries that require a high level of accuracy.

ProviderBilling ModeCredentialsCost per result
Docs
P
Exa
Per Result
Managed, User

2.00 credits

Output Fields

string
company_name
string
company_industry
string
company_description
string
headcount
json
exa_match_evaluation
  Disabled by default

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production', dedup: {strategy: 'default'}},
    searches: [
      {
        search_id: 'companies:profiles:exa@1',
        config: {limit: 10, filters: {query: 'Top AI labs in the United States.'}}
      }
    ]
  })
};

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