Balance
Returns the balance for a given currency.
GET /v1/account/balance
Headers
Param | Type |
---|---|
apikey | STRING |
Query Parameters
Param | Type | Example | Description |
---|---|---|---|
abbr | STRING | "KLV" | Valid token abbreviation. e.g. KLV |
Response
Param | Type | Example | Description |
---|---|---|---|
currency | STRING | "KLV" | Currency |
balance | STRING | "18.786936434521408" | Total assets of a currency |
available | STRING | "16.786936434521408" | Available assets of a currency |
holds | STRING | "2" | How much is currently being held |
Response Example
{
"success": true,
"data": {
"currency": "DVK",
"balance": "18.786936434521408",
"available": "18.786936434521408",
"holds": "0"
}
}