Skip to content

Get all open orders

GET
/v1/orders/open

Get all open orders for your account.

A customerOrderId field will be returned in the response for all those orders that were created with a customerOrderId field.

Authorizations

apiKey

Your API key

Type
API Key (header: X-VALR-API-KEY)
+
apiSignature

HMAC SHA512 signature of the request (see Authentication section)

Type
API Key (header: X-VALR-SIGNATURE)
+
apiTimestamp

Request timestamp in milliseconds

Type
API Key (header: X-VALR-TIMESTAMP)

Responses

Open orders retrieved successfully

application/json
JSON
[
{
"orderId": "4cbf1b17-fa28-4be3-8d36-08b829cfedf9",
"side": "sell",
"remainingQuantity": "0.00005062",
"price": "66391",
"currencyPair": "BTCUSDC",
"createdAt": "2024-05-08T11:51:29.169Z",
"originalQuantity": "0.00015062",
"filledPercentage": "66.39",
"updatedAt": "2024-05-08T11:51:29.181Z",
"status": "Partially Filled",
"type": "limit",
"timeInForce": "GTC",
"allowMargin": true
},
{
"orderId": "4352df1d-6d24-472e-8a81-9c03e74690e7",
"side": "sell",
"remainingQuantity": "3",
"price": "17.9",
"currencyPair": "AVAXUSDC",
"createdAt": "2024-05-08T11:55:14.422Z",
"originalQuantity": "3",
"filledPercentage": "0.00",
"updatedAt": "2024-05-08T11:55:14.423Z",
"status": "Placed",
"type": "limit",
"timeInForce": "GTC",
"allowMargin": false
}
]

Playground

Authorization

Samples