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

Request body

rut
string
required
Organization RUT (e.g. 61.979.440-7).
country
string
required
ISO 3166-1 alpha-2 country code. Supported: CL.

Response

rut
string
The queried organization RUT.
organization
string
Organization name.
tenders
array
List of tender objects.
total
integer
Total number of tenders returned.
source
string
Data source (mercadopublico for Chile).
timestamp
string
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"
}