Market Liquidity

Gets the amount of liquidity at each price level.

Rate limits

  • 2400 requests/min or 60 requests/sec per IP address. (weight = 1)

See more details in API Rate limits

Request

Connect

WEBSOCKET [GATEWAY_WEBSOCKET_ENDPOINT]

Message

{
  "type": "market_liquidity",
  "product_id": 1,
  "depth": 10
}

Request Parameters

ParameterTypeRequiredDescription

product_id

number

Yes

Id of spot / perp product for which to retrieve market liquidity.

depth

number

Yes

Number of price levels to retrieve. (max: 100)

Response

{
  "status": "success",
  "data": {
    "bids": [
      [
        "30234000000000000000000",
        "663000000000000000"
      ],
      [
        "30170000000000000000000",
        "24623000000000000000"
      ]
    ],
    "asks": [
      [
        "30245000000000000000000",
        "664000000000000000"
      ],
      [
        "30252000000000000000000",
        "4646000000000000000"
      ]
    ],
    "timestamp": "1681850046966693400"
  },
  "request_type": "query_market_liquidity"
}

Note:

  • Each entry inside bids and asks is an array of price and size respectively. Note: that price is represented using fixed point, so it is 1e18 times greater than the decimal price.

  • timestamp is in nanoseconds.

Last updated