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

Request body

identifier
string
required
Company tax identifier. For Chile: RUT (e.g. 76354771-K or 763547710).
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 from the tax registry.
activo
boolean
true if the company has active tax registration.
inicio_actividades
string
ISO 8601 date when the company first registered for tax activities.
actividad_economica
string
Primary economic activity description per the tax registry.
direccion
string
Registered address.
source
string
Data source identifier. sii for Chile.
timestamp
string
ISO 8601 timestamp of the API response.
curl -X POST https://api.enrichlatam.com/v1/kyb \
  -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",
  "direccion": "Av. Providencia 1234, Providencia, Región Metropolitana",
  "source": "sii",
  "timestamp": "2026-04-05T10:00:00Z"
}