(DAILY_LIMIT_EXCEEDED) Error on make.com

Hi All, I am receiving error on List Group Items:
RateLimitError

[429] Request id: 035d5cec-938d-97ae-a854-f6adb079a072
Daily limit exceeded (DAILY_LIMIT_EXCEEDED)

How I can fix, I am on Pro Plan on monday and on Pro Plan on make as well. I have consumed 1200 operations on make.

I am fetching from group items and then creating records in another board.

Hi @rehan.abdul

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.

  1. Fetch only the columns you actually need.

  2. Avoid frequent polling — use triggers/webhooks instead.

  3. Batch operations where possible.

  4. 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.

Thanks for that, It fetches 250 records so total operation consumed is 1000 roughly, monday’s soft limit is 10,000..