You’re getting 429 – DAILY_LIMIT_EXCEEDED because your monday account has reached its daily API limit. This is not related to your Make operations count — it’s monday’s API quota that has been exhausted.
Since you’re fetching group items and then creating items on another board, every fetch + every create call consumes API requests. If this runs for many items or runs frequently, you can hit the daily cap quickly.
To optimize this, you can try below.
Fetch only the columns you actually need.
Avoid frequent polling — use triggers/webhooks instead.
Batch operations where possible.
Reduce how often the scenario runs.
After optimizing, if your use case genuinely requires high volume, you can contact monday support and request a limit increase. They may review your usage and adjust limits depending on your plan and use case.