Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.enrichlatam.com/llms.txt

Use this file to discover all available pages before exploring further.

X-API-Key
string
required
Your API key. Requires the enrich module.

Request body

domain
string
Company domain (e.g. example.cl, example.com.br). The API resolves the domain to a tax ID automatically. Supports .cl (Chile) and .com.br / .br (Brazil). Required if identifier is not provided.
identifier
string
Direct tax ID — Chilean RUT (e.g. 76.123.456-7) or Brazilian CNPJ (e.g. 11.222.333/0001-81). Skips domain resolution entirely — faster and more accurate when you already know the company ID. Country is auto-detected from the identifier format. Required if domain is not provided.

Response

domain
string
The queried domain. null when the request used identifier directly.
company_name
string
Official legal company name.
identifier
string
Tax ID resolved from the domain — RUT (Chile) or CNPJ (Brazil).
activity
string
Primary economic activity description.
activity_code
string
Economic activity code — CIIU (Chile) or CNAE (Brazil).
size
string
Company size: small, large, or unknown.
employees_range
string
Estimated employee range. null if unavailable.
region
string
Administrative region. null if unavailable.
founded_year
integer
Year of first tax registration. null if unavailable.
status
string
Registration status: active or inactive.
tech_stack
array
Detected technologies. Always null — use /v1/tech to query technology stack separately.
emails
array
Verified contact emails. Always null — coming in a future release.
country
string
Detected country code.
source
string
Data source identifier: sii (Chile), receita_federal (Brazil).
data_as_of
string
Date of the last SII registry sync (ISO 8601). Always present for Chile. null for Brazil (data fetched live from Receita Federal).
curl -X POST https://api.enrichlatam.com/v1/enrich \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain": "example.cl"}'
{
  "domain": "example.cl",
  "company_name": "Empresa Ejemplo Spa",
  "identifier": "76.354.771-K",
  "activity": "Business Management Consulting Activities",
  "activity_code": "7020",
  "size": "small",
  "employees_range": null,
  "region": null,
  "founded_year": 2018,
  "status": "active",
  "tech_stack": null,
  "emails": null,
  "country": "CL",
  "source": "sii",
  "data_as_of": "2026-04-01"
}