curl --request POST \
--url https://api.crustdata.com/person/identify \
--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"
]
}
'{
"results": [
{
"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",
"name": "Abhilash Chowdhary"
}
}
}
]
}
]
}Identify and resolve a person from a LinkedIn profile URL or business email address. Returns structured person data with confidence scoring indicating the quality of the match. Useful for verifying identity and retrieving canonical person records from partial identifiers.
curl --request POST \
--url https://api.crustdata.com/person/identify \
--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"
]
}
'{
"results": [
{
"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",
"name": "Abhilash Chowdhary"
}
}
}
]
}
]
}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) for identification.
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
Identified person profiles
Response from the person identify endpoint containing an array of identification results.
Array of identification results, one per input identifier
Show child attributes
[]Was this page helpful?