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

Request body

rut
string
Chilean company RUT (e.g. 77.261.280-K). Required if domain is not provided.
domain
string
Company .cl domain. Resolved to RUT automatically. Required if rut is not provided.

Response

rut
string
The queried company RUT.
total
integer
Total number of awarded contracts found.
contracts
array
List of awarded contract objects.
source
string
Data source (mercadopublico).
curl -X POST https://api.enrichlatam.com/v1/tenders/awarded \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"rut": "77.261.280-K"}'
{
  "rut": "77.261.280-K",
  "total": 2,
  "contracts": [
    {
      "code": "2755-2-LP26",
      "name": "Mantención sistemas TI",
      "status": "adjudicada",
      "amount": 15000000.0,
      "currency": "CLP",
      "awarded_at": "2026-03-15T00:00:00",
      "buyer": "Ministerio de Salud",
      "buyer_rut": "61.002.001-3"
    },
    {
      "code": "1003473-1501-SE26",
      "name": "Soporte infraestructura",
      "status": "finalizada",
      "amount": 8500000.0,
      "currency": "CLP",
      "awarded_at": "2026-01-10T00:00:00",
      "buyer": "Municipalidad de Santiago",
      "buyer_rut": "69.070.300-8"
    }
  ],
  "source": "mercadopublico"
}