Live
get_product_reviews
walmart.comReturns paginated Walmart customer reviews from https://walmart.com with complete review records, ratings, text, reviewer details, product context, and pagination metadata.
Parameters4
Runs7
Updated3d ago
Operational7 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 paginated Walmart customer reviews from https://walmart.com with complete review records, ratings, text, reviewer details, product context, and pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, page, page_size, sort and get the result back without maintaining a scraper.
Response
{
"seo": {},
"page": 0,
"sort": "<string>",
"product": {},
"reviews": [
{}
],
"summary": {},
"page_size": 0,
"pagination": {},
"product_id": "<string>",
"source_url": "<string>",
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/81185d4b-7ea3-40c2-912e-e1ddf518d44d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "81185d4b-7ea3-40c2-912e-e1ddf518d44d",
"variables": {
"product_id": "44390948",
"page": 1,
"page_size": 10,
"sort": "relevancy"
}
}'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="81185d4b-7ea3-40c2-912e-e1ddf518d44d") — the "get_product_reviews" function, which returns paginated Walmart customer reviews from https://walmart.com with complete review records, ratings, text, reviewer details, product context, and pagination metadata.. It takes product_id (str), page (int), page_size (int), sort (str). Return the result as structured JSON.