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 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

CountryInputSource
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

POST /v1/enrich
{
  "domain": "example.cl"
}

Parameters

FieldTypeRequiredDescription
domainstringconditionalCompany domain. Required if identifier is not provided.
identifierstringconditionalChilean 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

FieldTypeDescription
domainstringQueried domain. null when request used identifier directly.
company_namestringOfficial legal name
identifierstringTax ID β€” RUT (Chile) or CNPJ (Brazil)
activitystringPrimary economic activity
activity_codestringCIIU (CL) or CNAE (BR) activity code
sizestringsmall, large, or unknown
sales_rangestring | nullRevenue tier from SII tramo (CL only): micro, small, medium, large, or null
employees_rangestringEstimated employee range (when available)
regionstringAdministrative region (when available)
founded_yearintegerYear of first tax registration
statusstringactive or inactive
tech_stackarrayDetected technologies (coming soon)
emailsarrayVerified contact emails (coming soon)
countrystringDetected country code
sourcestringData source

Error responses

StatusDescription
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

PlanPriceIncludes
Enrich$49/month500 lookups
Overageβ€”$0.10 per extra lookup

API Reference

Full request/response schema with interactive examples.