All Asset Info
info
It is a public endpoint, and no need to authenticate.
HTTP Request
GET /spot/v3/public/infos
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| ltCode | false | string | Abbreviation of the LT. |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| list | array | Object |
| > ltCode | string | Abbreviation of the LT |
| > ltName | string | Full name of the LT |
| > maxPurchase | string | Max. purchase amount per transaction |
| > minPurchase | string | Min. purchase amount per transaction |
| > maxPurchaseDaily | string | Max. purchase amount per day |
| > maxRedeem | string | Max. redemption amount per transaction |
| > minRedeem | string | Min. redemption amount per transaction |
| > maxRedeemDaily | string | Max. redemption amount per day |
| > purchaseFeeRate | string | Purchase fees |
| > redeemFeeRate | string | Redemption fees |
| > status | string | Whether the LT can be purchased or redeemed |
| > fundFee | string | Funding fees charged daily to users who hold LT |
| > fundFeeTime | number | Timestamps when funding fees are charged |
| > manageFeeRate | string | Management fees |
| > manageFeeTime | number | Timestamps when management fees are charged |
| > value | string | Internal used parameter, please ignore |
| > total | string | Application upper limit |
| > netValue | string | Net asset value |
Request Example
https://api-testnet.bybit.com/spot/v3/public/infos?ltCode=EOS2LUSDT
Response Example
{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"fundFee": "21.79800315",
"fundFeeTime": 1673366400000,
"ltCode": "EOS2LUSDT",
"ltName": "Long EOS (2x Leverage)",
"manageFeeRate": "0.00005",
"manageFeeTime": 1673398800000,
"maxPurchase": "5000",
"maxPurchaseDaily": "200000",
"maxRedeem": "861",
"maxRedeemDaily": "20000",
"minPurchase": "100",
"minRedeem": "17",
"netValue": "3.781571076822412032",
"purchaseFeeRate": "0.0005",
"redeemFeeRate": "0.0005",
"status": "1",
"total": "5000000",
"value": "23624.848996419293002588635"
}
]
},
"retExtInfo": {},
"time": 1673345413125
}