GET
/
people
/
enrich
/
emails
/
bulk
/
{identifiers}
Enrich Emails (Bulk)
curl --request GET \
  --url https://api.village.do/v1/people/enrich/emails/bulk/{identifiers} \
  --header 'user-identifier: <user-identifier>' \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "profiles": [
      {
        "linkedinUrl": "https://www.linkedin.com/in/richard-hendricks",
        "email": "[email protected]"
      },
      {
        "linkedinUrl": "https://www.linkedin.com/in/erlich-bachman",
        "email": "[email protected]"
      },
      {
        "villageId": "vill_789xyz",
        "error": "Person not found or missing LinkedIn information for provided Village ID."
      }
    ]
  }
}

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

identifiers
string
required

Semicolon-separated list of LinkedIn URLs or Village IDs

Response

200
application/json

Successfully enriched emails

The response is of type object.