search_products
heb.comSearches the H-E-B grocery catalog at https://heb.com and returns paginated product records with current store-specific pricing, availability, brand, images, identifiers, and product details.
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 H-E-B grocery catalog at https://heb.com and returns paginated product records with current store-specific pricing, availability, brand, images, identifiers, and product details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, store_id, page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"products": [
{}
],
"store_id": 0,
"next_page": 0,
"page_size": 0,
"total_pages": 0,
"has_next_page": true,
"total_results": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/5334e8c8-fce7-4093-be6e-c568e7aeac48/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5334e8c8-fce7-4093-be6e-c568e7aeac48",
"variables": {
"query": "milk",
"store_id": 92,
"page": 1,
"page_size": 60
}
}'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="5334e8c8-fce7-4093-be6e-c568e7aeac48") — the "search_products" function, which searches the H-E-B grocery catalog at https://heb.com and returns paginated product records with current store-specific pricing, availability, brand, images, identifiers, and product details.. It takes query (str), store_id (int), page (int), page_size (int). Return the result as structured JSON.