POST
/
companies
/
enrich
/
basic
/
bulk
Bulk Basic Enrichment
curl --request POST \
  --url https://api.village.do/v1/companies/enrich/basic/bulk \
  --header 'Content-Type: application/json' \
  --header 'user-identifier: <user-identifier>' \
  --header 'x-access-token: <api-key>' \
  --data '{
  "identifiers": [
    {
      "village_id": "company-123"
    },
    {
      "linkedin_url": "https://linkedin.com/company/example"
    },
    {
      "domain": "google.com"
    }
  ]
}'
{
  "success": true,
  "data": [
    {
      "company": {
        "village_id": "company-123",
        "name": "TechCorp Inc",
        "linkedin_url": "https://linkedin.com/company/techcorp",
        "website": "https://techcorp.com",
        "domain": "techcorp.com",
        "employee_size": 500,
        "industry": [
          "Technology",
          "Software"
        ],
        "crunchbase_url": "https://crunchbase.com/organization/techcorp",
        "founded": 2015,
        "description": "Leading technology company specializing in enterprise software solutions."
      }
    }
  ]
}

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.

Body

application/json

Response

200
application/json

Successfully processed bulk enrichment request

The response is of type object.