Skip to main content
GET
/
mpc
/
accounts
/
list
curl -X GET "https://api.cryptomate.me/mpc/accounts/list" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
[
  {
    "id": "acc_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
    "alias": "Main Operating Account"
  },
  {
    "id": "acc_7a2b4c10-6d5e-4f1a-b2c3-9f0e8d7c6b5a",
    "alias": "Treasury Reserves"
  }
]
Retrieves all treasury MPC accounts associated with the company. Requires an API key with access level 1 or higher.

Response

Returns an array of account objects.
id
string
Unique account identifier.
alias
string
Friendly alias name for the account.
curl -X GET "https://api.cryptomate.me/mpc/accounts/list" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
[
  {
    "id": "acc_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
    "alias": "Main Operating Account"
  },
  {
    "id": "acc_7a2b4c10-6d5e-4f1a-b2c3-9f0e8d7c6b5a",
    "alias": "Treasury Reserves"
  }
]