Portfolio
Get portfolio open orders
Returns the open orders slice of the unified portfolio for the authenticated wallet.
GET
Get portfolio open orders
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns the open orders slice of the unified portfolio for the authenticated wallet.
curl --request GET \
--url https://api.quantdesk.app/api/v2/portfolio/orders \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "ord_1a2b3c",
"market": "SOL-PERP",
"side": "buy",
"type": "limit",
"price": 165,
"size": 10,
"status": "open"
}
]
}curl --request GET \
--url https://api.quantdesk.app/api/v2/portfolio/orders \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "ord_1a2b3c",
"market": "SOL-PERP",
"side": "buy",
"type": "limit",
"price": 165,
"size": 10,
"status": "open"
}
]
}