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
SignalAPI NameDescriptionData Type
Individual's gendergenderGender reported by the individual on their profile. If gender is not reported, returned value is 'null'.CATEGORY
Individual's city of residencecityIndividual's city of residence reported on profile.CITY
Individual's country of residencecountry_nameIndividual's country of residence reported on profile.COUNTRY
Individual's State / Region of residenceregion_nameIndividual's state or region of residence reported on profile.REGION
Individual's workplace: company websitecompany_websiteURL to the company website belonging to the individual's workplace.URL
Individual's workplace: company LinkedIn URLcompany_linkedinURL to the company LinkedIn page belonging to the individual's workplace.URL
Individual's LinkedIn URLlinkedinURL of the individual's LinkedIn profile.URL
Individual's age groupage_groupIndividual's estimated age group.CATEGORY
Individual's work experience backgroundexperienceList of work experience background entries on the individual's profile, including company name, website, job title, seniority, role, start date, end date, and more.TEXT
Individual's educational backgroundeducationList of educational background entries on the individual's profile, including institution name, website, degree category, major, start date, end date, and more.TEXT
Individual's interestsinterestsList of all interests reported by the individual on their profile.TEXT
Individual's skillsskillsList of all skills reported by the individual on their profile.TEXT
Individual's job departmentjob_departmentIndividual's job department, derived from their current job title.CATEGORY
Individual's seniority leveljob_seniority_levelIndividual's top seniority level, derived from their current job title.CATEGORY
Individual's workplace: company namecompany_nameName of the company the individual listed as their workplace.COMPANY
Individual's job titlejob_titleIndividual's current job title listed on their professional profile.CATEGORY
Individual's full namefull_nameFirst and last names associated with the individual, appended with a space.Full Name

Body Params - Try Me Example

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