MercadoPublico Chile - Licitaciones avatar

MercadoPublico Chile - Licitaciones

Pricing

from $0.10 / 1,000 results

Go to Apify Store
MercadoPublico Chile - Licitaciones

MercadoPublico Chile - Licitaciones

Access Chilean public procurement data from MercadoPublico.cl. Query licitaciones, organizations, sellers, proposals, awards, and bidding stats. Supports single-entity lookups and filtered bulk extraction.

Pricing

from $0.10 / 1,000 results

Rating

0.0

(0)

Developer

Licify

Licify

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

13 days ago

Last modified

Share

MercadoPublico Chile - Public Procurement Data

Access structured data from Chile's public procurement platform MercadoPublico.cl. Extract licitaciones (tenders), organization profiles, seller information, proposals, award results, and bidding statistics.

What data can you get?

  • Licitaciones — Tender details including name, status, budget, dates, buyer organization, description, and product categories
  • Organizations — Public buyer entities with contact info, RUT, and procurement metrics (complaints, payment times)
  • Sellers — Supplier profiles with contact details, extracted emails/phones, proposal history, and award bid records
  • Proposals — Bids submitted by sellers for each licitacion, including pricing and ranking
  • Awards — Winning bids and full bid comparison tables (all participants)
  • Bidding Statistics — Pre-computed analytics: win rates, price dispersion, top bidders, market competitiveness by buyer+product
  • Files — Attached documents for each licitacion
  • Activity — Change history for licitaciones (status changes, new proposals, new attachments, awards)

Examples

Get a specific licitacion

Retrieve full details for a single procurement by its ID.

{
"action": "get-licitacion",
"entityId": "4455-77-LE25"
}

Sample output:

{
"licitacion_id": "4455-77-LE25",
"lic_name": "Adquisicion de equipamiento informatico",
"lic_status": "Publicada",
"lic_budget": "15000000",
"lic_currency": "Peso Chileno",
"lic_buyer_name": "HOSPITAL DE CHILLAN",
"date_publicacion": "2025-06-15 10:30:00",
"date_cierre": "2025-06-25 15:00:00",
"lic_description": "Adquisicion de notebooks y monitores..."
}

Extract all published licitaciones from a date range

Bulk-extract tenders with filters. The actor paginates automatically.

{
"action": "list-licitaciones",
"status": "Publicada",
"dateFrom": "2025-01-01",
"dateTo": "2025-06-30",
"maxItems": 500
}

Get all licitaciones from a specific organization

{
"action": "list-organization-licitaciones",
"entityId": "7067",
"period": "12m",
"maxItems": 200
}

Look up a seller and their award history

{
"action": "get-seller",
"entityId": "76543210-K"
}
{
"action": "list-seller-award-bids",
"entityId": "76543210-K",
"period": "24m",
"maxItems": 1000
}

Sample output (award bids):

{
"licitacion_id": "1234-56-LE25",
"item_number": 1,
"item_description": "Notebook HP ProBook 450",
"unit_price": 650000,
"is_winner": 1,
"seller_name": "Tecnologia SpA",
"lic_name": "Adquisicion equipamiento TI",
"buyer_name": "HOSPITAL DE CHILLAN",
"date_adjudicacion": "2025-05-20"
}

Compare all bids for a licitacion

See every bid submitted (winners and losers) to analyze competitiveness.

{
"action": "list-award-bids",
"entityId": "4455-77-LE25"
}

Get bidding statistics for a buyer + product combination

Pre-computed market analytics: average prices, number of participants, win rates, top bidders.

{
"action": "get-bidding-stats",
"entityId": "7067",
"secondaryId": "51142600"
}

Get seller contacts (extracted emails and phones)

{
"action": "get-seller-contacts",
"entityId": "76543210-K"
}

List all proposals for a licitacion

{
"action": "list-proposals",
"entityId": "4455-77-LE25"
}

Dump reference lists

Get all organizations, categories, or sellers to discover available entity IDs.

{ "action": "list-organizations" }
{ "action": "list-categories" }
{
"action": "list-sellers",
"maxItems": 5000
}

Input Reference

FieldTypeRequiredDescription
actionstringYesAction to perform (see below)
entityIdstringDependsEntity identifier (licitacion ID, org code, seller RUT, category code)
secondaryIdstringNoSecondary identifier (product code for get-bidding-stats)
statusstringNoFilter by licitacion status: Publicada, Cerrada, Adjudicada, Desierta, Revocada
organizationstringNoFilter by buyer organization code
dateFromstringNoStart date filter (YYYY-MM-DD)
dateTostringNoEnd date filter (YYYY-MM-DD)
periodstringNoTime period: 6m, 12m, 24m, all (default: 6m)
maxItemsintegerNoMaximum items to extract (default: 100, max: 10,000)

All Available Actions

Single-Entity Lookups

ActionentityIdDescription
get-licitacionLicitacion ID (e.g., 4455-77-LE25)Full tender details with buyer name
get-organizationOrg code (e.g., 7067) or RUTOrganization profile
get-organization-metricsOrg code or RUTComplaints, payment metrics
get-categoryCategory code (e.g., 51142600)Product category info
get-sellerSeller RUT (e.g., 76543210-K)Supplier profile
get-seller-contactsSeller RUTExtracted emails and phone numbers
get-bidding-statsBuyer org code + secondaryId (product code)Market competitiveness analytics
get-seller-statsSeller RUTSeller's bidding performance across markets
get-buyer-statsBuyer org codeBuyer's procurement activity by product

Per-Entity Lists

ActionentityIdDescription
list-proposalsLicitacion IDAll proposals submitted
list-award-winnersLicitacion IDWinning bids only
list-award-bidsLicitacion IDAll bids (winners + losers)
list-filesLicitacion IDAttached documents
list-activityLicitacion IDChange history (status changes, new proposals, awards)
list-seller-proposalsSeller RUTAll proposals by this seller
list-seller-award-bidsSeller RUTAward bid history

Bulk Extraction (auto-paginated)

ActionRequired FiltersDescription
list-licitacionesAt least one of: status, organization, dateFrom, dateToFiltered tender list
list-organization-licitacionesentityIdOrganization's tenders (use period to control time range)
list-category-licitacionesentityIdTenders by product category

Reference Lists

ActionDescription
list-organizationsAll public buyer organizations
list-categoriesAll product categories
list-sellersAll registered sellers (paginated via maxItems)

Output

Data is pushed to the default Apify dataset. Each action returns different fields — licitaciones include licitacion_id, lic_name, lic_status, lic_budget, date_publicacion, etc. Sellers include seller_rut, seller_name, seller_email, etc. Use the dataset export to download results as JSON, CSV, or Excel.

Use Cases

  • Market research — Analyze procurement spending by organization, category, or time period
  • Competitive intelligence — Track which sellers win bids, at what prices, and how often
  • Lead generation — Find active suppliers by category with contact information
  • Price benchmarking — Compare bid prices across licitaciones for specific products
  • Procurement monitoring — Track new tenders and status changes for specific organizations or categories
  • Compliance & transparency — Audit public spending and award decisions