Marketplace
No threads yet
Live

list_current_deals

mercadolibre.com.ar

Returns up to 54 current promoted product cards from https://mercadolibre.com with prices, discounts, ratings, shipping, seller, installments and promotion details across supported countries.

Parameters4
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_current_deals?

Returns up to 54 current promoted product cards from https://mercadolibre.com with prices, discounts, ratings, shipping, seller, installments and promotion details across supported countries. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass country, page, limit, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "count": 0,
  "deals": [
    {}
  ],
  "country": "<string>",
  "site_id": "<string>",
  "page_size": 0,
  "source_url": "<string>",
  "currency_id": "<string>",
  "country_name": "<string>",
  "total_results": 0,
  "primary_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/aa1655d9-4b24-4104-beb6-f4e560d734d7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "aa1655d9-4b24-4104-beb6-f4e560d734d7",
    "variables": {
        "country": "AR",
        "page": 1,
        "limit": 54,
        "timeout_seconds": 30
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="aa1655d9-4b24-4104-beb6-f4e560d734d7") — the "list_current_deals" function, which returns up to 54 current promoted product cards from https://mercadolibre.com with prices, discounts, ratings, shipping, seller, installments and promotion details across supported countries..

It takes country (str), page (int), limit (int), timeout_seconds (int). Return the result as structured JSON.