Get Margin Risk Limit
GET
/api/v3/margin/currencies:::info[Description]
Request via this endpoint to get the Configure and Risk limit info of the margin.
:::
Request
true-isolated, false-cross
currency, This field is only required for cross margin
symbol, This field is only required for isolated margin
Request samples
Responses
Time stamp
CROSS MARGIN RESPONSES, Currency
CROSS MARGIN RESPONSES, Maximum personal borrow amount. If the platform has no borrowing amount, this value will still be displayed.
CROSS MARGIN RESPONSES, Minimum personal borrow amount
CROSS MARGIN RESPONSES, Minimum unit for borrowing, the borrowed amount must be an integer multiple of this value
CROSS MARGIN RESPONSES, Whether to support borrowing
CROSS MARGIN RESPONSES, Maximum buy amount
CROSS MARGIN RESPONSES, Maximum holding amount
CROSS MARGIN RESPONSES, Borrow Coefficient
CROSS MARGIN RESPONSES, Margin Coefficient
CROSS MARGIN RESPONSES, Currency precision. the minimum repayment amount of a single transaction should be >= currency precision, for example, the precision of ETH is 8, and the minimum repayment amount is 0.00000001
ISOLATED MARGIN RESPONSES, Symbol
ISOLATED MARGIN RESPONSES, Base maximum personal borrow amount. If the platform has no borrowing amount, this value will still be displayed.
ISOLATED MARGIN RESPONSES, Quote maximum personal borrow amount. If the platform has no borrowing amount, this value will still be displayed.
ISOLATED MARGIN RESPONSES, Base maximum buy amount
ISOLATED MARGIN RESPONSES, Quote maximum buy amount
ISOLATED MARGIN RESPONSES, Base maximum holding amount
ISOLATED MARGIN RESPONSES, Quote maximum holding amount
ISOLATED MARGIN RESPONSES, Base currency precision. the minimum repayment amount of a single transaction should be >= currency precision, for example, the precision of ETH is 8, and the minimum repayment amount is 0.00000001
ISOLATED MARGIN RESPONSES, Quote currency precision. the minimum repayment amount of a single transaction should be >= currency precision, for example, the precision of ETH is 8, and the minimum repayment amount is 0.00000001
ISOLATED MARGIN RESPONSES, Base Borrow Coefficient
ISOLATED MARGIN RESPONSES, Quote Borrow Coefficient
ISOLATED MARGIN RESPONSES, Base Margin Coefficient
ISOLATED MARGIN RESPONSES, Quote Margin Coefficient
ISOLATED MARGIN RESPONSES, Base minimum personal borrow amount
ISOLATED MARGIN RESPONSES, Quote minimum personal borrow amount
ISOLATED MARGIN RESPONSES, Base minimum unit for borrowing, the borrowed amount must be an integer multiple of this value
ISOLATED MARGIN RESPONSES, Quote minimum unit for borrowing, the borrowed amount must be an integer multiple of this value
ISOLATED MARGIN RESPONSES, Base whether to support borrowing
ISOLATED MARGIN RESPONSES, Quote whether to support borrowing
//Cross Margin
{
"code": "200000",
"data": [
{
"timestamp": 1729678659275,
"currency": "BTC",
"borrowMaxAmount": "75.15",
"buyMaxAmount": "217.12",
"holdMaxAmount": "217.12",
"borrowCoefficient": "1",
"marginCoefficient": "1",
"precision": 8,
"borrowMinAmount": "0.001",
"borrowMinUnit": "0.0001",
"borrowEnabled": true
}
]
}
//Isolated Margin
//{
// "code": "200000",
// "data": [
// {
// "timestamp": 1729685173576,
// "symbol": "BTC-USDT",
// "baseMaxBorrowAmount": "75.4",
// "quoteMaxBorrowAmount": "6000000",
// "baseMaxBuyAmount": "217.84",
// "quoteMaxBuyAmount": "8000000",
// "baseMaxHoldAmount": "217.84",
// "quoteMaxHoldAmount": "8000000",
// "basePrecision": 8,
// "quotePrecision": 8,
// "baseBorrowCoefficient": "1",
// "quoteBorrowCoefficient": "1",
// "baseMarginCoefficient": "1",
// "quoteMarginCoefficient": "1",
// "baseBorrowMinAmount": "0.001",
// "baseBorrowMinUnit": "0.0001",
// "quoteBorrowMinAmount": "10",
// "quoteBorrowMinUnit": "1",
// "baseBorrowEnabled": true,
// "quoteBorrowEnabled": true
// }
// ]
//}