search_products
lidl.beSearches Lidl Belgium products on https://www.lidl.be by product name, brand, category keyword, or exact product ID. Returns paginated product records with prices, availability, promotions, metadata, and full details for an exact ID.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches Lidl Belgium products on https://www.lidl.be by product name, brand, category keyword, or exact product ID. Returns paginated product records with prices, availability, promotions, metadata, and full details for an exact ID. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, offset, limit and get the result back without maintaining a scraper.
Response
{
"limit": 0,
"query": "<string>",
"offset": 0,
"products": [
{}
],
"exact_match": true,
"next_offset": 0,
"total_results": 0,
"returned_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/3c60a867-accc-4bf0-9e75-4d684e25328d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3c60a867-accc-4bf0-9e75-4d684e25328d",
"variables": {
"query": "parkside",
"offset": 0,
"limit": 36
}
}'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="3c60a867-accc-4bf0-9e75-4d684e25328d") — the "search_products" function, which searches Lidl Belgium products on https://www.lidl.be by product name, brand, category keyword, or exact product ID. Returns paginated product records with prices, availability, promotions, metadata, and full details for an exact ID.. It takes query (str), offset (int), limit (int). Return the result as structured JSON.