• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

Rate limit exceeded!

Hi
I am trying to send 1,500 whastapp messages through wati in 1 time for my automated reminder sequence containing several messages leading up to an event, however, it is not sending all messages. The error for the messages that are send is
Rate limit exceeded

I only bought this platform so I can do this, so how do I do this without rate limit being exceeded.
 

Preeti Paryani

Well-known member
Staff member
Hello @FrancescoPremier,

Could you please let us know the Wati plan you're currently using as the rate limit for each plan varies? Also please provide us with the workflow URL where you're facing this issue so we can better look into the concern.


1742810013685.png
 

Preeti Paryani

Well-known member
Staff member
Hello @FrancescoPremier,

It seems there is some confusion. We were asking for the Wati plan that you are currently using, not your Pabbly Connect profile.

Please let us know which Wati plan you are currently subscribed to so we can assist you better.
 

Preeti Paryani

Well-known member
Staff member
Hello @FrancescoPremier,

Thank you for reaching out.

Upon reviewing your plan, we noticed that the Pro plan has a limit of 60 requests per 10 seconds for sending template messages. The rate limit errors you encountered on March 21st were due to over 100 requests being sent within just two seconds, exceeding the allowed limit.

You can try executing the requests again, and they should work fine now. However, to avoid this issue in the future, please ensure that no more than 60 requests are made within a 10-second window.

If you require a higher request limit to accommodate your message flow, we recommend upgrading to a plan that better suits your needs. Let us know if you need any further assistance.


1742810013685.png
 
How can I ensure this doesn't happen and that the requests are staggered out? If I have 1500 people register on a list, I need to make sure that they all receive the message.
 

ArshilAhmad

Moderator
Staff member
You have to make sure to send fewer than 60 requests per 10 seconds, i.e., the workflow should trigger fewer than 60 requests per 10 seconds. There is no other workaround.
 

Preeti Paryani

Well-known member
Staff member
Hello @FrancescoPremier,

No, currently this is not possible.
is there not a way stopping it at 60 per 10 seconds and then running another 60 10 seconds later and doing that until they are all complete?

However, you can add a few seconds/milliseconds of delay before your WATI action step which will ensure that every 10 seconds, not more than 60 requests get processed. You can use the Code (Pabbly) action application and utilize the below javascript code

await new Promise(resolve => setTimeout(resolve, 20000));
output = [{wait: "20000ms"}];
 
Top