list_mens_products
hanes.comLists Hanes men's products from https://hanes.com with optional subcategory-path filtering. Returns paginated product records, facets, live variant availability, and pagination metadata for comparison.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_mens_products?
Lists Hanes men's products from https://hanes.com with optional subcategory-path filtering. Returns paginated product records, facets, live variant availability, and pagination metadata for comparison. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass subcategory_path, page, page_size, sort, sort_direction, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"items": [
{}
],
"facets": [
{}
],
"page_info": {
"page_size": 0,
"total_pages": 0,
"current_page": 0
},
"total_count": 0,
"category_path": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/47b122e1-46f7-47e5-878b-d91103fa6804/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "47b122e1-46f7-47e5-878b-d91103fa6804",
"variables": {
"subcategory_path": "",
"page": 1,
"page_size": 24,
"sort": "position",
"sort_direction": "asc",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="47b122e1-46f7-47e5-878b-d91103fa6804") — the "list_mens_products" function, which lists Hanes men's products from https://hanes.com with optional subcategory-path filtering. Returns paginated product records, facets, live variant availability, and pagination metadata for comparison.. It takes subcategory_path (str), page (int), page_size (int), sort (str), sort_direction (str), timeout_seconds (int). Return the result as structured JSON.