get https://api.cardda.com/v1/banking/bank_accounts
Returns a paginated list of bank accounts that the current user has access to through their bank keys.
Common Use Cases
Finding Your Company's Bank Account (for sender_id)
To find your company's bank account for making payments:
GET /v1/banking/bank_accounts?rut=771234568
Where 771234568 is your company's RUT.
Filtering by Account Number
To find a specific account by number:
GET /v1/banking/bank_accounts?number=987654321
Filtering by Bank
To list all accounts from a specific bank:
GET /v1/banking/bank_accounts?bank_id=cl_banco_santander_chile
Pagination
Use _start and _end parameters to control pagination:
GET /v1/banking/bank_accounts?_start=0&_end=10
Important Notes
- You can only see accounts you have authorization to operate through bank keys
- The
idfield in the response is what you'll use assender_idwhen creating transactions - Account balance is updated when transactions are synchronized
Bank IDs Reference
Common Chilean bank identifiers:
cl_banco_de_chile- Banco de Chilecl_banco_bci- BCIcl_banco_santander_chile- Santander Chilecl_banco_itau- Itaúcl_banco_bice- BICEcl_banco_scotiabank- Scotiabankcl_banco_security- Banco Securitycl_banco_estado- BancoEstado
