> ## 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.

# List CO account types

> Catalog of Colombian account sub-types for the CO Bank Transfer rail.

<Warning>
  **Deprecated.** This endpoint is no longer available in the public API and is kept for reference only.
</Warning>

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](/api-reference/management/clients/bank-accounts/create-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.

<ResponseField name="value" type="string">
  Sub-type identifier to send as `co_account_type` when creating a CO Bank Transfer bank account. One of `checking`, `savings`, `electronic_deposit`.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cryptomate.me/management/clients/co-account-types" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  [
    { "value": "checking" },
    { "value": "savings" },
    { "value": "electronic_deposit" }
  ]
  ```
</ResponseExample>
