Live
get_product_reviews
mercadolibre.com.arReturns aggregate ratings and paginated customer review records, including text, dates, helpful counts, and media, from https://mercadolibre.com.ar.
Parameters6
Runs8
Updated3d ago
Operational8 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_reviews?
Returns aggregate ratings and paginated customer review records, including text, dates, helpful counts, and media, from 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, offset, limit, sort_order, rating, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"site": "<string>",
"limit": 0,
"offset": 0,
"item_id": "<string>",
"reviews": [
{}
],
"overview": {},
"sort_order": "<string>",
"source_url": "<string>",
"rating_filter": "<string>",
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/53074236-67ed-48ce-8f9e-11ae652617f5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "53074236-67ed-48ce-8f9e-11ae652617f5",
"variables": {
"item_id": "MLA1474127167",
"offset": 0,
"limit": 15,
"sort_order": "relevance",
"rating": "all",
"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="53074236-67ed-48ce-8f9e-11ae652617f5") — the "get_product_reviews" function, which returns aggregate ratings and paginated customer review records, including text, dates, helpful counts, and media, from https://mercadolibre.com.ar.. It takes item_id (str), offset (int), limit (int), sort_order (str), rating (str), timeout_seconds (int). Return the result as structured JSON.