Mercado Libre API
The MercadoLibre API returns product, price, deals and review data from Latin America's largest marketplace as clean JSON.
🤖 Using an AI assistant? Copy this link into ChatGPT / Claude / Cursor — it reads every endpoint and parameter instantly and tells you if this API fits your use case.
The primary deals endpoint returns items with id, title, permalink, current and previous price, discount and installments, and you can pull category items, reviews, suggestions and a category. It is built for price intelligence, catalog tools and LATAM e-commerce analytics that need MercadoLibre data without a scraper. One ReefAPI key, one shared credit pool, the standard envelope.
Real request and response JSON
Captured from the indexed primary action, deals, on .
{
"method": "POST",
"url": "https://api.reefapi.com/mercadolibre/v1/deals",
"headers": {
"x-api-key": "$REEF_KEY",
"content-type": "application/json"
},
"body": {
"site_id": "MLA"
}
}{
"ok": true,
"meta": {
"api": "mercadolibre",
"endpoint": "deals",
"mode": "live",
"latency_ms": 1890,
"record_count": 44,
"bytes": 0,
"cache_hit": false,
"site_id": "MLA",
"total_results": 11362,
"stop_reason": "max_pages",
"pagination": {
"page": 1,
"pages_fetched": 1,
"has_more": true
}
},
"data": {
"site_id": "MLA",
"items": [
{
"item_id": "MLA[redacted-phone]",
"product_id": "MLA68461502",
"position": 1,
"title": "Kit X4 Neumáticos Onyx Ny-[redacted-phone] R13 79t",
"permalink": "https://www.mercadolibre.com.ar/kit-x4-neumaticos-onyx-ny-[redacted-phone]-r13-79t/p/MLA68461502",
"price": {
"current": 226517,
"currency": "ARS",
"previous": null,
"discount_label": null,
"installments_text": "6 cuotas de",
"installments_no_interest": false
},
"reviews_summary": null,
"seller": null,
"is_official_store": false,
"shipping_text": null,
"brand": null,
"deal_label": null,
"discount_pct": 0
},
{
"item_id": "MLA[redacted-phone]",
"product_id": "MLA44880114",
"position": 2,
"title": "Microondas Vitta 23L 1000W Blanco Panel Digital 6 Modos Cocción",
"permalink": "https://www.mercadolibre.com.ar/microondas-vitta-23l-1000w-blanco-panel-digital-6-modos-coccion/p/MLA44880114",
"price": {
"current": 129878,
"currency": "ARS",
"previous": null,
"discount_label": null,
"installments_text": "6 cuotas de",
"installments_no_interest": false
},
"reviews_summary": null,
"seller": "Vitta Home",
"is_official_store": true,
"shipping_text": null,
"brand": null,
"deal_label": null,
"discount_pct": 0
},
{
"item_id": "MLA[redacted-phone]",
"product_id": "MLA41998086",
"position": 3,
"title": "Combo Taladro 750W y Amoladora Angular 115mm 720W Konan Bricolaje",
"permalink": "https://www.mercadolibre.com.ar/combo-taladro-750w-y-amoladora-angular-115mm-720w-konan-bricolaje/p/MLA41998086",
"price": {
"current": 82937,
"currency": "ARS",
"previous": null,
"discount_label": null,
"installments_text": "6 cuotas de",
"installments_no_interest": false
},
"reviews_summary": null,
"seller": "Vitta Home",
"is_official_store": true,
"shipping_text": null,
"brand": null,
"deal_label": null,
"discount_pct": 0
}
],
"total_results": 11362
}
}What the Mercado Libre API does
| Action | Description | Concrete use case | Key params |
|---|---|---|---|
| deals | MercadoLibre's live deals feed (Ofertas del día) — discounted listing cards with current and previous price, discount %, star rating + review count, seller (+official-store flag), shipping and brand. Multi-country, paginated, optional minimum-discount filter. Note: this is the site-wide daily-deals browse — it is NOT keyword-filtered. | Pricing teams call deals to get mercadoLibre's live deals feed (Ofertas del día). | site_id, page, max_pages, min_discount, sort |
| category_items | Products listed in a MercadoLibre category — title, price (current/previous/discount), rating, product link and picture. Pass a category_id (it's resolved to the category's /c/ landing page). The query-keyword search is login-walled on MercadoLibre, so this is the way to retrieve real products for a category. | Marketplace operators call category_items to get products listed in a MercadoLibre category. | category_id, site_id, sort, min_price, max_price |
| reviews | Buyer reviews for a catalog product — full review text, rating and date, paginated to gather ALL reviews in one call + a derived star distribution and average. Works across countries. | Catalog enrichment teams call reviews to get buyer reviews for a catalog product. | product_id, site_id, page, max_pages |
| suggest | Search-term autocomplete — what MercadoLibre suggests as a shopper types. | Retail analysts call suggest to get search-term autocomplete. | query, site_id |
| category | Browse the MercadoLibre category tree — a category's name, total item count, full path from root and its direct child subcategories. Drill down via children[].id; use `category_items` to retrieve the products within a category. | Pricing teams call category to get browse the MercadoLibre category tree. | category_id |
Call deals from your stack
curl -X POST https://api.reefapi.com/mercadolibre/v1/deals \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"site_id":"MLA"}'import requests
r = requests.post(
"https://api.reefapi.com/mercadolibre/v1/deals",
headers={"x-api-key": REEF_KEY},
json={
"site_id": "MLA"
},
)
print(r.json()["data"])const res = await fetch("https://api.reefapi.com/mercadolibre/v1/deals", {
method: "POST",
headers: {
"x-api-key": process.env.REEF_KEY,
"content-type": "application/json",
},
body: JSON.stringify({
"site_id": "MLA"
}),
});
const { ok, data, meta, error } = await res.json();Ask your MCP-connected assistant: call reefapi.mercadolibre.deals with {"site_id":"MLA"}.Who uses this API and why
- Pricing teams call deals and category_items to track MercadoLibre prices and promotions.
- Catalog tools use category and suggest to map a segment's products and demand.
- Review-analysis products pull reviews to monitor sentiment across LATAM listings.
Questions developers ask before integrating
What is the Mercado Libre API?
Mercado Libre API is a ReefAPI endpoint group for latin-american marketplace products and prices. It returns live JSON through POST requests under /mercadolibre/v1.
Is the Mercado Libre API free to try?
Yes. ReefAPI starts with 1,000 free credits, no card required. Mercado Libre calls use the same shared credit balance as every other ReefAPI engine.
Do I need a Mercado Libre login or account?
No login to Mercado Libre is needed for the API response. You call ReefAPI with your x-api-key header, and the playground can run live examples before you create a production key.
How fresh is the Mercado Libre data?
The page example is captured from a live deals call, and production requests fetch live data through ReefAPI rather than a static sample.
How many credits does the Mercado Libre API use?
Mercado Libre actions currently cost 1 credit per successful call. Failed or blocked calls are free, and all APIs draw from one credit pool.
Can I call Mercado Libre from an AI assistant or MCP client?
Yes. Connect ReefAPI once through MCP and your assistant can call mercadolibre actions with the same key, credit pool and JSON envelope used by normal REST requests.
Is the Mercado Libre API a Mercado Libre scraper?
It is the managed alternative to a DIY Mercado Libre scraper. Instead of building and maintaining your own scraper — proxies, headless browsers, captcha and constant breakage — you call one ReefAPI endpoint and get the same latin-american marketplace products and prices back as clean JSON.
Why does my Mercado Libre scraper keep getting blocked?
Most Mercado Libre scrapers break on anti-bot defenses, rate limits and IP bans that need rotating residential proxies and browser fingerprinting to clear. ReefAPI handles all of that for you — no proxies, no captchas, no maintenance — and returns live JSON. Blocked or failed calls are free.