Skip to main content
GET
/
api
/
v2
/
portfolio
/
orders
Get portfolio open orders
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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer JWT obtained from the wallet session flow. See the Authentication guide.

Response

Open orders slice

success
boolean
Example:

true

data
object[]