search_products
brico.beSearches the full product catalog on https://www.brico.be and returns paginated listings with prices, availability, ratings, sellers, brands, and category data. Exact category matches return an empty product list with the Brico redirect URL.
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 product catalog on https://www.brico.be and returns paginated listings with prices, availability, ratings, sellers, brands, and category data. Exact category matches return an empty product list with the Brico redirect URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"sort_by": "<string>",
"products": [
{}
],
"page_size": 0,
"source_url": "<string>",
"total_pages": 0,
"redirect_url": "<string>",
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/b8c1c2ec-7567-4f80-9de7-0fb34ef13e4c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b8c1c2ec-7567-4f80-9de7-0fb34ef13e4c",
"variables": {
"query": "perceuse",
"page": 1
}
}'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="b8c1c2ec-7567-4f80-9de7-0fb34ef13e4c") — the "search_products" function, which searches the full product catalog on https://www.brico.be and returns paginated listings with prices, availability, ratings, sellers, brands, and category data. Exact category matches return an empty product list with the Brico redirect URL.. It takes query (str), page (int). Return the result as structured JSON.