Professional profile contact and workplace

Endpoint: POST /prospects/profiles/bulk_enrich

Description

The Bulk Professional Profile Enrichment API provides detailed professional and workplace insights for up to 50 prospects in a single request. This endpoint enables deep analysis of career history, education, and workplace affiliations.

📌 Key Benefits:

  • Retrieve bulk professional profiles including job history, skills, and education.
  • Enhance recruiting and sales efforts with verified workplace details.
  • Optimize segmentation and outreach using structured career insights.

How It Works
  1. Input: Provide up to 50 prospect_id values, obtained from the Match Prospects endpoint.
  2. Processing: The system retrieves verified professional details, including job history, education, and workplace affiliations.
  3. Output: Returns structured data in the same order as the input, ensuring easy mapping.
Request Schema
FieldTypeDescription
prospect_idsArrayA list of up to 50 unique prospect IDs (Required)
Example Request (cURL)
curl --request POST \
     --url https://api.explorium.ai/v1/prospects/profiles/bulk_enrich \
     --header 'accept: application/json' \
     --header 'api_key: <your api key>' \
     --header 'content-type: application/json' \
     --data '{
  "prospect_ids": [
    "ee936e451b50c70e068e1b54e106cb89173198c4",
    "d668424ab4f6aaeeeb74248d56b8335383fd522b"
  ]
}'
Example Response
{
  "response_context": {
    "correlation_id": "1badf5a06e9f42ca9fd74f46743af953",
    "request_status": "success",
    "time_took_in_seconds": 0.692
  },
  "data": [
    {
      "prospect_id": "ee936e451b50c70e068e1b54e106cb89173198c4",
      "data": {
        "full_name": "Satya Nadella",
        "country_name": "United States",
        "linkedin": "https://linkedin.com/in/satyanadella",
        "experience": [...],
        "education": [...],
        "company_name": "University Of Chicago",
        "company_website": "https://uchicago.edu",
        "job_title": "Member Board Of Trustees"
      }
    },
    {
      "prospect_id": "d668424ab4f6aaeeeb74248d56b8335383fd522b",
      "data": {
        "full_name": "Jensen Huang",
        "country_name": "United States",
        "linkedin": "https://linkedin.com/in/jenhsunhuang",
        "experience": [...],
        "education": [...],
        "company_name": "Nvidia",
        "company_website": "https://nvidia.com",
        "job_title": "Founder And Chief Executive Officer"
      }
    }
  ]
}
Best Practices
  • Ensure valid prospect IDs to maximize data accuracy.
  • Use enriched profiles to refine candidate selection and outreach.
  • Monitor career movements to track professional growth trends.
  • Leverage structured education and skills data for talent and partnership analysis.
Bulk Professional Profile Output Signals
Field NameDescriptionData Type
prospect_idUnique identifier of the prospectString
full_nameFull name of the individualOptional[str]
country_nameCountry where the individual is locatedOptional[str]
linkedinURL to the individual's LinkedIn profileOptional[str]
experienceList of past and current job experiencesOptional[List[Dict]]
educationList of educational background detailsOptional[List[Dict]]
company_nameName of the company where the individual worksOptional[str]
company_websiteURL to the company's websiteOptional[str]
job_titleCurrent job titleOptional[str]

Body Params - Try Me Example

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