Skip to main content

Get Product Info

info

Does not need authentication. Up to 50 requests per second per IP .

HTTP Request

GET/v5/earn/fixed-term/product

Request Parameters

ParameterRequiredTypeComments
coinfalsestringFilter by coin, e.g. BTC, ETH. Returns all coins if omitted

Response Parameters

ParameterTypeComments
listarrayProduct list
> productIdstringProduct ID
> categorystringProduct sub-type: FixedTermSaving, FundPool, FundPoolPremium
> coinstringStaking coin
> durationstringFixed term duration, e.g. 1d, 8h, 2m
> statusstringProduct status: Available, SoldOut, NotStarted
> tieredApyListarrayTiered APY list (if applicable)
>> minstringMinimum amount for this tier
>> maxstringMaximum amount for this tier. "-1" means no upper limit
>> apystringAPY for this tier
> minStakeAmountstringMinimum staking amount
> maxStakeAmountstringMaximum staking amount
> precisionintegerCoin trading precision
> subscribeStartAtstringSubscription start time, unix timestamp in ms
> subscribeEndAtstringSubscription end time, unix timestamp in ms
> allowEarlyRedemptionbooleanWhether early redemption is supported
> earlyRedemptionApystringDiscounted APY applied on early redemption
> redemptionLimitDurationstringMinimum hold time before early redemption is allowed, e.g. 1d, 8h, 2m
> allowAutoReinvestbooleanWhether auto-reinvest is supported
> interestCoinApyListarrayMulti-coin reward APY list
>> coinstringReward coin
>> apystringReward APY
>> expectUnitEarningstringExpected reward per unit invested (influenced by spot price of reward coin)
>> currentPricestringCurrent price of the reward coin
> isVipbooleanWhether this is a VIP-only product
> creditTimestringEstimated time for earnings to be credited, unix timestamp in ms
> specialUserGroupRequiredbooleanWhether purchase is restricted to a specific user group
> specialUserGroupInfostringDescription of the restricted user group

Request Example

GET /v5/earn/fixed-term/product?coin=BTC HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1741651200000
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"list": [
{
"productId": "427",
"category": "FixedTermSaving",
"coin": "USDT",
"duration": "30d",
"status": "Available",
"tieredApyList": [],
"minStakeAmount": "50",
"maxStakeAmount": "10000",
"precision": 4,
"subscribeStartAt": "1686704400000",
"subscribeEndAt": "1909094399000",
"allowEarlyRedemption": false,
"earlyRedemptionApy": "",
"redemptionLimitDuration": "",
"allowAutoReinvest": false,
"interestCoinApyList": [
{
"coin": "USDT",
"apy": "2.50%",
"expectUnitEarning": "0.002",
"currentPrice": "1.00"
}
],
"isVip": false,
"creditTime": "1778718600000",
"specialUserGroupRequired": false,
"specialUserGroupInfo": ""
},
{
"productId": "27",
"category": "FundPool",
"coin": "USDT",
"duration": "3d",
"status": "Available",
"tieredApyList": [],
"minStakeAmount": "100",
"maxStakeAmount": "10000",
"precision": 4,
"subscribeStartAt": "1722448800000",
"subscribeEndAt": "0",
"allowEarlyRedemption": true,
"earlyRedemptionApy": "0.30%",
"redemptionLimitDuration": "1d",
"allowAutoReinvest": false,
"interestCoinApyList": [
{
"coin": "USDT",
"apy": "9.99%",
"expectUnitEarning": "0.0008",
"currentPrice": "1.00"
}
],
"isVip": false,
"creditTime": "1776391500000",
"specialUserGroupRequired": true,
"specialUserGroupInfo": "Limited Offer"
},
{
"productId": "12",
"category": "FundPoolPremium",
"coin": "USDT",
"duration": "3d",
"status": "Available",
"tieredApyList": [],
"minStakeAmount": "1",
"maxStakeAmount": "300",
"precision": 4,
"subscribeStartAt": "1751500800000",
"subscribeEndAt": "0",
"allowEarlyRedemption": false,
"earlyRedemptionApy": "",
"redemptionLimitDuration": "",
"allowAutoReinvest": false,
"interestCoinApyList": [
{
"coin": "USDT",
"apy": "19.70%",
"expectUnitEarning": "0.0016",
"currentPrice": "1.00"
}
],
"isVip": true,
"creditTime": "1776391200000",
"specialUserGroupRequired": false,
"specialUserGroupInfo": ""
}
]
},
"retExtInfo": {},
"time": 1776067553433
}