Similar CompaniesAdmin Scope

Notes:
  • Ensure you have installed the required package to use this SDK method.

  • Any browser action or operation that you code using the Browser Logic function, or any browser automation or web scraping task that you perform using any component of Catalyst SmartBrowz is at your own risk. We strongly recommend that you use the SmartBrowz components to perform operations on domains that permit the actions, or with proper approval.
    Additionally, while Catalyst does provide a secure infrastructure to code your functions, any consequence of the logic you code using Catalyst functions is yours alone.

The Similar Companies module allows you to get the list of potential organizations that provide the same or similar services as an organization you specify as the input. Provide the name of the input organization or its website URL as a parameter to the getSimilarCompanies() SDK method.

The smartbrowz reference used in the code snippets below is the component instance created to perform these operations.

copy
const response = await smartbrowz.getSimilarCompanies({
  'leadName': 'zoho',
  'websiteUrl': 'https://www.zoho.com'
});
console.log(response);

Example of Expected Response

copy
[
  "Cybage Software Pvt. Ltd.",
  "Google LLC",
  "Chargebee, Inc.",
  "Infosys Ltd.",
  "GlobalLogic Inc.",
  "Persistent Systems Ltd.",
  "DELTA ELECTRONICS Inc.",
  "Salesforce, Inc."
]

Last Updated 2026-07-02 14:51:41 +0530 IST