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

Request body

identifier
string
Company tax ID — RUT (Chile, e.g. 77.261.280-K), CNPJ (Brazil, e.g. 28.591.276/0001-00), or NIT (Colombia, e.g. 900123456-1). One of identifier or domain is required.
domain
string
Company domain (e.g. empresa.com.br). Resolved to tax ID automatically. Supported for CL and BR only. One of identifier or domain is required.
country
string
required
ISO 3166-1 alpha-2 country code. Supported: CL, BR, CO.

Response

identifier
string
The queried tax ID (RUT, CNPJ, or NIT).
total_orders
integer
Total number of contracts returned.
orders
array
List of contract objects.
source
string
Data source: mercadopublico (CL), pncp (BR), secopii (CO).
curl -X POST https://api.enrichlatam.com/v1/tenders \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"identifier": "77.261.280-K", "country": "CL"}'
{
  "identifier": "77.261.280-K",
  "total_orders": 3,
  "orders": [
    {
      "code": "1003473-1501-SE26",
      "name": "Compra equipos computacionales",
      "status": "vigente"
    }
  ],
  "source": "mercadopublico"
}