Skip to main content
X-API-Key
string
required
Your API key. Requires the tax_health module.

Request body

identifier
string
required
Company RUT (e.g. 76.354.771-K). Formatting is optional. Personal RUTs (natural persons) are not accepted.
country
string
required
ISO 3166-1 alpha-2 country code. Supported: CL.

Response

identifier
string
The queried RUT, as provided.
company_name
string
Official company name from SII.
country
string
Country code.
status
string
Tax registration status: active, inactive, or not_found.
tax_debtor
boolean | null
true if the company appears on the SII nómina de deudores tributarios. null if the registry has not been synced yet (transient post-deploy state).
tax_debt_amount
number | null
Outstanding tax debt in CLP. null if not a debtor or amount not available.
company_age_years
integer | null
Years since first SII registration. null if registration date unavailable.
deregistered_at
string | null
ISO date when the company was deregistered. Only present for inactive companies.
revenue_tier
string | null
SII tramo classification: micro, small, medium, or large. null if not available.
risk_signals
array
List of risk flag strings. Empty if no signals detected. Possible values: tax_debtor, inactive_company, recently_deregistered, new_company, micro_revenue_tier.
source
string
Always sii.
data_as_of
string | null
ISO date of the last SII Capa A registry sync. Use this to assess data freshness.
curl -X POST https://api.enrichlatam.com/v1/tax-health \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"identifier": "76.354.771-K", "country": "CL"}'
{
  "identifier": "76.354.771-K",
  "company_name": "FALABELLA S.A.",
  "country": "CL",
  "status": "active",
  "tax_debtor": false,
  "tax_debt_amount": null,
  "company_age_years": 35,
  "deregistered_at": null,
  "revenue_tier": "large",
  "risk_signals": [],
  "source": "sii",
  "data_as_of": "2026-03-15"
}