Live
search_belgium_products
aldi.beSearches https://www.aldi.be products by name or exact product ID. Returns relevance-ordered paginated product metadata, prices, promotions, categories, brands, and images.
Parameters3
Runs10
Updated10d ago
Operational10 runs · 100% 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 search_belgium_products?
Searches https://www.aldi.be products by name or exact product ID. Returns relevance-ordered paginated product metadata, prices, promotions, categories, brands, and images. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"results": [
{}
],
"page_size": 0,
"search_mode": "<string>",
"total_pages": 0,
"has_next_page": true,
"total_results": 0,
"has_previous_page": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/f9449b17-5f04-4a03-9f96-9f9dc77be652/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f9449b17-5f04-4a03-9f96-9f9dc77be652",
"variables": {
"query": "melk",
"page": 1,
"page_size": 20
}
}'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="f9449b17-5f04-4a03-9f96-9f9dc77be652") — the "search_belgium_products" function, which searches https://www.aldi.be products by name or exact product ID. Returns relevance-ordered paginated product metadata, prices, promotions, categories, brands, and images.. It takes query (str), page (int), page_size (int). Return the result as structured JSON.