Skip to main content
GET
/
management
/
clients
/
co-account-types
curl -X GET "https://api.cryptomate.me/management/clients/co-account-types" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
[
  { "value": "checking" },
  { "value": "savings" },
  { "value": "electronic_deposit" }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cryptomate.me/llms.txt

Use this file to discover all available pages before exploring further.

Returns the catalog of Colombian account sub-types accepted by the CO Bank Transfer rail. Use this list to populate selectors when creating a CO Bank Transfer bank account. The catalog is static; cache it on your side. Requires an API key with access level 1 or higher.

Response

Returns an array of account sub-type objects.
value
string
Sub-type identifier to send as co_account_type when creating a CO Bank Transfer bank account. One of checking, savings, electronic_deposit.
curl -X GET "https://api.cryptomate.me/management/clients/co-account-types" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
[
  { "value": "checking" },
  { "value": "savings" },
  { "value": "electronic_deposit" }
]