BinanceFutures.USDM.MarketData.depth

You're seeing just the function depth, go back to BinanceFutures.USDM.MarketData module for more information.
Link to this function

depth(symbol, limit \\ 500)

View Source

Specs

Gets Order Book.

Example

iex(1)> BinanceFutures.USDM.MarketData.depth("BTCUSDT")
{:ok,
%{
  "E" => 1616333020858,
  "T" => 1616333020851,
  "asks" => [
    ["56865.63", "3.972"],
    ["56865.64", "0.023"],
    ["56882.96", ...],
    [...],
    ...
  ],
  "bids" => [
    ["56865.62", "0.501"],
    ["56865.00", "0.003"],
    ["56862.63", "0.088"],
    ["56851.92", ...],
    [...],
    ...
  ],
  "lastUpdateId" => 272144015637
}}