Lead EnrichmentAdmin 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 Lead Enrichment module allows you to fetch details of a specific organization from the web. Provide the organization’s name, its email address, or its website URL as the parameters to the getEnrichedLead() SDK method, to retrieve the required information.

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

Note: You must provide the value for at least one key in the getEnrichedLead() SDK method.
copy
const response = await smartbrowz.getEnrichedLead({
  leadName: "zoho",
  websiteUrl: "https://www.zoho.com",
  email: "sales@zohocorp.com"
});
console.log(response);

Example of Expected Response

copy
[
  {
    "employee_count": "12000",
    "website": "https://www.zoho.com",
    "address": [
      {
        "country": "India",
        "pincode": "603202",
        "city": "Chengalpattu District",
        "street": "Estancia It Park, Plot No. 140 151, Gst Road Vallancheri",
        "state": "Tamil Nadu",
        "id": "Estancia IT Park, Plot no. 140, 151, GST Road, Vallancheri, Chennai."
      }
    ],
    "social": {
      "twitter": [
        "twitter.com/zoho"
      ]
    },
    "source_language": "en",
    "description": "Zoho Corporation offers web-based business applications.",
    "organization_name": "ZOHO",
    "ceo": "Sridhar Vembu",
    "headquarters": [
      {
        "country": "India"
      }
    ],
    "revenue": "$1B",
    "years_in_industry": "27",
    "about_us": "https://www.zoho.com/aboutus.html?ireft=nhome&src=home1",
    "founding_year": "1996",
    "contact": [
      "844-316-5544",
      "0800-085-6099"
    ],
    "industries": {
      "computer programming services": "Includes data processing services and other computer related services."
    },
    "logo": "https://www.zohowebstatic.com/sites/zweb/images/ogimage/zoho-logo.png",
    "organization_type": [
      "Private Limited Company"
    ],
    "business_model": [
      "B2B"
    ],
    "email": [
      "sales@zohocorp.com",
      "press@zohocorp.com"
    ],
    "organization_status": "LARGE_ENTERPRISE",
    "territory": [
      "India",
      "United States of America"
    ],
    "sign_up_link": "https://www.zoho.com/signup.html?all_prod_page=true"
  }
]

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