Skip to main content

Get Borrowable Coin Info

info

Do not need authentication

HTTP Request

GET /v5/spot-cross-margin-trade/borrow-token

Request Parameters

ParameterRequiredTypeComments
coinfalsestringCoin name

Response Parameters

ParameterTypeComments
listarrayObject
> coinstringCoin name
> borrowingPrecisionintegerAccuracy of loan amount
> repaymentPrecisionintegerAccuracy of repayment amount

Request Example

GET /v5/spot-cross-margin-trade/borrow-token?coin=ETH HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
{
"borrowingPrecision": 5,
"coin": "ETH",
"repaymentPrecision": 4
}
]
},
"retExtInfo": {},
"time": 1677750685331
}