Get Product Info
info
Does not need authentication.
HTTP Request
GET /v5/earn/product
Request Parameters
Parameter | Required | Type | Comments |
---|---|---|---|
category | true | string | FlexibleSaving Remarks: currently, only flexible savings is supported |
coin | false | string | Coin name, uppercase only |
Response Parameters
Parameter | Type | Comments |
---|---|---|
list | array | Object |
> category | string | FlexibleSaving |
> estimateApr | string | Estimated APR, e.g., 3% , 4.25% Remarks: 1)The Est. APR provides a dynamic preview of your potential returns, updated every 10 minutes in response to market conditions. 2) Please note that this is an estimate and may differ from the actual APR you will receive. 3) Platform Reward APRs are not shown |
> coin | string | Coin name |
> minStakeAmount | string | Minimum stake amount |
> maxStakeAmount | string | Maximum stake amount |
> precision | string | Amount precision |
> productId | string | Product ID |
> status | string | Available , NotAvailable |
Request Example
- HTTP
- Python
- Node.js
GET /v5/earn/product?category=FlexibleSaving&coin=BTC HTTP/1.1
Host: api-testnet.bybit.com
from pybit.unified_trading import HTTP
session = HTTP(
testnet=True,
)
print(session.get_earn_product_info(
category="FlexibleSaving",
coin="BTC",
))
Response Example
{
"retCode": 0,
"retMsg": "",
"result": {
"list": [
{
"category": "FlexibleSaving",
"estimateApr": "3%",
"coin": "BTC",
"minStakeAmount": "0.001",
"maxStakeAmount": "10",
"precision": "8",
"productId": "430",
"status": "Available"
}
]
},
"retExtInfo": {},
"time": 1739935669110
}