List Balances
GET/v1/wallet/balances
List balances of all assets with funds.
Requires authentication.
Request
Query Parameters
asset string
Asset ID.
cursor string
A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.
limit integer
Possible values: non-empty
and <= 200 characters
, >= 1
and <= 200
Default value: 20
Max number of objects to be returned as result of request.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Balance list
Schema
- Array [
- ]
result object[]
asset string
Asset ID.
amount string
Disponible asset amount to trade or withdrawal.
amount_orders string
Asset amount currently reserved by opened orders
updated_at updated_at (integer)
Timestamp of when this object was updated.
{
"result": [
{
"asset": "BTC",
"amount": "2.2356980028",
"amount_orders": "0.1",
"updated_at": 1675810392753862
}
]
}
{
"result": [
{
"asset": "BTC",
"amount": "2.2356980028",
"amount_orders": "0.1",
"updated_at": 12345678945456788
}
]
}
Loading...