Skip to main content

Order Book

API Description#

Query symbol orderbook

HTTP Request#

GET /fapi/v1/depth

Request Weight#

Adjusted based on the limit:

LimitWeight
5, 10, 20, 502
1005
50010
100020

Request Parameters#

NameTypeMandatoryDescription
symbolSTRINGYES
limitINTNODefault 500; Valid limits:[5, 10, 20, 50, 100, 500, 1000]

Response Example#

{  "lastUpdateId": 1027024,  "E": 1589436922972,   // Message output time  "T": 1589436922959,   // Transaction time  "bids": [    [      "4.00000000",     // PRICE      "431.00000000"    // QTY    ]  ],  "asks": [    [      "4.00000200",      "12.00000000"    ]  ]}