Skip to main content
POST
Fetch Prospects Events

Introduction

The Prospect Events API provides insights into recent events related to selected prospects, including job changes, company transitions, and professional anniversaries. These insights are essential for timely engagement, personalized outreach, and tracking career movements. Key Benefits:
  • Track real-time career movements of prospects.
  • Identify engagement opportunities based on job changes.
  • Enhance lead nurturing by targeting prospects during career transitions.
  • Integrate with CRM and sales platforms for automated alerts.
Important: Events API tracks only recent events within the last quarter (3 months). If no relevant events occurred in this timeframe, no data will be returned. Looking for historical data? Use the Prospect Enrichment API to retrieve long-term career and engagement trends.

Endpoint: POST https://api.explorium.ai/v1/prospects/events

  1. Input: Provide a list of prospect IDs and event types.
  2. Processing: The system retrieves relevant event details.
  3. Output: A structured response with matched prospect events.

Example Request (cURL)

cURL

Example Response

JSON
  • Monitor career movements to enhance engagement strategies.
  • Leverage anniversaries for personalized outreach.
  • Refine search criteria to track only relevant prospects.
  • Utilize automation to integrate prospect event tracking into CRM workflows.
  • Combine with enrichment data to build a full profile of each prospect.

Authorizations

api_key
string
header
required

Body

application/json
event_types
enum<string>[]
required
Minimum array length: 1

The ProspectsEventIdentifier class is an enumeration that defines event identifiers related to prospects.

This enum is used to categorize and track events associated with prospects, such as:

  • Role changes (e.g., when a prospect changes their role within a company)
  • Company changes (e.g., when a prospect moves to a new company)
  • Job anniversaries (e.g., celebrating the anniversary of a prospect's job start date)

These identifiers ensure consistent handling and classification of prospect-related events across the application.

Available options:
prospect_changed_role,
prospect_changed_company,
prospect_job_start_anniversary
prospect_ids
string[]
required
Required array length: 1 - 40 elements
Pattern: ^[a-f0-9]{40}$
request_context
Request Context · object | null
Example:

null

entity_type
enum<string>

The EntityType class is an enumeration that defines the types of entities.

This enum is used to specify whether the entity is a business or a prospect. It ensures consistent handling of entity types across the application.

Attributes: BUSINESS: Represents a business entity. PROSPECT: Represents a prospect entity.

Available options:
business,
prospect
timestamp_to

ISO format datetime string or date in format YYYY-MM-DD

Example:

null

timestamp_from

ISO format datetime string or date in format YYYY-MM-DD

Example:

null

Response

Successful Response