Marketplace
No threads yet
Live

search_products

mercadolibre.com

Searches product listings on https://mercadolibre.com by keyword, site, and page. Returns product cards with pricing, image, seller, ratings, and non-empty listing fields.

Parameters4
Runs12
Updated8d ago
Degraded12 runs · 41.6% 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 search_products?

Searches product listings on https://mercadolibre.com by keyword, site, and page. Returns product cards with pricing, image, seller, ratings, and non-empty listing fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, site_id, page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "source": "<string>",
  "site_id": "<string>",
  "products": [
    {
      "price": 0,
      "title": "<string>",
      "rating": 0,
      "seller": "<string>",
      "item_id": "<string>",
      "currency": "<string>",
      "image_url": "<string>",
      "permalink": "<string>",
      "review_count": 0,
      "category_hint": "<string>",
      "original_price": 0,
      "additional_fields": {}
    }
  ],
  "page_size": 0,
  "total_matches": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0bd52726-7b2a-4392-8a36-a88359ab0975/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0bd52726-7b2a-4392-8a36-a88359ab0975",
    "variables": {
        "query": "",
        "site_id": "MLM",
        "page": 1,
        "page_size": 10
    }
}'

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="0bd52726-7b2a-4392-8a36-a88359ab0975") — the "search_products" function, which searches product listings on https://mercadolibre.com by keyword, site, and page. Returns product cards with pricing, image, seller, ratings, and non-empty listing fields..

It takes query (str), site_id (str), page (int), page_size (int). Return the result as structured JSON.