list_category_products
clicks.co.zaBrowses category product listings from https://www.clicks.co.za using a category path such as 'Beauty > Skincare'. Returns paginated product records with all non-empty source fields and supports multiple sort orders.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_category_products?
Browses category product listings from https://www.clicks.co.za using a category path such as 'Beauty > Skincare'. Returns paginated product records with all non-empty source fields and supports multiple sort orders. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_path, page, page_size, sort, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"products": [
{}
],
"page_size": 0,
"total_pages": 0,
"category_path": "<string>",
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/1fdbd953-8990-4f00-83e0-fec36094fb5f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1fdbd953-8990-4f00-83e0-fec36094fb5f",
"variables": {
"category_path": "Beauty > Skincare",
"page": 1,
"page_size": 20,
"sort": "relevance",
"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="1fdbd953-8990-4f00-83e0-fec36094fb5f") — the "list_category_products" function, which browses category product listings from https://www.clicks.co.za using a category path such as 'Beauty > Skincare'. Returns paginated product records with all non-empty source fields and supports multiple sort orders.. It takes category_path (str), page (int), page_size (int), sort (str), timeout_seconds (int). Return the result as structured JSON.