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
Country Identifier Source 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
{
"identifier" : "76354771-K" ,
"country" : "CL"
}
Parameters
Field Type Required Description identifierstring ✅ Company tax ID. RUT for Chile, CNPJ for Brazil. Formatting optional. countrystring ✅ ISO 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
Field Type Description identifierstring The queried tax identifier countrystring Country code company_namestring Official legal company name statusstring active, inactive, or not_foundverifiedboolean true if active tax registrationfounded_yearinteger Year of first tax registration end_datestring Business termination date, or null sourcestring Data source (sii for Chile, receita_federal for Brazil)
Data sources and freshness
Country Source Freshness Chile 🇨🇱 SII — nómina pública de contribuyentes Up to 30 days (see data_as_of in response) Brazil 🇧🇷 Receita Federal via OpenCNPJ Real-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
Status Description 422Invalid or malformed identifier 422Country not supported 403Missing API key or module not in plan 503Data provider temporarily unavailable
Pricing
Plan Price Includes KYB $59/month 500 verifications Overage — $0.15 per extra verification
API Reference Full request/response schema with interactive examples.