Skip to main content
POST
/
v1
/
prospects
/
profiles
/
bulk_enrich
Profiles
curl --request POST \
  --url https://api.explorium.ai/v1/prospects/profiles/bulk_enrich \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api-key>' \
  --data '{
  "request_context": {},
  "parameters": {},
  "prospect_ids": [
    "<string>"
  ]
}'
{
  "response_context": {
    "correlation_id": "<string>",
    "request_status": "success",
    "time_took_in_seconds": 123
  },
  "data": [
    {
      "prospect_id": "<string>",
      "data": {
        "full_name": "<string>",
        "country_name": "<string>",
        "region_name": "<string>",
        "city": "<string>",
        "linkedin": "<string>",
        "experience": [
          {}
        ],
        "skills": [
          "<string>"
        ],
        "interests": [
          "<string>"
        ],
        "age_group": "<string>",
        "education": [
          {}
        ],
        "gender": "male",
        "company_name": "<string>",
        "company_website": "<string>",
        "company_linkedin": "<string>",
        "job_department": "Real estate",
        "job_seniority_level": "owner",
        "job_title": "<string>"
      }
    }
  ],
  "entity_id": "<string>",
  "total_results": 123
}

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.
  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.
FieldTypeDescription
prospect_idsArrayA list of up to 50 unique prospect IDs (Required)
Bash
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"
  ]
}'
JSON
{
  "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": "57f9e5dac64d31d80e6e9432fe2c500d0bba2c01",
      "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"
      }
    }
  ]
}
  • 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.
SignalAPI NameDescriptionData Type Final
genderIndividual’s genderGender reported by the individual on their profile. If gender is not reported on profile, returned value is ‘null’.string
cityIndividual’s city of residenceIndividual’s city of residence reported on profile.string
country_nameIndividual’s country of residenceIndividual’s country of residence reported on profile.string
region_nameIndividual’s State / Region of residenceIndividual’s state or region of residence reported on profile.string
company_websiteIndividual’s workplace: company websiteURL to the company website belonging to the individual’s workplace.string
company_linkedinIndividual’s workplace: company LinkedIn® urlURL to the company LinkedIn® page belonging to the individual’s workplace.string
linkedinIndividual’s LinkedIn® URLURL of the individual’s LinkedIn® profile.url
age_groupIndividual’s age groupIndividual’s estimated age group.string
experienceIndividual’s work experience backgroundList of work experience background entries on the individual’s profile. May include: company name, company website, job title, seniority level, role, start date, end date, and more. Includes current work experience activities if listed.array
educationIndividual’s educational backgroundList of educational background entries on the individual’s profile. May include: institutions name, institutions website, degree category, major, start date, end date, and more. Includes current educational activities if listed.array
interestsIndividual’s interestsList of all interests reported by the individual on their profile.array
skillsIndividual’s skillsList of all skills reported by the individual on their profile.array
job_departmentIndividual’s job departmentIndividual’s job department, derived from their current job title.object
job_seniority_levelIndividual’s seniority levelIndividual’s top seniority level, derived from their current job title.object
company_nameIndividual’s workplace: company nameName of the company the individual listed as their workplace.string
job_titleIndividual’s job titleIndividual’s current job title listed on their professional profile.string
full_nameIndividual’s full nameFirst and last names associated with the individual, appended with a space.string

Body Params - Try Me Example

prospect_ids: ee936e451b50c70e068e1b54e106cb89173198c4,
  57f9e5dac64d31d80e6e9432fe2c500d0bba2c01

Authorizations

api_key
string
header
required

Body

application/json
prospect_ids
string[]
required
Required array length: 1 - 50 elements
request_context
object
parameters
object

Response

Successful Response

This is base response model for all responses in partner service.

response_context
object
required
total_results
integer
required
data
ProspectsBulkEnrichRow[ProfilesOutputSchema] · object[]
entity_id
I