Skip to main content

Get Product Info

info

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

Bybit Dual Asset FAQ

HTTP Request

GET /v5/earn/advance/product

Request Parameters

ParameterRequiredTypeComments
categorytruestringProduct category,DualAssets
coinfalsestringCoin name, uppercase only
durationfalsestringProduct duration, eg:8h, 1d, 3d, 6d, 12d

Response Parameters

ParameterTypeComments
categorystringDualAssets
listarrayObject
> categorystringDualAssets
> productIdstringProduct ID
> baseCoinstringBase Coin
> quoteCoinstringQuote Coin
> expectReceiveAtstringExpected time to receive the transfer, Unix timestamp in milliseconds
> durationstringProduct duration, eg:8h, 1d, 3d
> statusstringAvailable,NotAvailable
> isVipProductbooleanWhether it is a VIP product
> subscribeStartAtstringSubscription start time, Unix timestamp in ms
> subscribeEndAtstringSubscription end time, Unix timestamp in ms
> applyStartAtstringInterest accrual start time, Unix timestamp in ms
> settlementTimestringInterest accrual end time, Unix timestamp in ms
> minPurchaseQuoteAmountstringMinimum purchase amount in quote currency
> minPurchaseBaseAmountstringMinimum purchase amount in base currency
> remainingAmountQuotestringRemaining quota for Buy Low direction
> remainingAmountBasestringRemaining quota for Sell High direction
> orderPrecisionDigitalQuoteintPrecision for Buy Low direction
> orderPrecisionDigitalBaseintPrecision for Sell High direction

Request Example

GET /v5/earn/advance/product?category=DualAssets&coin=XRP HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"category": "DualAssets",
"list": [
{
"category": "DualAssets",
"productId": "36340",
"baseCoin": "XRP",
"quoteCoin": "USDT",
"expectReceiveAt": "1773908399000",
"duration": "1d",
"status": "Available",
"isVipProduct": false,
"subscribeStartAt": "1773734400000",
"subscribeEndAt": "1773820799000",
"applyStartAt": "1773734400000",
"settlementTime": "1773907199000",
"minPurchaseQuoteAmount": "10",
"minPurchaseBaseAmount": "10",
"remainingAmountQuote": "1000000",
"remainingAmountBase": "10000",
"orderPrecisionDigitalQuote": 4,
"orderPrecisionDigitalBase": 2
}
]
},
"retExtInfo": {},
"time": 1773814359231
}