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 Enrich module returns structured company data from official tax registries. Pass a domain or a tax ID (RUT/CNPJ) and get back a full company profile.
What it returns
Legal company name, tax ID, and registration status
Primary economic activity and CIIU/CNAE code
Company size classification
Year of founding
Tech stack and contact emails (coming soon)
Supported countries
Country Input Source Chile π¨π± .cl domain or RUTSII Brazil π§π· .com.br / .br domain or CNPJReceita Federal via OpenCNPJ
The country is detected automatically β from the domain TLD or the identifier format. No country parameter needed.
Request
By domain
By RUT (Chile)
By CNPJ (Brazil)
{
"domain" : "example.cl"
}
Parameters
Field Type Required Description domainstring conditional Company domain. Required if identifier is not provided. identifierstring conditional Chilean RUT or Brazilian CNPJ. Skips domain resolution β faster and more accurate when you already have the tax ID. Required if domain is not provided.
Response
{
"domain" : "example.cl" ,
"company_name" : "Empresa Ejemplo Spa" ,
"identifier" : "76.354.771-K" ,
"activity" : "Business Management Consulting Activities" ,
"activity_code" : "7020" ,
"size" : "small" ,
"employees_range" : null ,
"region" : null ,
"founded_year" : 2018 ,
"status" : "active" ,
"tech_stack" : [],
"emails" : [],
"country" : "CL" ,
"source" : "sii"
}
Response fields
Field Type Description domainstring Queried domain. null when request used identifier directly. company_namestring Official legal name identifierstring Tax ID β RUT (Chile) or CNPJ (Brazil) activitystring Primary economic activity activity_codestring CIIU (CL) or CNAE (BR) activity code sizestring small, large, or unknownsales_rangestring | null Revenue tier from SII tramo (CL only): micro, small, medium, large, or null employees_rangestring Estimated employee range (when available) regionstring Administrative region (when available) founded_yearinteger Year of first tax registration statusstring active or inactivetech_stackarray Detected technologies (coming soon) emailsarray Verified contact emails (coming soon) countrystring Detected country code sourcestring Data source
Error responses
Status Description 404Could not resolve tax ID for the given domain 422Country not supported (unsupported TLD) 403Missing API key or module not in plan 503Data provider temporarily unavailable
Pricing
Plan Price Includes Enrich $49/month 500 lookups Overage β $0.10 per extra lookup
API Reference Full request/response schema with interactive examples.