Skip to main content
GET
/
v0
/
insto
/
custody
/
organizations
/
{org_id}
/
balances
List balances
curl --request GET \
  --url https://api.kraken.com/v0/insto/custody/organizations/{org_id}/balances \
  --header 'api-key: <api-key>' \
  --header 'api-nonce: <api-key>' \
  --header 'api-otp: <api-key>' \
  --header 'api-sign: <api-key>'
{
  "quote_asset": "USD",
  "balance": {
    "total": "12345.6789",
    "spot": "10000.0000",
    "staked": "1500.0000",
    "pledged": "845.6789"
  }
}

Authorizations

api-key
string
header
required
api-sign
string
header
required
api-nonce
string
header
required
api-otp
string
header
required

Path Parameters

org_id
string
required

Organization identifier, 16-char alphanumeric in 4x4 groups (IIBAN).

Example:

"ABCD EFGH IJKL MNOP"

Query Parameters

quote_asset
string

Currency code used to value the aggregated balance. Defaults to USD when omitted; only USD is currently accepted.

Example:

"USD"

Response

OK. Returns the aggregated balance for the organization.

quote_asset
string
required

Currency code in which the balance values are denominated.

Example:

"USD"

balance
object
required

Aggregated balance breakdown for the organization.