D8intel is a specialized data intelligence platform designed to aggregate, analyze, and normalize information from multiple sources. It streamlines lead generation, enrichment, and verification by providing powerful pipelines and user-friendly interfaces. With robust security measures and seamless integrations, D8intel helps organizations uncover actionable insights, enhance data quality, and drive better business decisions.
https://api.d8intel.com/
Takes a searchBy object containing at least one of linkedin, email, or facebook. Each field should be a string ID. If multiple fields are provided, the platform will attempt to match the profile using any (OR logic) of those fields. If a match is found, the service attempts to enrich the profile with additional data from internal or external sources. Additionally, the requiredFields object can specify mandatory fields such as email or phone that must be included in the response.
Object that identifies which user to enrich.
https://api.d8intel.com/profiles/enrich
curl -i -X POST \
https://api.d8intel.com/profiles/enrich \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"searchBy": {
"linkedin": "john-doe-1234"
}
}'
{ "profile": { "firstName": "John", "lastName": "Doe", "name": "John Doe", "gender": "male", "languages": [ … ], "emails": [ … ], "phones": [ … ], "addresses": [ … ], "jobs": [ … ], "educations": [ … ], "socials": [ … ] } }
https://api.d8intel.com/profiles/reverse-check
curl -i -X POST \
https://api.d8intel.com/profiles/reverse-check \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"email": "john.doe@example.com"
}'
{ "profile": { "linkedinIds": [ … ] } }