Your API key. Requires the tenders module.
Request body
Organization RUT (e.g. 61.979.440-7).
ISO 3166-1 alpha-2 country code. Supported: CL.
Response
The queried organization RUT.
List of tender objects.Show Tender object fields
Tender ID from Mercado Público.
Tender title/description.
Current tender status (e.g. Publicada, Adjudicada, Desierta).
Estimated amount in local currency.
Currency code (e.g. CLP).
ISO date when the tender was published.
ISO date of tender closing deadline.
Link to the official tender listing.
Total number of tenders returned.
Data source (mercadopublico for Chile).
ISO 8601 response timestamp.
curl -X POST https://api.enrichlatam.com/v1/tenders \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"rut": "61.979.440-7", "country": "CL"}'
{
"rut": "61.979.440-7",
"organization": "Municipalidad de Santiago",
"tenders": [
{
"id": "3419-72-LE24",
"name": "Adquisición de equipos computacionales",
"status": "Publicada",
"amount": 15000000,
"currency": "CLP",
"published_at": "2024-11-01",
"closing_at": "2024-11-15",
"url": "https://www.mercadopublico.cl/Licitacion/Index/3419-72-LE24"
}
],
"total": 1,
"source": "mercadopublico",
"timestamp": "2026-04-05T10:00:00Z"
}