post https://api.explorium.ai/v1/prospects/contacts_information/enrich
Introduction
The Contact details enrichments API provides detailed information about individual prospects, including contact details, professional emails, and phone numbers. This API is crucial for lead enrichment, personalized outreach, and enhancing sales intelligence workflows.
📌 Key Benefits:
- Access validated contact information for prospects.
- Retrieve multiple email addresses, including personal and professional.
- Ensure accurate and up-to-date data for prospecting and engagement.
Endpoint: POST /prospects/contacts_information/enrich
POST /prospects/contacts_information/enrich
How It Works
- Input: Provide a
prospect_id
(retrieved from the Match Prospects endpoint) to retrieve enrichment details. - Processing: The system scans and fetches available data from multiple sources.
- Output: A structured response containing contact details, emails, and phone numbers.
Request Schema
Field | Type | Description |
---|---|---|
prospect_id | String | A unique identifier for the prospect (Required) |
Example Request (cURL)
curl -X POST \
"https://api.explorium.ai/v1/prospects/enrich" \
-H "API_KEY: <your api key>" \
-H "Content-Type: application/json" \
-d '{
"prospect_id": "ee936e451b50c70e068e1b54e106cb89173198c4"
}'
Example Response
{
"response_context": {
"correlation_id": "c381f2f546864d21a8630aef2a9a4ee0",
"request_status": "success",
"time_took_in_seconds": 0.99
},
"data": {
"emails": [
{
"address": "[email protected]",
"type": "personal"
},
{
"address": "[email protected]",
"type": "professional"
}
],
"professions_email": null,
"professional_email_status": null,
"phone_numbers": [
{
"phone_number": "+14258828080"
},
{
"phone_number": "+14255032236"
}
],
"mobile_phone": "+14255032236"
}
}
Best Practices
- Use verified prospect IDs for accurate enrichment.
- Cross-check multiple contact points to reach prospects effectively.
- Store enriched data in CRM for seamless sales workflows.
- Update prospect details regularly to maintain accuracy in outreach campaigns.
Contacts Information Output Signal
Signal | API Name | Description | Data Type |
---|---|---|---|
Individual's professional email validity status | professional_email_status | Recommended validity status for the listed 'Professional email' address. Possible values: 'valid' (safe to email), 'invalid' (should be removed from mailing lists), 'catch-all' (created as a precaution by domain owners). | CATEGORY |
Individual's emails | emails | List of all email addresses associated with the individual, labeled as professional or personal email addresses. | TEXT |
Individual's professional email | professions_email | Current professional email address associated with the individual. | |
Individual's mobile phone | mobile_phone | Individual's direct dial mobile phone number. | PHONE NUMBER |
Individual's phone numbers | phone_numbers | List of all phone numbers associated with the individual. | TEXT |
Body Params - Try Me Example
prospect_id: ee936e451b50c70e068e1b54e106cb89173198c4