Skip to main content
POST
https://api.crustdata.com
/
person
/
enrich
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"
            }
          }
        }
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

API key passed as a Bearer token in the Authorization header.

Headers

x-api-version
string
required

API version to use. Must match a supported version (e.g., "2025-11-01").

Example:

"2025-11-01"

Body

application/json

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.

professional_network_profile_urls
string[]
required

Comma-separated LinkedIn profile URLs (max 25)

Example:
[
"https://www.linkedin.com/in/abhilashchowdhary"
]
business_emails
string[]

Business email of the person to lookup

Example:
["abhilash@crustdata.com"]
fields
string[]

List of fields to include in response

Example:
[
"basic_profile.name",
"basic_profile.current_title",
"experience.employment_details.current"
]
min_similarity_score
number | null

Minimum similarity score for email matching

Required range: 0 <= x <= 1
Example:

0.5

Response

Enriched person profiles

matched_on
string

The specific input value that was matched (e.g., a LinkedIn URL or email address)

match_type
enum<string>

The type of identifier that was matched

Available options:
professional_network_profile_url,
business_email
matches
object[]

Array of person matches found for this identifier, ranked by confidence