Skip to main content

Redeem

API ker permission: Earn
API rate limit: 5 reqs / sec

info
  • Early redemption is only supported for category=FundPool products where allowEarlyRedemption is true. Calling this endpoint for other product types returns an error.
  • The position must have been held for at least redemptionLimitDuration before early redemption is allowed.
  • Redeemed funds are always returned to the FUND account.

HTTP Request

POST/v5/earn/fixed-term/redeem

Request Parameters

ParameterRequiredTypeComments
productIdtruestringProduct ID
categorytruestringProduct sub-type: FundPool
positionIdtruestringPosition ID to redeem

Response Parameters

ParameterTypeComments
redeemAmountstringEstimated redemption amount (principal)
estEarningsstringEstimated 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
}