Mercadolibre API
Overview
Mercado Libre is the largest e-commerce marketplace in Latin America, and its API gives developers access to product listings, pricing, seller data, and order management across 18 countries. You can search millions of products, retrieve detailed item information, and build integrations for sellers operating on the platform. It is a key API for anyone building e-commerce tools targeting markets in Brazil, Argentina, Mexico, and the rest of Latin America.
Beginner Tip
Mercado Libre public search and item endpoints work without authentication, so you can explore the API immediately. Try fetching items with a GET request to the search endpoint using a keyword to see real marketplace data before setting up OAuth for seller operations.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Mercadolibre",
"description": "Manage sales, ads, products, services and Shops",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique Mercado Libre item identifier used to retrieve full product details title Product listing title as shown on the marketplace price Current price of the item in the local currency of the site currency_id ISO 4217 currency code for the listing price (e.g., ARS, BRL, MXN) available_quantity Number of units currently available for purchase condition Item condition, either "new" or "used" Implementation Example
const url = "https://developers.mercadolibre.cl/es_ar/api-docs-es";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Explore More
Similar APIs
View All →Best Buy
⭐ Beginner's PickThe Best Buy API gives you access to Best Buy's product catalog, store locations, pricing, and buying options in real time.
Dummy Products
Dummy Products provides programmatic access to an api to fetch dummy e-commerce products json data with placeholder images via REST API.
Lazada
The Lazada Open Platform API lets sellers and developers access Lazada's Southeast Asian marketplace to retrieve product data, manage orders, track seller performance metrics, and handle logistics.
Octopart
Octopart is an electronic component search engine, and its API gives you access to detailed part data including pricing from hundreds of distributors, stock availability, datasheets, and technical specifications.
OLX Poland
The OLX Poland API allows developers to integrate with OLX's Polish classifieds marketplace to post and manage adverts, communicate with users, and retrieve listing data.