Rate Limit
All our APIs have rate limits. On reaching the rate limit threshold, an API will respond withHTTP status code 429 TOO MANY REQUESTS
Global Rate Limits
Rate Limit Per Org ID and Per Endpoint
Any API endpoint that has {orgId} in the path will be subject to this rate limit.
Rate Limit Per User
Any API that is accecible after login is subject to this rate limit.
Summary Table
Key
Requests Allowed
Per Seconds
{orgId}+{endpoint}
10
1
{orgId}+{userId}+{endpoint}
5
1
Specific Rate Limits
There are some API endpoints which have additional (stricter) rate limit.
Chatroom Re-assignment API
All reassignment API endpoints have stricter rate limit of 1 request per 10 seconds per chatroom.
Endpoint
Path
Requests Allowed
Per Seconds
v1 reassign
/v1/org/{orgId}/waba/chatroom/{chatroomId}/reassign
1
10
v2 reassign
/v2/org/{orgId}/waba/chatroom/{chatroomId}/reassign
1
10
v3 reassign
/v3/org/{orgId}/lead/chatroom/{chatroomId}/reassign
1
10
Last updated