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.)
"prospect_changed_company"
(Use this value in the event_types
parameter when querying this event.)Signal Name | name | Type |
---|---|---|
New Company Name | current_company_name | TEXT |
New Company ID | current_company_id | TEXT |
New Job Title | current_job_title | TEXT |
Previous Company Name | previous_company_name | TEXT |
Previous Company ID | previous_company_id | TEXT |
Previous Job Title | previous_job_title | TEXT |
Company Change Date | event_id | DATETIME |
Company Change Event ID | event_time | TEXT |
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
- Employee job changes - Tracks when an employee changes their job title within the same company.
- Employee's workplace anniversary - Marks the annual anniversary of an employee’s start date at their current company.