get_product_details
clicks.co.zaReturns full details for a single Clicks product by numeric product ID from https://www.clicks.co.za, including all non-empty product fields plus related variant records when available. Includes flags, promotions, category attributes, pricing, stock status, and media fields exposed by the source record.
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 full details for a single Clicks product by numeric product ID from https://www.clicks.co.za, including all non-empty product fields plus related variant records when available. Includes flags, promotions, category attributes, pricing, stock status, and media fields exposed by the source record. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, include_variants, variant_limit, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"product": {},
"variants": [
{}
],
"product_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/38497113-0559-44e7-9899-e3be3f1dd3ef/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "38497113-0559-44e7-9899-e3be3f1dd3ef",
"variables": {
"product_id": 217834,
"include_variants": true,
"variant_limit": 50,
"timeout_seconds": 20
}
}'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="38497113-0559-44e7-9899-e3be3f1dd3ef") — the "get_product_details" function, which returns full details for a single Clicks product by numeric product ID from https://www.clicks.co.za, including all non-empty product fields plus related variant records when available. Includes flags, promotions, category attributes, pricing, stock status, and media fields exposed by the source record.. It takes product_id (int), include_variants (bool), variant_limit (int), timeout_seconds (int). Return the result as structured JSON.