Rate limits
Pacifica implements IP based rate limiting.
For REST API:
every IP address begins with 100 credits
any http method used will decrement the credit by one (for now all requests have the same weighting)
if user makes request while credit < 0, then return HTTP429
credits reset back to 100 at the end of each 60 second interval
For Websocket API:
every IP address is limited to 100 concurrent WS connections.
If an IP tries to exceed 100 connections, returns HTTP 429
each connection is limited to 20 subscriptions per channel
Last updated