Skip to main content

Settle Fund Profit

info

This endpoint only applies to funds in Active status. Calling it on a Closed fund will return error code 180040.

HTTP Request

POST/v5/earn/pwm/asset-manager/settle-profit

Request Parameters

ParameterRequiredTypeComments
fundIdtruestringFund ID
reqLinkIdtruestringUser-defined request ID, max 36 characters, used for idempotency

Response Parameters

ParameterTypeComments
fundIdstringFund ID
statusstringProfit settlement status: Processing / Completed / Failed. After execution, the status of the current order can be queried using the same reqLinkId
totalProfitSharedstringTotal profit sharing amount settled in this round (base coin)
instIncomestringInstitution income in this round (base coin)
coinstringFund denomination coin
createdTimestringSettlement timestamp (milliseconds)

Request Example

POST /v5/earn/pwm/asset-manager/settle-profit 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

{
"fundId": "12323",
"reqLinkId": "settle-001"
}

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"fundId": "12323",
"status": "Processing",
"totalProfitShared": "2.73",
"instIncome": "1.5",
"coin": "BTC",
"createdTime": "1700000000000"
}
}