Skip to main content
POST
/
v2
/
people
/
enrich
Enrich Person Profile (Basic)
curl --request POST \
  --url https://api.village.do/v2/people/enrich \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "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 basic person enrichment

linkedin_url
string
required

LinkedIn person profile URL

Minimum string length: 1
Example:

"https://linkedin.com/in/johndoe"

Response

Person enriched successfully

data
object
required

Response for basic person enrichment

metadata
object
required