# Export a Mercado Libre search to Google Sheets

**Use case:** 

Export any Mercado Libre search to Google Sheets: one flat row per listing across Mexico, Argentina, Chile or Brazil. $2 per 1,000 returned.

## Input

```json
{
  "searches": [
    "https://autos.mercadolibre.com.mx/toyota"
  ],
  "testRun": false,
  "onlyFound": false,
  "includeKeywords": [],
  "excludeKeywords": [],
  "country": "mx",
  "vertical": "cars",
  "maxListingsPerSearch": 100,
  "sort": "relevance",
  "publishedToday": "auto",
  "residentialFallback": true,
  "deltaMode": false,
  "deltaName": "",
  "alertOnNew": true,
  "alertOnPriceDrop": true,
  "alertOnGone": false,
  "minPriceDropPct": 5,
  "skipFirstRun": false,
  "columns": [
    "searchQuery",
    "searchUrl",
    "country",
    "pageType",
    "publishedTodayOnly",
    "sortApplied",
    "viaResidentialProxy",
    "listingCount",
    "totalAvailable",
    "truncated",
    "newCount",
    "priceDropCount",
    "goneCount",
    "sellThroughRate",
    "medianPrice",
    "medianPriceCurrency",
    "monitorStatus",
    "listings",
    "listingId",
    "title",
    "price",
    "currency",
    "isPriceFrom",
    "vertical",
    "listingType",
    "isOfficialStore",
    "officialStoreName",
    "year",
    "km",
    "rooms",
    "bathrooms",
    "areaM2",
    "attributes",
    "location",
    "imageUrl",
    "changeType",
    "isNew",
    "previousPrice",
    "priceDropPct",
    "firstSeenAt",
    "lastSeenAt",
    "daysListed",
    "url"
  ],
  "expandRows": true,
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "query": {
    "label": "Search submitted",
    "format": "string"
  },
  "found": {
    "label": "Found?",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "message": {
    "label": "Details",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search (your input line)",
    "format": "string"
  },
  "searchUrl": {
    "label": "Mercado Libre page read",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "pageType": {
    "label": "Page type (search / category-deals)",
    "format": "string"
  },
  "publishedTodayOnly": {
    "label": "Filtered to \"Publicados hoy\"",
    "format": "boolean"
  },
  "sortApplied": {
    "label": "Sort applied",
    "format": "string"
  },
  "viaResidentialProxy": {
    "label": "Fetched through a residential IP",
    "format": "boolean"
  },
  "listingCount": {
    "label": "Listings returned",
    "format": "number"
  },
  "totalAvailable": {
    "label": "Total matching on Mercado Libre",
    "format": "number"
  },
  "truncated": {
    "label": "More results were available",
    "format": "boolean"
  },
  "newCount": {
    "label": "New listings this run",
    "format": "number"
  },
  "priceDropCount": {
    "label": "Price drops this run",
    "format": "number"
  },
  "goneCount": {
    "label": "Gone since last run (delisted, most often sold)",
    "format": "number"
  },
  "sellThroughRate": {
    "label": "Sell-through rate, watchlist lifetime (0-1)",
    "format": "number"
  },
  "medianPrice": {
    "label": "Median price of the page (most common currency)",
    "format": "number"
  },
  "medianPriceCurrency": {
    "label": "Currency of the median price",
    "format": "string"
  },
  "monitorStatus": {
    "label": "Monitoring status (quiet / seeded runs)",
    "format": "string"
  },
  "listings": {
    "label": "All listings found (full list)",
    "format": "array"
  },
  "listingId": {
    "label": "Mercado Libre item ID (MLM..., MLB...)",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "isPriceFrom": {
    "label": "Price is a \"from\" price",
    "format": "boolean"
  },
  "vertical": {
    "label": "Vertical (cars / property / category)",
    "format": "string"
  },
  "listingType": {
    "label": "Listing type (Mercado Libre domain)",
    "format": "string"
  },
  "isOfficialStore": {
    "label": "Official store",
    "format": "boolean"
  },
  "officialStoreName": {
    "label": "Official store name",
    "format": "string"
  },
  "year": {
    "label": "Year (cars)",
    "format": "number"
  },
  "km": {
    "label": "Kilometres (cars)",
    "format": "number"
  },
  "rooms": {
    "label": "Rooms / bedrooms (property)",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms (property)",
    "format": "number"
  },
  "areaM2": {
    "label": "Area m² (property)",
    "format": "number"
  },
  "attributes": {
    "label": "Attributes as shown on the card",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image",
    "format": "string"
  },
  "changeType": {
    "label": "new / price-drop / gone / seen",
    "format": "string"
  },
  "isNew": {
    "label": "Is this listing new?",
    "format": "boolean"
  },
  "previousPrice": {
    "label": "Previous price",
    "format": "number"
  },
  "priceDropPct": {
    "label": "Price drop %",
    "format": "number"
  },
  "firstSeenAt": {
    "label": "First seen on a run",
    "format": "string"
  },
  "lastSeenAt": {
    "label": "Last seen on a run",
    "format": "string"
  },
  "daysListed": {
    "label": "Days listed (first to last seen)",
    "format": "number"
  },
  "url": {
    "label": "Listing link",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Mercado Libre Scraper: Cars, Property & Category Alerts](https://apify.com/accountable_eel/mercadolibre-listing-lookup.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/accountable_eel/mercadolibre-listing-lookup.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/accountable_eel/mercadolibre-listing-lookup.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
