POST /api/sicop/tenders/search
Price: 20 credits
Search Costa Rican public procurement procedures on SICOP by free text, or by title words, purchasing institution, procedure type, procedure number, classification code, open-for-bids state and a publication window. Returns the procedure number, title, state, institution and key dates per row.
Use `keyword` alone for an all-time text search; the other filters work inside a publication window of at most 180 days, which defaults to the last 180 days. Take a row `id` into sicop/tenders for the budget, conditions, lines and documents, and `buyer.id` into sicop/buyers.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)keyword string nullable — Free-text query over every published procedure (examples: "computadoras"; minLength: 2)buyer_id string nullable — Purchasing institution id, as in sicop/buyers (examples: "4000042152")procedure_type string nullable — Procedure type code (one of: "LN", "LI", "LA", "PP", "CD", "CE", "RE", "LY", "LE", "LD", "PE", "SE", "PX")procedure_number string nullable — Procedure number (examples: "2026LD-000043-0020600006"; minLength: 5)classification_code string nullable — Goods and services classification code (examples: "43211507"; minLength: 2)open_only boolean — Keep only procedures receiving bids (default: false)published_from string nullable — Earliest publication date (format: date; examples: "2026-03-01")published_to string nullable — Latest publication date (format: date; examples: "2026-09-22")count integer required — Max number of procedures to return (min: 1; max: 1000)@type string (default: "SicopTenderRow")id string requiredcartel_no string requiredcartel_seq string requiredprocedure_number string nullablestatus string nullablestage string nullablebuyer object nullable@type string (default: "SicopBuyerRef")id string nullablename string nullableprocedure_type string nullableprocedure_type_detail_code string nullablebid_document_type string nullablepublished_at integer nullablebid_start_at integer nullabledeadline_at integer nullableopening_at integer nullableexecutor_id string nullableexecutor_name string nullableis_secret boolean nullableis_closed boolean nullablehas_contract_request boolean nullablecountry string (default: "CR")422 — keyword was combined with other filters, or the publication window is longer than 180 days Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — The entity was not found, or a precondition failed Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.