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.
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,
  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