Your API key. Requires the tenders module.
Request body
Chilean company RUT (e.g. 77.261.280-K). Required if domain is not provided.
Company .cl domain. Resolved to RUT automatically. Required if rut is not provided.
Response
Total number of awarded contracts found.
List of awarded contract objects.Show Contract object fields
Tender code from Mercado Público.
Contract status (e.g. adjudicada, finalizada).
Awarded amount in local currency. null if not disclosed.
Currency code (e.g. CLP).
Buying organization name.
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"
}