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

Request body

keyword
string
required
Search term to match against tender titles and descriptions (e.g. "software desarrollo").
country
string
required
ISO 3166-1 alpha-2 country code. Supported: CL.

Response

keyword
string
The search term used.
tenders
array
List of matching tender objects (same structure as /v1/tenders).
total
integer
Number of results returned.
source
string
Data source.
timestamp
string
ISO 8601 response timestamp.
Currently returns up to ~9 results from Mercado Público’s public search API. Higher volume and pagination are on the roadmap.
curl -X POST https://api.enrichlatam.com/v1/tenders/search \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword": "software desarrollo", "country": "CL"}'
{
  "keyword": "software desarrollo",
  "tenders": [
    {
      "id": "2312-45-LP24",
      "name": "Desarrollo de software de gestión municipal",
      "organization": "Municipalidad de Temuco",
      "status": "Publicada",
      "amount": 45000000,
      "currency": "CLP",
      "published_at": "2024-11-10",
      "closing_at": "2024-12-05",
      "url": "https://www.mercadopublico.cl/Licitacion/Index/2312-45-LP24"
    }
  ],
  "total": 1,
  "source": "mercadopublico",
  "timestamp": "2026-04-05T10:00:00Z"
}