Skip to main content

Get Investment Plan Orders

Query subscription / redemption / auto-reinvest orders under the current user's investment plans. Supports filtering by plan, product category, order type, status, and date range.

info

Orders are sorted by creation time in descending order (newest first).

HTTP Request

GET/v5/earn/pwm/investment-plan/order

Request Parameters

ParameterRequiredTypeComments
planIdfalsestringInvestment plan ID. Returns orders for all plans if omitted
categoryfalsestringProduct type filter: flexibleSavings / fundPool / fundPoolPremium / equityFund / onchainEarn. Returns all if omitted
typefalsestringOrder type filter: Subscribe / Redeem. Returns all if omitted
statusfalsestringOrder status filter: Completed / Pending / Failed. Returns all if omitted
startTimefalsestringStart time in milliseconds. No lower limit if omitted
endTimefalsestringEnd time in milliseconds. Defaults to current time if omitted
limitfalseintPage size. Default: 20, max: 50
cursorfalsestringPagination cursor
orderLinkIdfalsestringUser-defined order ID, max 36 characters

Response Parameters

ParameterTypeComments
listarrayOrder list
> orderIdstringUnique order identifier (UUID format)
> planIdstringInvestment plan ID
> typestringOrder type: Subscribe / Redeem / AutoReinvest
> accountTypestringSource account type: Funding / Unified
> coinstringOrder coin, e.g. USDT, BTC
> amountstringOrder amount (base coin)
> categorystringProduct type: flexibleSavings / fundPool / fundPoolPremium / equityFund / onchainEarn
> productIdstringProduct ID
> statusstringOrder status: Completed / Pending / Failed
> orderTimestringOrder creation timestamp (milliseconds), UTC
nextPageCursorstringNext page cursor. Empty string indicates no more data

Request Example

GET /v5/earn/pwm/investment-plan/order?planId=10001&limit=20 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

Response Example

{
"retCode": 0,
"result": {
"list": [
{
"orderId": "a285b975-9968-4ba0-bd78-58430ead715f",
"planId": "10001",
"type": "Subscribe",
"accountType": "Funding",
"coin": "USDT",
"amount": "100.0000",
"category": "flexibleSavings",
"productId": "11123",
"status": "Completed",
"orderTime": "1739519687000"
},
{
"orderId": "f463ad6e-263c-499a-aff6-70c23be846ef",
"planId": "10001",
"type": "Subscribe",
"accountType": "Funding",
"coin": "BTC",
"amount": "0.002000",
"category": "equityFund",
"productId": "11123",
"status": "Completed",
"orderTime": "1739519687000"
},
{
"orderId": "98dc5a11-a578-49c2-830f-fc5d8c317ea7",
"planId": "10005",
"type": "AutoReinvest",
"accountType": "Funding",
"coin": "BTC",
"amount": "10.409201",
"category": "fundPool",
"productId": "11123",
"status": "Completed",
"orderTime": "1739498401000"
}
],
"nextPageCursor": ""
}
}