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 kyb module.

Request body

identifier
string
required
Company tax identifier. RUT for Chile (e.g. 76354771-K) or CNPJ for Brazil (e.g. 12.345.678/0001-90). Formatting is optional.
country
string
required
ISO 3166-1 alpha-2 country code. Supported: CL, BR.

Response

identifier
string
The queried tax identifier, as provided.
country
string
Country code of the queried company.
company_name
string
Official legal company name from the tax registry.
status
string
Registration status: active, inactive, or not_found.
verified
boolean
true if the company has active tax registration.
founded_year
integer
Year the company first registered for tax activities. null if unavailable.
end_date
string
Date of business termination, if applicable. null if still active.
source
string
Data source identifier. sii for Chile, receita_federal for Brazil.
data_as_of
string
Date of the last registry sync (ISO 8601). Present when data is served from the local SII database (Capa A). null when data is fetched in real time.
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"}'
{
  "identifier": "76354771-K",
  "country": "CL",
  "company_name": "Empresa Ejemplo Spa",
  "status": "active",
  "verified": true,
  "founded_year": 2018,
  "end_date": null,
  "source": "sii",
  "data_as_of": "2026-04-01"
}