Skip to main content
POST
/
api
/
enrichment
cURL
curl --request POST \
  --url https://client-api.salesfinity.co/api/enrichment \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "linkedin_urls": [
    "<string>"
  ]
}
'
{
  "_id": "<string>"
}
Initiates contact enrichment for one or more LinkedIn profiles. The enrichment process runs asynchronously and retrieves additional contact information from LinkedIn.

Request Body

  • linkedin_urls (required, array of strings): Array of LinkedIn profile URLs to enrich
    • Each URL must be a valid LinkedIn URL
    • Minimum: 1 URL

Example Request

{
  "linkedin_urls": [
    "https://www.linkedin.com/in/johndoe",
    "https://linkedin.com/in/janedoe"
  ]
}

Response

Returns an enrichment job ID that can be used to check the status of the enrichment process.
{
  "_id": "507f1f77bcf86cd799439011"
}
Use the Get Enrichment endpoint to check the status and retrieve results.

Authorizations

x-api-key
string
header
required

Body

application/json
linkedin_urls
string[]
required

Array of LinkedIn profile URLs to enrich

Minimum array length: 1

Response

201 - application/json

Enrichment job created successfully

_id
string

Enrichment job ID