Skip to main content

Get Product List

info
  • Authentication is optional. The userQuota field is only populated for authenticated requests.
  • Rate Limit: 20 req/s (IP)

HTTP Request

GET/v5/earn/rwa/product

Request Parameters

ParameterRequiredTypeComments
coinfalsestringSettlement coin filter (uppercase), e.g. USDC. Returns all if omitted

Response Parameters

ParameterTypeComments
listarrayProduct list
> productIdintegerProduct ID
> coinstringSettlement coin name (e.g. USDC)
> assetSymbolstringUnderlying asset symbol (e.g. IGBF); also serves as the asset name
> managerstringAsset manager name
> baseAprstringBase APR as decimal string (e.g. "0.055" = 5.5%)
> bonusAprstringBonus APR (sum of all active bonus items); empty string when no bonus is active
> savingTypestringSaving type: Flexible, Fixed
> durationintegerLock-up duration in days; 0 for Flexible products
> navstringLatest NAV (Net Asset Value per share), truncated to sharePrecision
> minStakeAmountstringMinimum stake amount (in settlement coin)
> maxStakeAmountstringPer-order maximum stake amount; empty string = unlimited
> userMaxAmountstringPer-user maximum holding amount; empty string = unlimited
> userQuotastringUser's remaining stake quota for this product; empty string = unlimited or unauthenticated request
> minRedeemSharestringMinimum redeem share quantity
> redeemFeeRatestringRedeem fee rate as decimal string (e.g. "0.001" = 0.1%)
> subscriptionFeestringSubscription fee rate as decimal string (e.g. "0.001" = 0.1%)
> extLinkstringExternal link to asset details page
> amountPrecisionintegerSettlement-coin amount precision (decimal places)
> sharePrecisionintegerAsset share precision (decimal places)

Request Example

GET /v5/earn/rwa/product?coin=USDC HTTP/1.1
Host: api.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
{
"productId": 1001,
"coin": "USDC",
"assetSymbol": "IGBF",
"manager": "BlackRock",
"baseApr": "0.055",
"bonusApr": "0.02",
"savingType": "Flexible",
"duration": 0,
"nav": "1.025",
"minStakeAmount": "10",
"maxStakeAmount": "100000",
"userMaxAmount": "50000",
"userQuota": "49500",
"minRedeemShare": "1",
"redeemFeeRate": "0.001",
"subscriptionFee": "0",
"extLink": "https://example.com/igbf",
"amountPrecision": 2,
"sharePrecision": 6
}
]
},
"retExtInfo": {},
"time": 1710691200000
}