Skip to main content
POST
/
v2
/
people
/
enrich
/
emails
/
bulk
Bulk Get Person Emails
curl --request POST \
  --url https://api.village.do/v2/people/enrich/emails/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "identifiers": [
    {
      "linkedin_url": "https://linkedin.com/in/johndoe"
    }
  ]
}
'
{
  "data": {
    "success": true,
    "data": {
      "profiles": [
        {
          "linkedinUrl": "<string>",
          "villageId": "<string>",
          "email": "<string>",
          "error": "<string>"
        }
      ]
    }
  },
  "metadata": {
    "request_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

JWT token obtained from authentication endpoint

Body

application/json

Request for bulk email enrichment (max 10 identifiers)

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

Person identifier - provide one of: linkedin_url or url

Response

Bulk email retrieval completed (may include partial failures)

data
object
required

Response for bulk email enrichment

metadata
object
required