Recently changed company

Description

A Prospect Changed Company event tracks when an individual moves from one company to another. This data is essential for monitoring career transitions, business relationships, and professional network changes.

Important: The Recently Changed Company event surfaces only recent job transitions within the last quarter (timestamp_from should be set to the past 3 months). If no employees changed companies during this period, no data will be available.

For a historical record of career transitions, use the Professional profile contact and workplace Enrichment API.

Use cases

  • Sales & Lead Generation: Engage with prospects who recently joined a new company.
  • Competitive Intelligence: Monitor employee movements between competitors.
  • Recruitment Strategy: Identify candidates open to career transitions.
  • Market Analysis: Track key industry shifts based on talent movement.

Data Schema

Event Name:"prospect_changed_company" (Use this value in the event_types parameter when querying this event.)

Signal NamenameType
New Company Namecurrent_company_nameTEXT
New Company IDcurrent_company_idTEXT
New Job Titlecurrent_job_titleTEXT
Previous Company Nameprevious_company_nameTEXT
Previous Company IDprevious_company_idTEXT
Previous Job Titleprevious_job_titleTEXT
Company Change Dateevent_idDATETIME
Company Change Event IDevent_timeTEXT

Query Example

curl -X POST \
  "https://api.explorium.ai/v1/prospects/events" \
  -H "API_KEY: your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
  "event_types": [
    "prospect_changed_company"
  ],
  "prospect_ids": [
    "4c485f009d59e319dc039cdf3e935b85014e6a33"
  ],
  "timestamp_from": "2024-01-01T10:03:03.050Z"
}'

Best Practices

  • Filter by company (current_company_name) to track key hires in target accounts.
  • Monitor job titles (current_job_title) to assess career progression.
  • Use timestamps (event_time) to reach out to prospects at the right time.

Related Events