Optional. Everything in the app keeps working if this is switched off.
Send events to my flow
No endpoint saved yet
Your endpoint and token are stored on the server only โ they are never sent to the browser or saved anywhere the app can read publicly.
Events we send
What your agent gets back
{
"event": "meal.suggestion_requested",
"task": "suggest_meals",
"profiles": ["Lee", "Jo"],
"constraints": {
"maxPrepMinutes": 30,
"highProtein": true,
"quickMeal": false
},
"goal": {
"leeProteinTarget": 120,
"dinnerProteinTarget": "30-50g"
},
"recentMeals": [],
"dislikedIngredients": [],
"pantry": []
}What to reply with
{
"suggestions": [
{
"meal": "Chicken & Bacon Cheesy Pasta",
"reason": "Both profiles like similar pasta meals",
"leeModification": "Add 150g chicken breast",
"estimatedProtein": 46
}
]
}