Marketplace
No threads yet
Live

list_mens_products

hanes.com

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.

Parameters6
Runs8
Updated8d ago
Degraded8 runs · 62.5% succeeded
30 days agotoday

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.

prompt
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.