search_products
hanes.comSearches the full Hanes catalog on https://hanes.com and returns paginated products with identifiers, images, pricing, configurable options, live variant availability, and facets for filtering.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches the full Hanes catalog on https://hanes.com and returns paginated products with identifiers, images, pricing, configurable options, live variant availability, and facets for filtering. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, page, page_size, sort, sort_direction 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/83b77c5e-c13c-4e1e-b7c3-4718035d6ff7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "83b77c5e-c13c-4e1e-b7c3-4718035d6ff7",
"variables": {
"keyword": "hoodie",
"page": 1,
"page_size": 24,
"sort": "relevance",
"sort_direction": "desc"
}
}'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="83b77c5e-c13c-4e1e-b7c3-4718035d6ff7") — the "search_products" function, which searches the full Hanes catalog on https://hanes.com and returns paginated products with identifiers, images, pricing, configurable options, live variant availability, and facets for filtering.. It takes keyword (str), page (int), page_size (int), sort (str), sort_direction (str). Return the result as structured JSON.