API tools to help you out!

A list of popular tools that help for API development:

  • Websocket

    • websocat https://github.com/vi/websocat is a nice command line tool to subscribe to websocket server. It’s my favorite one to listen to Binance Streams. It even includes building ping method. Open source and very fast.

    • https://2pd.github.io/ws/ Another UI tool for working with Binance Websocket. No need to write any code, you are able to subscribe stream in serval clicks. Support testnet, easy to use.

  • Restful APIs

    • Postman is a popular API collaboration platform, We provide the collections with all endpoints. https://github.com/binance-exchange/binance-api-postman

    • cURL the simple and power command tool. You may be already familiar with it,
      curl -v -H "Context-Type: application/json" "https://api.binance.com/api/v3/klines?symbol=BTCUSDT&interval=1m&limit=1"