maxMarketOrderNtls

Get the maximum market order notional sizes by leverage tier.

Get the maximum market order notional sizes by leverage tier.

POST Request

Field
Type
Description

type

string

Must be "maxMarketOrderNtls"

curl -X POST https://api.hydromancer.xyz/info \
  -H "Authorization: Bearer $HYDROMANCER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "maxMarketOrderNtls"
  }'

Response Fields

Returns an array of [maxLeverage, maxNtl] tuples.

Index
Type
Description

[0]

int

Maximum leverage tier

[1]

string

Maximum market order notional size for this tier

Response
[
    [25, "15000000.0"],
    [20, "5000000.0"],
    [10, "2000000.0"],
    [1, "500000.0"]
]

Last updated