Professional profile contact and workplace

Introduction

The Professional Profile Contact and Workplace Enrichments API provides comprehensive professional details about a prospect, including job history, company affiliations, skills, education, and workplace details. This endpoint is designed to enhance prospect intelligence, streamline recruitment efforts, and improve sales and marketing strategies.

📌 Key Benefits:

  • Access detailed career history, including past and present job roles.
  • Retrieve company affiliations and workplace insights.
  • Analyze skills and expertise for targeted outreach.
  • Gain educational background to understand professional qualifications.
  • Improve lead scoring and personalization in sales and marketing campaigns.

Endpoint: POST /prospects/profiles/enrich

How It Works
  1. Input: Provide a prospect_id (retrieved from the Match Prospects endpoint) to fetch professional details.
  2. Processing: The system gathers professional data from multiple sources and structures it.
  3. Output: A response containing job history, workplace affiliations, skills, and education details.
Request Schema
FieldTypeDescription
prospect_idStringA unique identifier for the prospect (Required)
Example Request (cURL)
curl -X POST \
  "https://api.explorium.ai/v1/prospects/professional-profile/enrich" \
  -H "API_KEY: <your api key>" \
  -H "Content-Type: application/json" \
  -d '{
  "prospect_id": "ee936e451b50c70e068e1b54e106cb89173198c4"
}'
Example Response
{
  "response_context": {
    "correlation_id": "7e12c59cca0346c294d9f01a8ac0cdd9",
    "request_status": "success",
    "time_took_in_seconds": 0.651
  },
  "data": {
    "full_name": "Satya Nadella",
    "country_name": "united states",
    "region_name": "washington",
    "city": "redmond",
    "linkedin": "https://linkedin.com/in/satyanadella",
    "experience": [
      {
        "company": {
          "name": "starbucks",
          "website": "starbucks.com"
        },
        "title": {
          "levels": [
            "partner"
          ],
          "name": "board member",
          "role": "advisory",
          "sub_role": "board_member"
        },
        "start_date": "2017",
        "end_date": "2024",
        "is_primary": false
      },
      {
        "company": {
          "name": "the business council u.s.",
          "website": "businesscouncil.com"
        },
        "title": {
          "levels": [
            "partner"
          ],
          "name": "chairman"
        },
        "start_date": "2021",
        "end_date": "2023",
        "is_primary": false
      },
      {
        "company": {
          "name": "fred hutch",
          "website": "fredhutch.org"
        },
        "title": {
          "levels": [
            "partner"
          ],
          "name": "board member",
          "role": "advisory",
          "sub_role": "board_member"
        },
        "start_date": "2016",
        "end_date": "2022",
        "is_primary": false
      },
      {
        "company": {
          "name": "the university of chicago",
          "website": "uchicago.edu"
        },
        "title": {
          "levels": [],
          "name": "member board of trustees"
        },
        "start_date": "2018",
        "is_primary": true
      },
      {
        "company": {
          "name": "microsoft",
          "website": "microsoft.com"
        },
        "title": {
          "levels": [],
          "name": "chairman and chief executive officer",
          "role": "operations",
          "sub_role": "executive"
        },
        "start_date": "2014-02",
        "is_primary": false
      }
    ],
    "skills": null,
    "interests": null,
    "age_group": "41-50",
    "education": [
      {
        "degrees": [],
        "start_date": "1994",
        "end_date": "1996",
        "majors": [],
        "minors": [],
        "school": {
          "name": "the university of chicago booth school of business",
          "domain": "chicagobooth.edu"
        }
      },
      {
        "degrees": [
          "bachelors"
        ],
        "majors": [
          "electrical engineering"
        ],
        "minors": [],
        "school": {
          "name": "careers in manipal",
          "domain": "manipal.edu"
        }
      },
      {
        "degrees": [
          "masters"
        ],
        "majors": [
          "computer science"
        ],
        "minors": [],
        "school": {
          "name": "uw - milwaukee at waukesha",
          "domain": "uwm.edu"
        }
      }
    ],
    "gender": "male",
    "company_name": "University Of Chicago",
    "company_website": "https://uchicago.edu",
    "company_linkedin": "https://www.linkedin.com/school/uchicago/",
    "job_department": null,
    "job_seniority_level": "Director",
    "job_title": "Member Board Of Trustees"
  }
}
Best Practices
  • Use verified prospect IDs to ensure accurate data enrichment.
  • Leverage job history and expertise for recruitment and lead scoring.
  • Incorporate workplace insights into sales and marketing automation.
  • Analyze skills and education to personalize communication and engagement.
  • Cross-check company affiliations for networking and partnership opportunities.
Professional Profile Contact and Workplace Output Signal
Field NameDescriptionData Type
full_nameFull name of the individualOptional[str]
country_nameCountry where the individual is locatedOptional[DataTypes.CountryName]
region_nameRegion or state where the individual is locatedOptional[DataTypes.RegionName]
cityCity where the individual is locatedOptional[DataTypes.LocalityName]
linkedinURL to the individual's LinkedIn profileOptional[DataTypes.Url]
experienceList of past and current job experiencesOptional[List[Dict[str, Any]]]
skillsList of professional skillsOptional[List[str]]
interestsList of personal and professional interestsOptional[List[str]]
age_groupAge group classificationOptional[str]
educationList of educational background detailsOptional[List[Dict[str, Any]]]
genderGender of the individual (male or female)Optional[Literal["male", "female"]]
company_nameName of the company where the individual worksOptional[DataTypes.OrganizationName]
company_websiteURL to the company's websiteOptional[DataTypes.Url]
company_linkedinURL to the company's LinkedIn pageOptional[DataTypes.Url]
job_departmentDepartment where the individual worksOptional[JobDepartment]
job_seniority_levelSeniority level of the individual's jobOptional[JobSeniorityLevel]
job_titleJob title of the individualOptional[str]

Body Params - Try Me Example

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