Live
list_sale_products
hanes.comReturns paginated sale products from https://hanes.com with complete catalog records, discounted pricing, configurable options, facets, and pagination metadata.
Parameters5
Runs8
Updated3d ago
Degraded8 runs · 75% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_sale_products?
Returns paginated sale products from https://hanes.com with complete catalog records, discounted pricing, configurable options, facets, and pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass 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
}Call it
curl --location 'https://us-prod.notte.cc/functions/fa2a82c3-6a96-425e-94ae-cf7157c97508/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "fa2a82c3-6a96-425e-94ae-cf7157c97508",
"variables": {
"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="fa2a82c3-6a96-425e-94ae-cf7157c97508") — the "list_sale_products" function, which returns paginated sale products from https://hanes.com with complete catalog records, discounted pricing, configurable options, facets, and pagination metadata.. It takes page (int), page_size (int), sort (str), sort_direction (str), timeout_seconds (int). Return the result as structured JSON.