Search code examples
c#websocketreal-timebinanceorderbook

Binanace get Order Book in C# .Net Core


i'm part of a MarketMaker team and currently need to get crypto Market Data from Binance. Here are the requirements...

  • get public market data, so dont have api keys
  • get order book market depth, at least last 1000 bid/ask prices.
  • use websocket, not restful http calls

How to do this? Which .NET library i can use that provides realtime (websockets) to can keep giving me market data of order book in last 1000 bids/asks

I cant seem to find the library needed, they either need an API key or dont provide up to 1000 bid/ask, i can only get up to 20 depth.


Solution

  • got it through BinanceDotNet api