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.

The KYB module lets you verify any company’s legal status and tax registration directly from official government sources.

What it returns

For a given tax ID (RUT in Chile, CNPJ in Brazil), the API returns:
  • Legal company name (company_name)
  • Active status (verified) and registration status (status)
  • Year of first tax activity (founded_year)
  • Business termination date if applicable (end_date)

Supported countries

CountryIdentifierSource
Chile 🇨🇱RUT (e.g. 76354771-K)SII (Servicio de Impuestos Internos)
Brazil 🇧🇷CNPJ (e.g. 12.345.678/0001-90)Receita Federal via OpenCNPJ

Request

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

Parameters

FieldTypeRequiredDescription
identifierstringCompany tax ID. RUT for Chile, CNPJ for Brazil. Formatting optional.
countrystringISO 3166-1 alpha-2 country code. Supported: CL, BR.

Response

{
  "identifier": "76354771-K",
  "country": "CL",
  "company_name": "Empresa Ejemplo Spa",
  "status": "active",
  "verified": true,
  "founded_year": 2018,
  "end_date": null,
  "source": "sii"
}

Response fields

FieldTypeDescription
identifierstringThe queried tax identifier
countrystringCountry code
company_namestringOfficial legal company name
statusstringactive, inactive, or not_found
verifiedbooleantrue if active tax registration
founded_yearintegerYear of first tax registration
end_datestringBusiness termination date, or null
sourcestringData source (sii for Chile, receita_federal for Brazil)

Data sources and freshness

CountrySourceFreshness
Chile 🇨🇱SII — nómina pública de contribuyentesUp to 30 days (see data_as_of in response)
Brazil 🇧🇷Receita Federal via OpenCNPJReal-time
For Chile, the response includes a data_as_of field with the date of the last registry synchronization. If your use case requires real-time verification, contact team@enrichlatam.com.

Error responses

StatusDescription
422Invalid or malformed identifier
422Country not supported
403Missing API key or module not in plan
503Data provider temporarily unavailable

Pricing

PlanPriceIncludes
KYB$59/month500 verifications
Overage$0.15 per extra verification

API Reference

Full request/response schema with interactive examples.