Discover/Com API
live

Com APIautos.mercadolibre.com.ar

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

Endpoint health
verified 4d ago
search_cars
1/1 passing latest checkself-healing
Endpoints
1
Updated
21d ago

What is the Com 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 48 structured listings per page. Each result includes 12 data fields covering vehicle attributes such as brand, model, year, mileage, price, currency, location, seller type, and image URL, along with pagination metadata for iterating across the full result set.

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', 'ford-ranger', 'volkswagen-amarok').
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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/5361fcb5-518a-495a-bba6-5a78f0038d7c/search_cars?page=1&limit=10&query=toyota-hilux' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace autos-mercadolibre-com-ar-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: MercadoLibre Argentina car listings SDK — bounded, re-runnable."""
from parse_apis.mercadolibre_argentina_car_listings_api import MercadoLibre, SearchFailed

client = MercadoLibre()

# Search for Toyota Hilux listings, capped at 5 total items.
for listing in client.listings.search(query="toyota-hilux", limit=5):
    print(listing.title, listing.year, listing.price_original, listing.currency)

# Drill-down: take one Ford Ranger listing.
ranger = client.listings.search(query="ford-ranger", limit=1).first()
if ranger:
    print(ranger.id, ranger.brand, ranger.model, ranger.km, ranger.location)

# Typed error handling around a search call.
try:
    result = client.listings.search(query="volkswagen-amarok", limit=3).first()
    if result:
        print(result.title, result.seller_type, result.image_url)
except SearchFailed as exc:
    print(f"search failed: {exc}")

print("exercised: listings.search (toyota-hilux / ford-ranger / volkswagen-amarok)")
All endpoints · 1 totalmissing one? ·

Full-text search over MercadoLibre Argentina car listings. query matches vehicle makes, models, and years; results include price, mileage, location, and seller info. Paginates server-side at 48 items per page. Each listing carries an id, title, brand (first word of title), model (second word), year, km, price_original, currency (USD or ARS), location, seller_type (private, dealer, official_store), image_url, url, and category_id.

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', 'ford-ranger', 'volkswagen-amarok').
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",
      "listings": [
        {
          "id": "MLA1825567681",
          "km": 187000,
          "url": "https://auto.mercadolibre.com.ar/MLA-1825567681-toyota-hilux-sw4-tdi-srx-aut-l16-blindada-rb3-_JM",
          "year": 2019,
          "brand": "Toyota",
          "model": "Hilux",
          "title": "Toyota Hilux Sw4 Toyota Hilux Sw4 Tdi Srx Aut L/16 Blindado Rb3",
          "currency": "USD",
          "location": "Capital Federal - Capital Federal",
          "image_url": "https://http2.mlstatic.com/D_NQ_NP_726012-MLA106327140605_012026-O.jpg",
          "category_id": "MLA1744",
          "seller_type": "private",
          "price_original": 42000
        }
      ],
      "total_pages": 42,
      "total_results": 2000
    },
    "status": "success"
  }
}

About the Com API

What the API Returns

The search_cars endpoint accepts a query string — vehicle brand, model, and year terms joined by hyphens or spaces (e.g., toyota-hilux, ford-ranger) — and returns an array of Listing objects. Each listing carries a unique id, title, brand, model, year, km, price_original, currency, location, seller_type, image_url, and a direct url to the listing on MercadoLibre Argentina.

Pagination and Result Counts

The response includes total_results (total matching listings in the index) and total_pages alongside the current page and count (listings on this page). Use the page parameter (1-based) to walk through result sets, and the optional limit parameter to cap how many listings come back per request (maximum 48). A query for a popular model like toyota-hilux-2020 may return thousands of results across many pages.

Seller and Location Fields

The seller_type field distinguishes between individual sellers and dealerships, which matters for market analysis and lead qualification. The location field reflects the Argentine province or city associated with the listing, enabling regional price comparisons. The currency field captures whether the price is quoted in Argentine pesos (ARS) or US dollars (USD), which is common in the Argentine used-car market.

Query Behavior

The query parameter maps to brand, model, and year terms as they appear in MercadoLibre Argentina's vehicle category. Searches are not case-sensitive, and hyphen-separated terms (volkswagen-amarok-2019) work the same as space-separated terms. There is no separate filter parameter for year, fuel type, or transmission — filtering by these attributes requires including them in the query string or post-processing results using the year and km fields returned per listing.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for autos.mercadolibre.com.ar — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when autos.mercadolibre.com.ar changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official autos.mercadolibre.com.ar API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price trends for a specific make, model, and year (e.g., Toyota Hilux 2020) across multiple pages of listings.
  • Compare asking prices between individual sellers and dealerships using the seller_type field.
  • Build a regional price map of used cars across Argentine provinces using the location field.
  • Identify mileage-to-price ratios for a vehicle model by correlating km and price_original across listings.
  • Monitor new listings for a target vehicle by polling search_cars and diffing id values over time.
  • Detect whether listings are priced in ARS or USD using the currency field for currency-aware price normalization.
  • Feed listing URLs and images into a vehicle comparison tool using the url and image_url fields.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 operates a public developer platform at https://developers.mercadolibre.com.ar. It provides official REST endpoints for listings, categories, and more, but requires application registration and OAuth authentication. The Parse API covers vehicle listings from the Argentine cars vertical without requiring you to manage credentials or OAuth flows.
What does the `seller_type` field contain, and how specific is it?+
The seller_type field indicates whether the listing was posted by an individual (private seller) or a dealership/professional seller. It does not return a seller name, contact details, or seller rating. Those fields are not currently exposed. You can fork this API on Parse and revise it to add the missing endpoint if you need seller profile data.
Can I filter listings by year, price range, or mileage directly in the request?+
Not currently. The search_cars endpoint accepts a query string and page/limit pagination parameters only. Filtering by year, price range, or mileage must be done by including terms in the query string (e.g., toyota-hilux-2020) or by filtering the returned year, price_original, and km fields client-side. You can fork this API on Parse and revise it to add dedicated filter parameters.
Does the API cover MercadoLibre car listings from other countries such as Mexico or Brazil?+
Not currently. The API is scoped to autos.mercadolibre.com.ar (Argentina only). Listings from MercadoLibre Mexico, Brazil, Chile, or other country subdomains are not included. You can fork this API on Parse and revise it to target a different country's MercadoLibre autos domain.
How fresh are the listings returned by the API?+
Results reflect the state of active listings on MercadoLibre Argentina at the time of the request. Listings that have been sold, paused, or removed from the site will not appear. There is no timestamp field per listing indicating when it was originally posted or last updated — the API does not expose listing creation or modification dates.
Page content last updated . Spec covers 1 endpoint from autos.mercadolibre.com.ar.
Related APIs in AutomotiveSee all →
mercadolibre.com.ar API
Search for products, cars, and real estate listings on MercadoLibre Argentina and access detailed information including product specifications, customer reviews, and seller profiles. Get comprehensive market data to compare prices, evaluate sellers, and make informed purchasing decisions across multiple categories.
cars.com API
Search for vehicles on Cars.com using filters like price, make, and model, then get detailed specifications and dealer inventory information for any listing you're interested in. Access comprehensive vehicle details including pricing, features, and dealer contact information all in one place.
chileautos.cl API
Search car listings and get detailed vehicle information from Chile's largest auto marketplace, including brands, specifications, and pricing. Find your next vehicle by browsing available cars with complete details all in one place.
autotempest.com API
Search and compare used and new car listings from multiple marketplaces in one place, saving time on your vehicle hunt. Find detailed inventory information across platforms to discover the best deals available.
carousell.com.my API
Search for used car listings on Carousell Malaysia and retrieve detailed information including pricing, mileage, vehicle specifications, condition, and seller details. Browse available inventory or look up comprehensive information on specific listings.
carsales.com API
Search for cars on Carsales and retrieve detailed listings with technical specifications, makes, and models. Filter and browse available vehicles by make to find exactly what you're looking for.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
mercadolibre.com.mx API
Search for products on Mercado Libre Mexico, view detailed product information with pricing and offers, browse categories, and research seller details all in one place. Access live marketplace data including product listings, category hierarchies, and current offers to help you find and compare items across Mexico's largest e-commerce platform.