Get venue balance summary
curl --request GET \
--url https://api.staging.layer1.com/trade/v1/venues/balances/summary \
--header 'Authorization: Bearer <token>'[
{
"asset": "<string>",
"venue": "kraken",
"total": 100,
"available": 90,
"locked": 10,
"loaned": 0,
"borrowed": 0,
"withdrawing": 0,
"depositing": 0
}
]Documentation Index
Fetch the complete documentation index at: https://exness-preview.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Aggregate balances from available venues for the same asset
Show only balances with non-zero total or available balance
Filter by asset
Filter by venue
OK
The asset of balance
The venue this balance is from
"kraken"
Total balance amount
100
Available balance amount for trading
90
Amount locked in pending orders
10
Amount loaned to other accounts
0
Amount borrowed from other accounts
0
Amount currently being withdrawn
0
Amount currently being deposited
0
curl --request GET \
--url https://api.staging.layer1.com/trade/v1/venues/balances/summary \
--header 'Authorization: Bearer <token>'[
{
"asset": "<string>",
"venue": "kraken",
"total": 100,
"available": 90,
"locked": 10,
"loaned": 0,
"borrowed": 0,
"withdrawing": 0,
"depositing": 0
}
]