You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you receive a response, you can view the headers and find out how many requests are left before the limit is reset.
The limit is reset once a minute.
The rate limit is implemented using the "point stack" method. In other words, each request has its own weight.
The maximum request weight is 2. Therefore, all requests should be considered as having a weight of 2.
As far as is currently known, each token has its own "point stack":
Application token: 400 points
User token: 200 points
However, this information is not accurate, and it is subject to verification.
Necessary to create a mechanism that can save or take into account the rate limits for API requests.
The text was updated successfully, but these errors were encountered:
When you receive a response, you can view the headers and find out how many requests are left before the limit is reset.
The limit is reset once a minute.
The rate limit is implemented using the "point stack" method. In other words, each request has its own weight.
The maximum request weight is 2. Therefore, all requests should be considered as having a weight of 2.
As far as is currently known, each token has its own "point stack":
However, this information is not accurate, and it is subject to verification.
Necessary to create a mechanism that can save or take into account the rate limits for API requests.
The text was updated successfully, but these errors were encountered: