Get current position
GET/positions
Returns the position for the specified asset. Expressed as a positive (long position) or negative (short position) value.
This is a private endpoint. To send requests, you need to authenticate.
Rate limit weight points: 5
Request
Query Parameters
The list of assets for which to return the balance. If not specified, returns the non-zero positions for all assets.
BTC,EURResponses
- 200
- 4XX
The request was successful.
- application/json
- Schema
- Example (body)
Schema
- Array [
- Array [
- ]
- ]
assets object[]
The asset for which the position is returned. Always an uppercase cryptocurrency symbol.
ETHIndicates if the current position is long or short. The short position represents the amount of the unsettled loan.
-105.85The maximum allowed asset amount for a short position within 24 hours.
-150reservations object[]
The reserved amount of the asset, for example for withdrawals.
The type of reservation.
withdrawalThe reserved amount.
500.00The Unix timestamp in nanoseconds when the position was last updated.
Cannot be used to correlate with the order events.
1752139200000000000{
"assets": [
{
"symbol": "ETH",
"position": "-105.85",
"shortLimit": "-150",
"reservations": [
{
"type": "withdrawal",
"amount": "500.00"
}
],
"updatedAt": 1752139200000000000
}
]
}
For error codes, see Handle errors.