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"
}'import requests
import os
response = requests.post(
'https://api.hydromancer.xyz/info',
json={
'type': 'maxMarketOrderNtls'
},
headers={
'Authorization': f'Bearer {os.environ.get("HYDROMANCER_API_KEY")}',
'Content-Type': 'application/json'
}
)
print(response.json())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
Last updated