Skip to main content
GET
/
accounts
List bank accounts
curl --request GET \
  --url https://api.check.et/api/v1/accounts \
  --header 'Authorization: Bearer <token>'
{
  "accounts": [
    {
      "id": 3,
      "bank": "cbe",
      "bank_name": "Commercial Bank of Ethiopia",
      "account_number": "1000876543218",
      "account_last_four": "3218",
      "label": "Main CBE Account",
      "is_primary": true
    }
  ]
}
Saved accounts can be referenced by bank_account_id in verify calls - saves you from passing account_number every time.

Authorizations

Authorization
string
header
required

API key from your dashboard - starts with chk_. Requires a business account.

Response

200 - application/json

Saved bank accounts

accounts
object[]