Skip to main content
GET
/
v0
/
insto
/
custody
/
organizations
List organizations
curl --request GET \
  --url https://api.kraken.com/v0/insto/custody/organizations \
  --header 'api-key: <api-key>' \
  --header 'api-nonce: <api-key>' \
  --header 'api-otp: <api-key>' \
  --header 'api-sign: <api-key>'
[
  {
    "org_id": "ABCD EFGH IJKL MNOP",
    "status": "active",
    "name": "Acme Corp"
  }
]

Authorizations

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

Response

OK. Returns the organizations the authenticated user belongs to.

org_id
string
required

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

Example:

"ABCD EFGH IJKL MNOP"

status
string
required

Organization lifecycle status. One of: active, onboarding, disabled, closed.

Example:

"active"

name
string

Display name of the organization, 5 to 128 characters.

Example:

"Acme Corp"