Marketplace
No threads yet
Live

search_ah_products

ah.be

Searches products on https://www.ah.be by text query and returns up to 30 matches with current pricing, images, availability, categories, and the overall match count.

Parameters2
Runs10
Updated10d ago
Failing10 runs · 90% 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 search_ah_products?

Searches products on https://www.ah.be by text query and returns up to 30 matches with current pricing, images, availability, categories, and the overall match count. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "products": [
    {}
  ],
  "categories": [
    {}
  ],
  "total_found": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/be0bde20-80ef-495d-a876-c491ee9a8225/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "be0bde20-80ef-495d-a876-c491ee9a8225",
    "variables": {
        "query": "melk",
        "limit": 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="be0bde20-80ef-495d-a876-c491ee9a8225") — the "search_ah_products" function, which searches products on https://www.ah.be by text query and returns up to 30 matches with current pricing, images, availability, categories, and the overall match count..

It takes query (str), limit (int). Return the result as structured JSON.