status 429 many request error

anilb


Hey I'm trying to get live market data into JavaScript and Post man but getting in to many request error.
  • sujith
    It is a Websocket API (long standing connection), you can connect once and subscribe for the data. It will keep streaming data until you unsubscribe or disconnect. I don't think you can make a REST like HTTP request and discard it on Postman.
    Server will keep a long standing connection live. It is important to close connection properly after using the Websocket API.
    You will receive too many requests error if you create more than 3 Websocket APIs for an api_key.
Sign In or Register to comment.