GET
/
people
/
enrich
/
emails
/
bulk
/
{identifiers}
curl --request GET \
  --url https://api.village.do/v1/people/enrich/emails/bulk/{identifiers} \
  --header 'secret-key: <api-key>' \
  --header 'user-identifier: <user-identifier>'
{
  "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

secret-key
string
header
required

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.

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.