Skip to main content
The Enrich module returns structured company data beyond the basics — legal details, contact information, and firmographic fields useful for sales, compliance, and onboarding workflows.

What it returns

  • All KYB fields (legal name, active status, address, economic activity)
  • Legal representative name
  • Company type / legal entity form
  • Capital information (where available)
  • Contact data (email, phone, website) when available

Supported countries

CountryIdentifierSource
Chile 🇨🇱RUT (e.g. 76354771-K)SII + BaseAPI.cl

Request

POST /v1/enrich
{
  "identifier": "76354771-K",
  "country": "CL"
}

Parameters

FieldTypeRequiredDescription
identifierstringCompany tax ID. For Chile: RUT with or without dash.
countrystringISO 3166-1 alpha-2 country code. Currently: CL.

Response

{
  "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"
}

Response fields

FieldTypeDescription
rutstringNormalized RUT
razon_socialstringOfficial legal company name
activobooleanActive tax registration status
inicio_actividadesstringISO date of first tax activity
actividad_economicastringPrimary economic activity
tipo_empresastringLegal entity type (SpA, SA, LTDA, etc.)
representante_legalstringName of legal representative
direccionstringFull registered address
regionstringAdministrative region
comunastringMunicipality
sourcestringData source
timestampstringISO 8601 response timestamp

Error responses

StatusDescription
404Company not found
400Invalid identifier format
403Missing API key or module not in plan

Pricing

PlanPriceIncludes
Enrich$49/month500 lookups
Overage$0.12 per extra lookup

API Reference

Full request/response schema with interactive examples.