Skip to main content
POST
/
v1
/
prospects
/
contacts_information
/
bulk_enrich
Contacts Information
curl --request POST \
  --url https://api.explorium.ai/v1/prospects/contacts_information/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": {
        "emails": [
          {}
        ],
        "professions_email": "jsmith@example.com",
        "professional_email_status": "valid",
        "phone_numbers": [
          {}
        ],
        "mobile_phone": "<string>"
      }
    }
  ],
  "entity_id": "<string>",
  "total_results": 123
}

Description

The Bulk Contact Details Enrichment API allows users to retrieve verified data for multiple prospects in a single request. This endpoint enhances lead intelligence by providing accurate emails, phone numbers, and mobile numbers at scale. Key Benefits:
  • Bulk retrieval of enriched contact data for up to 50 prospects per request.
  • Enhance outreach with validated professional and personal contact details.
  • Optimize lead engagement by leveraging multiple verified data points.
  1. Input: Provide up to 50 prospect_id values, obtained from the Match Prospects endpoint.
  2. Processing: The system retrieves verified contact information, including emails and phone numbers.
  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/contacts_information/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": "f6bf2bf8c0e34f3d9fa000f83398c97b",
    "request_status": "success",
    "time_took_in_seconds": 0.733
  },
  "data": [
    {
      "prospect_id": "ee936e451b50c70e068e1b54e106cb89173198c4",
      "data": {
        "emails": [
          {
            "address": "satyanadella@hotmail.com",
            "type": "personal"
          },
          {
            "address": "satyan@microsoft.com",
            "type": "professional"
          }
        ],
        "phone_numbers": [
          {
            "phone_number": "+14258828080"
          },
          {
            "phone_number": "+14255032236"
          }
        ],
        "mobile_phone": "+14255032236"
      }
    },
    {
      "prospect_id": "57f9e5dac64d31d80e6e9432fe2c500d0bba2c01",
      "data": {
        "emails": [
          {
            "address": "lorihuang@hotmail.com",
            "type": "personal"
          },
          {
            "address": "jensenh@nvidia.com",
            "type": "current_professional"
          }
        ],
        "phone_numbers": [
          {
            "phone_number": "+14156991685"
          },
          {
            "phone_number": "+13172018718"
          }
        ],
        "mobile_phone": "+14156991685"
      }
    }
  ],
  "total_results": 2
}
  • Batch process multiple prospect IDs to improve efficiency and reduce API calls.
  • Ensure valid prospect IDs are used to maximize data accuracy.
  • Leverage enriched contact data to refine lead scoring and improve outreach.
  • Regularly update CRM records with the latest contact details.
Field NameDescriptionData Type
prospect_idUnique identifier of the prospectString
emailsList of email addresses associated with the contactOptional[List[Dict[str, str]]]
phone_numbersList of contact phone numbers in international formatOptional[List[str]]
mobile_phoneMobile phone number of the contactOptional[str]
For additional enrichment options, explore related API endpoints below.

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[ContactsInformationOutputSchema] · object[]
entity_id
I