Explorium API icon

Explorium API

Streamlined interface for Explorium API operations

Overview

This node integrates with the Explorium API to fetch event data related to businesses or prospects. It allows users to retrieve specific types of events such as IPO announcements, funding rounds, role changes, company changes, and more, filtered by IDs and date ranges.

Common scenarios include:

  • Monitoring significant business events for a list of companies (e.g., new product launches, mergers).
  • Tracking career changes or company switches for a set of prospects.
  • Enriching CRM or marketing automation workflows with timely event data to trigger actions or notifications.

For example, a user might fetch IPO announcements and new funding rounds for selected businesses since the start of the year, or track role changes for prospects to update sales outreach strategies.

Properties

Name Meaning
Type Select whether to fetch "Business Events" (company-related) or "Prospect Events" (person-related).
Business IDs List of Explorium business IDs to fetch events for (only shown if Type is "businesses" and JSON input is not used).
Prospect IDs List of Explorium prospect IDs to fetch events for (only shown if Type is "prospects" and JSON input is not used).
Event Types Types of events to fetch. For businesses, options include IPO Announcement, New Funding Round, Merger & Acquisitions, New Product Launch, etc. For prospects, options include Role Change, Company Change, New Position.
From Date Start date (ISO format) to filter events from.
To Date End date (ISO format) to filter events up to.
Advanced JSON Input Boolean toggle to use direct JSON input instead of form fields for specifying request parameters.
JSON Input Raw JSON input to specify parameters like IDs, event types, and timestamps directly. Separate examples exist for business and prospect events. Only shown if Advanced JSON Input is enabled.

Output

The node outputs an array of event objects in the json field. The structure depends on the type of events requested but generally includes details about each event such as event type, associated business or prospect ID, timestamp, and other relevant metadata returned by the Explorium API.

No binary data output is produced by this node.

Dependencies

  • Requires an API key credential for authenticating with the Explorium API.
  • The node makes HTTP POST requests to endpoints like /v1/businesses/events or /v1/prospects/events on the Explorium API.
  • Proper configuration of the API authentication credential in n8n is necessary.

Troubleshooting

  • Error: "At least one business ID is required"
    Occurs if no valid business IDs are provided when fetching business events. Ensure you supply at least one non-empty business ID.

  • Error: "At least one prospect ID is required"
    Occurs if no valid prospect IDs are provided when fetching prospect events. Provide at least one valid prospect ID.

  • Error: "At least one event type is required"
    Happens if the event types array is empty. Select at least one event type to fetch.

  • Error: "Invalid JSON format in JSON Input field"
    When using advanced JSON input, ensure the JSON is well-formed and valid.

  • If no events are returned, verify that the IDs and date filters match existing data in Explorium.

Links and References

Discussion