get_product_details
walmart.caReturns complete non-empty details for one Walmart Canada item from https://walmart.ca, including pricing, availability, specifications, images, fulfillment, seller data, and customer reviews.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_details?
Returns complete non-empty details for one Walmart Canada item from https://walmart.ca, including pricing, availability, specifications, images, fulfillment, seller data, and customer reviews. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, url_slug and get the result back without maintaining a scraper.
Response
{
"name": "<string>",
"source": "<string>",
"reviews": {},
"product_id": "<string>",
"source_url": "<string>",
"specifications": [
{
"name": "<string>",
"value": "<any>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/e3b377b8-028d-4a2c-95db-aa0444f465ce/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e3b377b8-028d-4a2c-95db-aa0444f465ce",
"variables": {
"product_id": "6000199409681",
"url_slug": "Tim-Hortons-Dark-Roast-Coffee-Pods-Single-Serve-K-Cups-Compatible-with-Keurig-Coffee-Makers-Smooth-Bold-Flavour-30-Count"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="e3b377b8-028d-4a2c-95db-aa0444f465ce") — the "get_product_details" function, which returns complete non-empty details for one Walmart Canada item from https://walmart.ca, including pricing, availability, specifications, images, fulfillment, seller data, and customer reviews.. It takes product_id (str), url_slug (str). Return the result as structured JSON.