Discover/autos.mercadolibre.com.ar API
live

autos.mercadolibre.com.ar APIautos.mercadolibre.com.ar

Search and retrieve car listings from MercadoLibre Argentina. Get title, brand, model, year, km, price, location, seller type, and image URL.

Endpoints
1
Updated
1mo ago
Try it
Page number (1-based).
Maximum number of listings to return per page (max 48).
Search query with words separated by hyphens or spaces (e.g., 'toyota-hilux-2020', 'ford-r
api.parse.bot/scraper/5361fcb5-518a-495a-bba6-5a78f0038d7c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/5361fcb5-518a-495a-bba6-5a78f0038d7c/search_cars?page=2&limit=10&query=ford-focus' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalclick to expand

Search for car listings on MercadoLibre Argentina. Returns structured data for each listing including title, brand, model, year, kilometers, price, currency, location, seller type, and main image URL. Results are paginated with up to 48 listings per page.

Input
ParamTypeDescription
pageintegerPage number (1-based).
limitintegerMaximum number of listings to return per page (max 48).
querystringSearch query with words separated by hyphens or spaces (e.g., 'toyota-hilux-2020', 'ford-ranger', 'volkswagen-amarok-2022').
Response
{
  "type": "object",
  "fields": {
    "page": "integer - current page number",
    "count": "integer - number of listings returned on this page",
    "query": "string - the search query used",
    "listings": "array of listing objects with id, title, brand, model, year, km, price_original, currency, location, seller_type, image_url, url, category_id",
    "total_pages": "integer - total number of pages",
    "total_results": "integer - total number of results available"
  },
  "sample": {
    "data": {
      "page": 1,
      "count": 10,
      "query": "toyota-hilux-2020",
      "listings": [
        {
          "id": "MLA3294165114",
          "km": 105000,
          "url": "https://auto.mercadolibre.com.ar/MLA-3294165114-toyota-hilux-pick-up-40-v6-gr-s-ii-4x4-6at-_JM",
          "year": 2020,
          "brand": "Toyota",
          "model": "Hilux",
          "title": "Toyota Hilux Pick-up 4.0 V6 Gr-s Ii 4x4 6at",
          "currency": "USD",
          "location": "General San Martín - Bs.As. G.B.A. Norte",
          "image_url": "https://http2.mlstatic.com/D_NQ_NP_709112-MLA106797915220_022026-O.jpg",
          "category_id": "MLA1744",
          "seller_type": "private",
          "price_original": 45000
        }
      ],
      "total_pages": 3,
      "total_results": 121
    },
    "status": "success"
  }
}

About the autos.mercadolibre.com.ar API

The MercadoLibre Argentina Cars API provides access to vehicle listings from autos.mercadolibre.com.ar through a single search_cars endpoint that returns up to 12 structured fields per listing — including brand, model, year, kilometers, price with currency, seller type, and location. Each response includes pagination metadata covering total results and total pages, making it straightforward to traverse large result sets across Argentina's most active online car marketplace.

What the API Returns

The search_cars endpoint returns an array of listing objects, each containing: id, title, brand, model, year, km, price_original, currency, location, seller_type, image_url, and url. At the response level, page, count, query, total_pages, and total_results give you the context needed to paginate through full result sets. Currency is returned alongside price so your application can handle ARS and USD listings without ambiguity.

Query and Pagination Parameters

The query parameter accepts hyphen- or space-separated terms (e.g., toyota-hilux-2020 or ford-ranger), making it easy to target a specific make, model, or year combination. Pagination is controlled by page (1-based integer) and limit (up to 48 listings per page). Together these let you scan hundreds of results programmatically — useful for price surveys or inventory snapshots across a specific segment like pickup trucks or compact sedans.

Seller and Location Data

Each listing includes a seller_type field that distinguishes between individual sellers and dealerships, and a location field that reflects the geographic area of the listing within Argentina. These two fields are particularly useful when building regional price-comparison tools or filtering results to specific provinces and city areas.

Source Coverage

MercadoLibre Argentina is one of the highest-volume used and new car marketplaces in the country. The API covers the public search surface for vehicle listings. Data points like full seller contact details, extended vehicle specifications, or financing options are not part of the current response schema.

Common use cases
  • Track price trends for a specific make/model/year combination over time using price_original and currency
  • Compare asking prices between individual sellers and dealerships using the seller_type field
  • Build a regional price map of Argentine car listings using the location field
  • Monitor new listings for a target vehicle segment by polling search_cars with a specific query
  • Aggregate mileage distributions for a model using the km field across paginated results
  • Populate a car valuation tool with live market comps from MercadoLibre Argentina listings
  • Identify the most-listed brands and models in a given price range by analyzing brand and price_original
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does MercadoLibre have an official developer API?+
Yes. MercadoLibre offers an official public API documented at developers.mercadolibre.com. It covers listings, categories, users, and orders across all MercadoLibre markets. This Parse API focuses specifically on the autos.mercadolibre.com.ar vehicle search surface and returns pre-structured car listing fields without requiring OAuth setup.
What does the `search_cars` endpoint return for each listing?+
Each listing object includes id, title, brand, model, year, km, price_original, currency, location, seller_type, image_url, and url. The response envelope also provides page, count, total_pages, and total_results for pagination.
How does pagination work and what is the maximum page size?+
The page parameter is 1-based. The limit parameter caps at 48 listings per page. The response includes total_results and total_pages so you can determine how many pages to iterate. If you request a page beyond total_pages, the count will be zero.
Does the API return detailed vehicle specifications such as engine size, transmission, or fuel type?+
Not currently. The API returns the core listing fields — brand, model, year, km, price, currency, location, seller type, and image URL — but not granular technical specs like engine displacement, transmission type, or fuel type. You can fork this API on Parse and revise it to add an endpoint that retrieves individual listing detail pages where those additional attributes appear.
Can I filter results by price range, year, or kilometers directly?+
Not currently. Filtering is done through the query string parameter, which accepts keyword terms like make, model, and year. Price range, maximum km, and year-range filters are not separate input parameters at this time. You can fork this API on Parse and revise it to add those filter parameters as additional inputs to the search_cars endpoint.
Page content last updated . Spec covers 1 endpoint from autos.mercadolibre.com.ar.
Related APIs in AutomotiveSee all →
car-part.com API
Search for recycled auto parts across thousands of vehicles and get detailed information on pricing, availability, and specifications from car-part.com. Find the exact parts you need with comprehensive search metadata and individual part details to compare options and locate the best deals.
honda.ca API
Get current Honda Canada vehicle pricing, lease and finance payment options, APR rates, and available incentives across all Canadian provinces to compare deals in real-time. Calculate custom payment scenarios and browse all Honda models with their latest promotional offers directly from Honda Canada's official pricing data.
autodoc.co.uk API
Find auto parts and check compatibility with your vehicle by browsing makes, models, and engines, then search for parts with detailed specifications and discover equivalent alternatives. Get everything you need to identify the right replacement parts for any car in the Autodoc catalog.
leboncoin.fr API
Search and retrieve detailed listings from Leboncoin across cars, real estate, jobs, and other categories with advanced filtering options. Access seller profiles, pricing analytics, and comprehensive listing details to find exactly what you're looking for on France's leading classifieds platform.
auctiontime.com API
Search and browse equipment and truck auction listings from AuctionTime.com, view detailed information about specific auctions, filter by category and auctioneer, and track auction results by date. Access comprehensive auction data including listings, categories, and auctioneer information all in one place.
yad2.co.il API
Search for apartments and cars on Yad2's marketplace and access detailed listing information including photos, prices, and specifications. Instantly reveal seller contact information to connect directly with real estate agents and car dealers.
turo.com API
Search for peer-to-peer car rentals across Turo by location and dates to browse available vehicles with pricing, specifications, and real-time availability. Get detailed information on specific cars to compare features and make rental decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.