Contact details

Endpoint: POST /prospects/contacts_information/bulk_enrich

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.

How It Works
  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.
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/contacts_information/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": "f6bf2bf8c0e34f3d9fa000f83398c97b",
    "request_status": "success",
    "time_took_in_seconds": 0.733
  },
  "data": [
    {
      "prospect_id": "ee936e451b50c70e068e1b54e106cb89173198c4",
      "data": {
        "emails": [
          {
            "address": "[email protected]",
            "type": "personal"
          },
          {
            "address": "[email protected]",
            "type": "professional"
          }
        ],
        "phone_numbers": [
          {
            "phone_number": "+14258828080"
          },
          {
            "phone_number": "+14255032236"
          }
        ],
        "mobile_phone": "+14255032236"
      }
    },
    {
      "prospect_id": "d668424ab4f6aaeeeb74248d56b8335383fd522b",
      "data": {
        "emails": [
          {
            "address": "[email protected]",
            "type": "personal"
          },
          {
            "address": "[email protected]",
            "type": "current_professional"
          }
        ],
        "phone_numbers": [
          {
            "phone_number": "+14156991685"
          },
          {
            "phone_number": "+13172018718"
          }
        ],
        "mobile_phone": "+14156991685"
      }
    }
  ],
  "total_results": 2
}
Best Practices
  • 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.
Bulk Contacts Enrichment Output Signals
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]

Body Params - Try Me Example

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