Skip to main content
POST
/
v2
/
people
/
enrich
/
bulk
Bulk Enrich Person Profiles (Basic)
curl --request POST \
  --url https://api.village.do/v2/people/enrich/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "identifiers": [
    {
      "linkedin_url": "https://linkedin.com/in/johndoe"
    }
  ]
}
'
{
  "data": {
    "success": true,
    "data": [
      {
        "profile": {
          "full_name": "<string>",
          "linkedin_url": "<string>",
          "current_work": {
            "position": "<string>",
            "start_date": "<string>",
            "end_date": "<string>",
            "company": {
              "id": "<string>",
              "type": "company",
              "name": "<string>",
              "linkedin_url": "<string>",
              "website": "<string>",
              "domain": "<string>"
            }
          },
          "avatar": "<string>"
        }
      }
    ]
  },
  "metadata": {
    "request_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

JWT token obtained from authentication endpoint

Body

application/json

Request for bulk person enrichment (max 10 identifiers)

identifiers
object[]
required
Required array length: 1 - 10 elements

Person identifier - provide one of: linkedin_url or url

Response

Bulk enrichment completed (may include partial failures)

data
object
required

Response for bulk person enrichment

metadata
object
required