BinanceSpotRest.Endpoints.MarketData.Depth.Query (Binance Spot Rest v0.2.1)

View Source

Depth

Order book

GET /api/v3/depth

Weight: Adjusted based on the limit:

LimitRequest Weight
1-1005
101-50025
501-100050
1001-5000250

Parameters:

NameTypeMandatoryDescription
symbolSTRINGYES
limitINTNODefault 100; max 5000. If limit > 5000 then the response will truncate to 5000.

Data Source: Memory

Response:

{
  "lastUpdateId": 1027024,
  "bids": [
    [
      "4.00000000",     // PRICE
      "431.00000000"    // QTY
    ]
  ],
  "asks": [
    [
      "4.00000200",
      "12.00000000"
    ]
  ]
}