get_weekly_cooking_meal_boxes
efarmz.beReturns the first 18 cooking meal boxes available for an ISO week on https://www.efarmz.be, with dietary-plan tags and the requested French or Dutch names. Reheat-only boxes are excluded and a priority-based primary tag is included.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_weekly_cooking_meal_boxes?
Returns the first 18 cooking meal boxes available for an ISO week on https://www.efarmz.be, with dietary-plan tags and the requested French or Dutch names. Reheat-only boxes are excluded and a priority-based primary tag is included. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass period, language and get the result back without maintaining a scraper.
Response
{
"count": 0,
"period": "<string>",
"language": "<string>",
"meal_boxes": [
{
"id": "<string>",
"name": "<string>",
"tags": [
"<string>"
],
"image_url": "<string>",
"primary_tag": "<string>",
"source_labels": [
"<string>"
],
"preparation_type": "<string>"
}
],
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/0b2a6e7b-4d6f-4ac7-b86f-c9a5eec07de5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0b2a6e7b-4d6f-4ac7-b86f-c9a5eec07de5",
"variables": {
"period": "",
"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="0b2a6e7b-4d6f-4ac7-b86f-c9a5eec07de5") — the "get_weekly_cooking_meal_boxes" function, which returns the first 18 cooking meal boxes available for an ISO week on https://www.efarmz.be, with dietary-plan tags and the requested French or Dutch names. Reheat-only boxes are excluded and a priority-based primary tag is included.. It takes period (str), language (str). Return the result as structured JSON.