Review REST, WebSocket and FIX limits.
429
response status code. All requests from the offending IP are then throttled for five (5) minutes.
API Path | Limit |
---|---|
/register* /signup* /create-new-user* /login* /oauth2/token* | 1 |
/wallets* /v2/markets/*/order-book /v2/markets/*/recent-executions /v2/profiles/*/quote-executions /v2/identities/*/ | 10 |
/v2/transfer/internal /v2/transfer/crypto-withdrawals | 20 |
All other endpoints | 50 |
429
status codes and building retry functionality.
The retry mechanism should include a backoff schedule that takes volume into consideration.
There are a number of open source tools available to help handle rate limits.
When connecting a large number of clients, some may fail and close the connection before receiving a response from the server.Paxos recommends all clients implement a single
wss://
connection at the server level (multiplexing).
Multiple connections can create logistical and update issues without providing appreciable performance gains.
To support integration and platform stability and maintenance, each implementation should: