Skip to main content
X-API-Key
string
required
Your API key. Requires the enrich module.

Request body

identifier
string
required
Company tax identifier. For Chile: RUT (e.g. 76354771-K).
country
string
required
ISO 3166-1 alpha-2 country code. Supported: CL.

Response

rut
string
Normalized RUT with verification digit.
razon_social
string
Official legal company name.
activo
boolean
true if the company has active tax registration.
inicio_actividades
string
ISO 8601 date of first tax activity registration.
actividad_economica
string
Primary economic activity description.
tipo_empresa
string
Legal entity type (SpA, SA, LTDA, etc.).
Name of the legal representative.
direccion
string
Full registered address.
region
string
Administrative region.
comuna
string
Municipality.
source
string
Data source identifier.
timestamp
string
ISO 8601 timestamp of the response.
curl -X POST https://api.enrichlatam.com/v1/enrich \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"identifier": "76354771-K", "country": "CL"}'
{
  "rut": "76354771-K",
  "razon_social": "EMPRESA EJEMPLO SpA",
  "activo": true,
  "inicio_actividades": "2018-03-15",
  "actividad_economica": "Actividades de consultoría de gestión empresarial",
  "tipo_empresa": "SOCIEDAD POR ACCIONES",
  "representante_legal": "Juan Pérez González",
  "direccion": "Av. Providencia 1234, Providencia, Región Metropolitana",
  "region": "Región Metropolitana",
  "comuna": "Providencia",
  "source": "baseapi",
  "timestamp": "2026-04-05T10:00:00Z"
}