Skip to main content
GET
/
management
/
clients
/
{clientId}
/
banks
/
{bankId}
curl -X GET "https://api.cryptomate.me/management/clients/client_a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d/banks/ba_abc123" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
{
  "id": "ba_abc123",
  "company_id": "comp_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
  "client_id": "client_a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d",
  "bank_name": "Chase Bank",
  "bank_holder_name": "John Michael Doe",
  "account_alias": "Primary Checking",
  "type": "ACH",
  "currency": "USD",
  "account_number": "123456789",
  "routing_number": "021000021",
  "account_type": "checking"
}
Retrieves detailed information about a specific bank account. Requires an API key with access level 1 or higher.

Path parameters

clientId
string
required
Unique identifier of the client.
bankId
string
required
Unique identifier of the bank account.

Response

See Create US bank account for the shared field list. Each account exposes rail-specific fields depending on its type:
  • ACHaccount_number, routing_number, account_type.
  • SPEIclabe.
  • SEPAiban, bic.
  • PIXpix_key, document_number.
  • FPSsort_code, account_number.
  • CO_BANK_TRANSFERbank_code, co_account_type, document_type, document_number, phone_number.
  • BRE_Bbre_b_key.
Business bank accounts (SEPA, FPS, CO Bank Transfer) also expose business_name.
curl -X GET "https://api.cryptomate.me/management/clients/client_a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d/banks/ba_abc123" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
{
  "id": "ba_abc123",
  "company_id": "comp_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
  "client_id": "client_a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d",
  "bank_name": "Chase Bank",
  "bank_holder_name": "John Michael Doe",
  "account_alias": "Primary Checking",
  "type": "ACH",
  "currency": "USD",
  "account_number": "123456789",
  "routing_number": "021000021",
  "account_type": "checking"
}