get_product_details
delhaize.beRetrieves detailed product information from https://delhaize.be by product code, including description, ingredients, nutritional facts, allergens, categories, promotions, pricing, and all other non-empty product fields exposed by Delhaize.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_details?
Retrieves detailed product information from https://delhaize.be by product code, including description, ingredients, nutritional facts, allergens, categories, promotions, pricing, and all other non-empty product fields exposed by Delhaize. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_code, language and get the result back without maintaining a scraper.
Response
{
"pricing": {},
"product": {},
"language": "<string>",
"allergens": [
{}
],
"categories": [
{}
],
"promotions": [
{}
],
"source_url": "<string>",
"description": "<string>",
"ingredients": "<string>",
"product_url": "<string>",
"product_code": "<string>",
"product_name": "<string>",
"source_scope": "<string>",
"nutritional_facts": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/476ca77e-54ff-40f7-8bd1-5c187a71f4bd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "476ca77e-54ff-40f7-8bd1-5c187a71f4bd",
"variables": {
"product_code": "F2015121700210200000",
"language": "nl"
}
}'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="476ca77e-54ff-40f7-8bd1-5c187a71f4bd") — the "get_product_details" function, which retrieves detailed product information from https://delhaize.be by product code, including description, ingredients, nutritional facts, allergens, categories, promotions, pricing, and all other non-empty product fields exposed by Delhaize.. It takes product_code (str), language (str). Return the result as structured JSON.