> ## Documentation Index
> Fetch the complete documentation index at: https://docs.check.et/llms.txt
> Use this file to discover all available pages before exploring further.

# List Bank Accounts

> List saved receiving bank accounts for your branch

Saved accounts can be referenced by `bank_account_id` in verify calls - saves you from passing `account_number` every time.


## OpenAPI

````yaml GET /accounts
openapi: 3.1.0
info:
  title: Check.et API
  version: '1.0'
  description: >
    Verify Ethiopian bank and wallet payments - CBE, Telebirr, Dashen, Awash,
    Bank of Abyssinia, Zemen, CBE Birr, M-Pesa Ethiopia, and Siinqee. One
    endpoint, structured JSON back every time.
  contact:
    name: Check.et Support
    url: https://t.me/Mal_tse
servers:
  - url: https://api.check.et/api/v1
    description: Production
security:
  - BearerAuth: []
paths:
  /accounts:
    get:
      summary: List bank accounts
      description: >-
        Returns saved bank accounts for your branch. Reference them by
        `bank_account_id` in verify calls to avoid repeating `account_number`.
      operationId: listAccounts
      responses:
        '200':
          description: Saved bank accounts
          content:
            application/json:
              schema:
                type: object
                properties:
                  accounts:
                    type: array
                    items:
                      $ref: '#/components/schemas/BankAccount'
components:
  schemas:
    BankAccount:
      type: object
      properties:
        id:
          type: integer
          example: 3
        bank:
          type: string
          example: cbe
        bank_name:
          type: string
          example: Commercial Bank of Ethiopia
        account_number:
          type: string
          example: '1000876543218'
        account_last_four:
          type: string
          example: '3218'
        label:
          type: string
          nullable: true
          example: Main CBE Account
        is_primary:
          type: boolean
          example: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key from your dashboard - starts with `chk_`. Requires a business
        account.

````