Company Enrichment

Company Enrichment configuration
Company Enrichment: look up company data

Look up company information using just a website domain. Returns company name, industry, size, location, and description.

Type: COMPANY_ENRICHMENT Color: Blue (#3B82F6) Credits: 10 per lookup

Configure fields

FieldTypeRequiredDescription
DomainFX formulaYesCompany website (e.g., "stripe.com", "hubspot.com")

Output

VariableDescription
{{company.name}}Company legal name
{{company.industry}}Industry classification
{{company.size}}Employee count range
{{company.location}}Headquarters location
{{company.description}}Company description
{{company.founded}}Year founded
{{company.website}}Primary website URL

Common patterns

Enrich CRM

New HubSpot Contact → Extract domain from email → Company Enrichment → Update Contact (add company fields)

Lead scoring

Form Submission → Company Enrichment → TinyGPT (score based on size + industry) →
  If-Else (score > 70) → Route to sales / Route to nurture
Tip

Extract the domain from an email address using Transformer: {{email}}.split("@")[1] gives you the domain for enrichment.

Error handling

If this node fails during execution:

  1. The execution stops at this node (unless Continue on error is enabled)
  2. The error appears in the Execution History with the full error message
  3. Downstream nodes don't execute

To handle errors gracefully:

  • Enable Continue on error in the node settings
  • Add an If-Else node after to check if the operation succeeded
  • Route failures to a notification (Send Email, Send Slack)

Debugging

  1. Check the Execution History for the failed run
  2. Click the failed node to see its input and error
  3. Verify the input data is correct (check previous node outputs)
  4. Test with sample data using the Test tab