curl --request POST \
--url https://api.crustdata.com/person/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--data '
{
"professional_network_profile_urls": [
"https://www.linkedin.com/in/abhilashchowdhary"
]
}
'[
{
"matched_on": "https://www.linkedin.com/in/abhilashchowdhary",
"match_type": "professional_network_profile_url",
"matches": [
{
"confidence_score": 1,
"person_data": {
"basic_profile": {
"current_title": "Co-Founder & CEO",
"headline": "Co-founder at Crustdata (YC F24)",
"name": "Abhilash Chowdhary",
"location": {
"raw": "San Francisco, California, United States"
}
}
}
}
]
}
]Enrich person records using the Crustdata cached dataset. Provide either a LinkedIn profile URL or a business email to retrieve detailed person data including employment history, education, skills, contact information, and more. Exactly one identifier type must be provided per request. Supports batch enrichment of up to 25 profiles at once.
curl --request POST \
--url https://api.crustdata.com/person/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--data '
{
"professional_network_profile_urls": [
"https://www.linkedin.com/in/abhilashchowdhary"
]
}
'[
{
"matched_on": "https://www.linkedin.com/in/abhilashchowdhary",
"match_type": "professional_network_profile_url",
"matches": [
{
"confidence_score": 1,
"person_data": {
"basic_profile": {
"current_title": "Co-Founder & CEO",
"headline": "Co-founder at Crustdata (YC F24)",
"name": "Abhilash Chowdhary",
"location": {
"raw": "San Francisco, California, United States"
}
}
}
}
]
}
]API key passed as a Bearer token in the Authorization header.
API version to use. Must match a supported version (e.g., "2025-11-01").
"2025-11-01"
Person identifier (LinkedIn URL or business email) and optional field selection.
Request body for enriching or identifying a person. Provide exactly one identifier type — either LinkedIn profile URLs or business emails.
Comma-separated LinkedIn profile URLs (max 25)
[
"https://www.linkedin.com/in/abhilashchowdhary"
]Business email of the person to lookup
["abhilash@crustdata.com"]List of fields to include in response
[
"basic_profile.name",
"basic_profile.current_title",
"experience.employment_details.current"
]Minimum similarity score for email matching
0 <= x <= 10.5
Enriched person profiles
The specific input value that was matched (e.g., a LinkedIn URL or email address)
The type of identifier that was matched
professional_network_profile_url, business_email Array of person matches found for this identifier, ranked by confidence
Show child attributes
Was this page helpful?