list_women_products
hanes.comLists Hanes women'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_women_products?
Lists Hanes women'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/12fbfd54-1478-4ec8-a857-3b8bca657085/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "12fbfd54-1478-4ec8-a857-3b8bca657085",
"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="12fbfd54-1478-4ec8-a857-3b8bca657085") — the "list_women_products" function, which lists Hanes women'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.