Hi everyone, I built an Instagram chatbot in n8n (Meta webhook → AI agent → send reply). The chatbot works perfectly on the user side (front-end) — users send a message and receive the correct reply, and there are no visible issues at all. However, behind the scenes in n8n Executions, I noticed a problem: For each single Instagram message, I don’t get 1 execution as expected. Instead I get 3–4 executions. Only 1 execution succeeds, and the other 2–3 executions fail with “Error”. Even though the bot still works normally, these extra executions worry me because: they can create heavy load when many people use the bot they can waste tokens / API calls and cost money So it seems Meta is sending multiple webhook events for one message (or retries), and n8n triggers the workflow multiple times. What is the best way to make n8n process only one execution per real user message, and ignore duplicates / non-message events? Please reply here in the comments if possible — I would be very grateful.