GET
/
people
/
enrich
/
emails
/
{identifier}
Enrich Email
curl --request GET \
  --url https://api.village.do/v1/people/enrich/emails/{identifier} \
  --header 'user-identifier: <user-identifier>' \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "email": "[email protected]",
    "linkedinUrl": "https://www.linkedin.com/in/richard-hendricks/"
  }
}

Authorizations

x-access-token
string
header
required

JWT token obtained from /users/authorization endpoint

Headers

user-identifier
string
required

Specify the user making the request. This identifier should match the one you used when integrating the user with Village. Not needed when using user token authentication.

Path Parameters

identifier
string
required

LinkedIn URL or Village ID

Response

200
application/json

Successfully enriched email

The response is of type object.