Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.enrichlatam.com/llms.txt

Use this file to discover all available pages before exploring further.

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, BR, CO.

Response

total
integer
Number of results returned.
results
array
List of matching tender objects.
source
string
Data source: mercadopublico (CL), pncp (BR), secopii (CO).
For Brazil (PNCP), keyword filtering is applied client-side on the tender description field. For Colombia (SECOP II), keyword filtering is server-side via Socrata SoQL.
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"}'
{
  "total": 1,
  "results": [
    {
      "code": "2312-45-LP24",
      "name": "Desarrollo de software de gestión municipal",
      "status": "Publicada",
      "closes_at": "2026-04-16T13:00:00"
    }
  ],
  "source": "mercadopublico"
}