get_product_details
efarmz.beReturns full non-empty data for one eFarmz product from https://www.efarmz.be, including descriptions, ingredients, allergens, brand details, category hierarchy, pricing, tags, and availability.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_details?
Returns full non-empty data for one eFarmz product from https://www.efarmz.be, including descriptions, ingredients, allergens, brand details, category hierarchy, pricing, tags, and availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, language and get the result back without maintaining a scraper.
Response
{
"product": {},
"language": "<string>",
"product_id": "<string>",
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/6be85f62-e768-45c8-be3e-93ae9f42dea8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6be85f62-e768-45c8-be3e-93ae9f42dea8",
"variables": {
"product_id": "A0316",
"language": "fr"
}
}'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="6be85f62-e768-45c8-be3e-93ae9f42dea8") — the "get_product_details" function, which returns full non-empty data for one eFarmz product from https://www.efarmz.be, including descriptions, ingredients, allergens, brand details, category hierarchy, pricing, tags, and availability.. It takes product_id (str), language (str). Return the result as structured JSON.