Get Interest & Quota
HTTP Request
GET /spot/v3/private/cross-margin-loan-info
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| coin | true | string | Coin name |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| coin | string | Coin name |
| interestRate | string | Daily interest rate |
| loanAbleAmount | string | The estimated amount can be loaned |
| maxLoanAmount | string | The fixed loanable amount per user on platform |
Request Example
GET /spot/v3/private/cross-margin-loan-info?coin=ETH HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1677750928871
X-BAPI-RECV-WINDOW: 5000
X-BAPI-SIGN: XXXXXX
Response Example
{
"retCode": 0,
"retMsg": "success",
"result": {
"coin": "ETH",
"interestRate": "0.000054835",
"loanAbleAmount": "19.220442066850037795",
"maxLoanAmount": "300"
},
"retExtInfo": {},
"time": 1677750929290
}