Redeem
API ker permission: Earn
API rate limit: 5 reqs / sec
info
- Early redemption is only supported for category=
FundPoolproducts whereallowEarlyRedemptionistrue. Calling this endpoint for other product types returns an error. - The position must have been held for at least
redemptionLimitDurationbefore early redemption is allowed. - Redeemed funds are always returned to the
FUNDaccount.
HTTP Request
POST/v5/earn/fixed-term/redeemRequest Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| productId | true | string | Product ID |
| category | true | string | Product sub-type: FundPool |
| positionId | true | string | Position ID to redeem |
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| redeemAmount | string | Estimated redemption amount (principal) |
| estEarnings | string | Estimated earnings at early redemption APY |
Request Example
POST /v5/earn/fixed-term/redeem 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
Content-Type: application/json
{
"productId": 1001,
"category": "FundPool",
"positionId": 200001
}
Response Example
{
"retCode": 0,
"retMsg": "",
"result": {
"redeemAmount": "0.1",
"estEarnings": "0.00002191"
},
"retExtInfo": {},
"time": 1776075665623
}