AsterAster REST API

Order Book

Get order book for a symbol.

GET
/v1/aster/fapi/v1/depth

Authorization

ApiKeyAuth
X-MBX-APIKEY<token>

API Key authentication for Aster Finance

In: header

Query Parameters

symbol*stringrequired

Trading symbol

limit?enum<integer>default: 100

Number of entries to return

Available options: 51020501005001000

Response Body

application/json

curl -X GET "https://api.hypereth.io/v1/aster/fapi/v1/depth?symbol=string"
{
  "lastUpdateId": 0,
  "E": 0,
  "T": 0,
  "bids": [
    [
      "string",
      "string"
    ]
  ],
  "asks": [
    [
      "string",
      "string"
    ]
  ]
}