Explorium API icon

Explorium API

Streamlined interface for Explorium API operations

Overview

The node provides an interface to the Explorium API, specifically supporting a "Match" operation for two types of entities: businesses and prospects. It allows users to submit identifying information about companies or individuals and receive matched records with Explorium's internal IDs and data.

Common scenarios include:

  • Enriching CRM data by matching company names or domains to standardized business records.
  • Matching prospect details such as email, full name, or LinkedIn profile to obtain verified prospect IDs.
  • Automating lead qualification by verifying and linking input data against Explorium’s database.

Practical example:

  • You have a list of company names and domains and want to retrieve their unique Explorium business IDs for further enrichment.
  • You have prospect emails and names and want to find matching prospect profiles in Explorium to enhance your marketing campaigns.

Properties

Name Meaning
Type Selects the entity type to match: Business (match companies by name/domain) or Prospect (match people by email, name, or other identifiers).
Businesses to Match For Business type only (when not using JSON input): Add one or more businesses by specifying company name and/or domain to be matched.
Prospects to Match For Prospect type only (when not using JSON input): Add one or more prospects by specifying identifiers such as business ID, company name, email address, full name, LinkedIn profile URL, or phone number.
Advanced JSON Input Boolean flag to choose whether to provide input data directly as JSON instead of using form fields.
JSON Input (Business) When Type is Business and Advanced JSON Input is enabled: Provide JSON array of businesses with name and domain fields to match.
JSON Input (Prospect) When Type is Prospect and Advanced JSON Input is enabled: Provide JSON array of prospects with fields like email, full_name, phone_number, company_name, and linkedin to match.

Output

The output is a JSON object containing the response from the Explorium API for the match request. It includes matched entities with their corresponding Explorium IDs and any additional metadata returned by the API.

  • The output structure depends on the type selected (businesses or prospects).
  • Each matched record typically contains identifiers and enriched data fields.
  • The node does not output binary data.

Example output snippet (simplified):

{
  "businesses": [
    {
      "id": "explorium-business-id",
      "name": "Microsoft",
      "domain": "microsoft.com",
      ...
    }
  ]
}

or for prospects:

{
  "prospects": [
    {
      "id": "explorium-prospect-id",
      "email": "john@example.com",
      "full_name": "John Doe",
      ...
    }
  ]
}

Dependencies

  • Requires an API key credential for authenticating with the Explorium API.
  • The node makes HTTP POST requests to endpoints under https://api.explorium.ai.
  • No additional external dependencies beyond the configured API authentication.

Troubleshooting

  • Error: At least one company must have an identifier (name or domain)
    Occurs if no valid business identifiers are provided. Ensure at least one business entry has a non-empty name or domain.

  • Error: At least one prospect must have an identifier (email, phone_number, full_name, company_name, linkedin, or business_id)
    Happens when no valid prospect identifiers are given. Provide at least one identifying field per prospect.

  • Error: Invalid JSON format in JSON Input field
    Raised if the JSON input is malformed. Validate JSON syntax before submitting.

  • Unknown operation error
    If the operation parameter is incorrect or missing, verify that "Match" is selected.

  • Network or authentication errors may occur if the API key is invalid or network connectivity issues arise.

Links and References

Discussion