Skip to main content

All Asset Info

info

It is a public endpoint, and no need to authenticate.

HTTP Request

GET /spot/v3/public/infos

Request Parameters

ParameterRequiredTypeComments
ltCodefalsestringAbbreviation of the LT.

Response Parameters

ParameterTypeComments
listarrayObject
> ltCodestringAbbreviation of the LT
> ltNamestringFull name of the LT
> maxPurchasestringMax. purchase amount per transaction
> minPurchasestringMin. purchase amount per transaction
> maxPurchaseDailystringMax. purchase amount per day
> maxRedeemstringMax. redemption amount per transaction
> minRedeemstringMin. redemption amount per transaction
> maxRedeemDailystringMax. redemption amount per day
> purchaseFeeRatestringPurchase fees
> redeemFeeRatestringRedemption fees
> statusstringWhether the LT can be purchased or redeemed
> fundFeestringFunding fees charged daily to users who hold LT
> fundFeeTimenumberTimestamps when funding fees are charged
> manageFeeRatestringManagement fees
> manageFeeTimenumberTimestamps when management fees are charged
> valuestringInternal used parameter, please ignore
> totalstringApplication upper limit
> netValuestringNet 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
}