Create events and fetch for businesses.

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

Purpose:

Returns events on selected prospects.

Query Parameters

ParameterValues
event_typesSee events table below
prospect_idsProspects ids
timestamp_fromReturn only events that occurred after this timestamp.

Events

Event TypeDescription
prospect_changed_roleProspect has changed their role.
prospect_changed_companyProspect has changed their company.
prospect_job_start_anniversaryEmployee's workplace anniversary, marking the anniversary of the employee's start date at their company.

Example Request (cURL):

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_role",
    "prospect_changed_company"
  ],
  "prospect_ids": [
    "https://linkedin.com/in/lauren-somerhalder",
    "linkedin.com/in/jonsumroy",
    "linkedin.com/in/elizabeth-pingpank-b483744",
    "linkedin.com/in/oili-virta-31ab06177",
    "linkedin.com/in/akshada-handge-494025200"  ],
  "timestamp_from": "2024-01-01T10:03:03.050Z"
}
'

Example Response:

{
  "response_context": {
    "correlation_id": "4666fecbbdaf45c6816f998a02fb67c2",
    "request_status": "success",
    "time_took_in_seconds": 0.515
  },
  "output_events": [
    {
      "event_name": "prospect_changed_role",
      "event_time": "2024-04-01T00:00:00+00:00",
      "event_id": "77689e89cba28f98bb92d2f08ce931f3",
      "data": {
        "event_name": "prospect_changed_role",
        "current_company_name": "358 Helsinki",
        "current_company_id": "4a84d3cf13d239dbc0c57b0a0070a896",
        "current_job_title": "Junior Project Manager",
        "previous_job_title": "Project Coordinator Trainee"
      },
      "prospect_id": "linkedin.com/in/oili-virta-31ab06177"
    },
    {
      "event_name": "prospect_changed_company",
      "event_time": "2024-06-01T00:00:00+00:00",
      "event_id": "10f4a011c10112a6a986ff856107104c",
      "data": {
        "event_name": "prospect_changed_company",
        "current_company_name": "Actalent",
        "current_company_id": "97a52bce42dfc8f332fd534c4de8139f",
        "current_job_title": "Aec Career Consultant / Recruiter",
        "previous_company_name": "Koln/Kgin Tv 10/11 News",
        "previous_company_id": "d8c9b663c31e377b0fdc80d156e66a06",
        "previous_job_title": "Aec Career Consultant / Recruiter"
      },
      "prospect_id": "https://linkedin.com/in/lauren-somerhalder"
    },
    {
      "event_name": "prospect_changed_company",
      "event_time": "2024-07-01T00:00:00+00:00",
      "event_id": "3f7e8cf51cfd522ff0cef2249772ec0c",
      "data": {
        "event_name": "prospect_changed_company",
        "current_company_name": "Headovations",
        "current_company_id": "23d794056048ff2bc8c6b3a4ecd223d1",
        "current_job_title": "Vice President Of Business Development",
        "previous_company_name": "Gods Gang",
        "previous_company_id": "23d794056048ff2bc8c6b3a4ecd223d1",
        "previous_job_title": "Vice President Of Business Development"
      },
      "prospect_id": "linkedin.com/in/jonsumroy"
    }
  ]
}

Event Details

Employee job changes

Signal NamenameType
Employee's previous job titleprevious_job_titleTEXT
Employee left previous role timestampevent_timeDATETIME
Employee's current job titlecurrent_job_titleTEXT
Employee's current workplacecurrent_company_nameCOMPANY
Current workplace entity IDcurrent_company_idTEXT
Job change event IDevent_idTEXT


Recently changed company

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

Employee's workplace anniversary

Signal NamenameType
Employee's full namefull_nameTEXT
Employee event IDevent_idTEXT
Workplace company namecompany_nameTEXT
Number of years at companyyears_at_companyNUMERIC
Employee's job titlejob_titleTEXT
Employee event timestampjob_anniversary_dateDATETIME
Workplace anniversary dateevent_timeDATETIME
Employee LinkedIn URLlinkedin_urlURL

Language
Credentials
Click Try It! to start a request and see the response here!