Marketplace
No threads yet
Live

get_seller_reputation

mercadolibre.com.ar

Returns the seller name, numeric ID, reputation level, status signals, and public storefront status for an item on https://mercadolibre.com.ar.

Parameters2
Runs11
Updated3d ago
Operational11 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 get_seller_reputation?

Returns the seller name, numeric ID, reputation level, status signals, and public storefront status for an item on https://mercadolibre.com.ar. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_id, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "site": "<string>",
  "seller": {},
  "item_id": "<string>",
  "item_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e0748636-fb8e-4404-a599-c2be10d037e3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e0748636-fb8e-4404-a599-c2be10d037e3",
    "variables": {
        "item_id": "MLA3677475118",
        "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="e0748636-fb8e-4404-a599-c2be10d037e3") — the "get_seller_reputation" function, which returns the seller name, numeric ID, reputation level, status signals, and public storefront status for an item on https://mercadolibre.com.ar..

It takes item_id (str), timeout_seconds (int). Return the result as structured JSON.