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

# Get All Bank List

> Retrieve list of supported banks for Tech Maxx

## Step 1: Retrieve Supported Banks

Before initiating a bank credit transaction, you must first retrieve the list of supported banks.\
This endpoint returns the available banks along with their respective codes, which are required in the next step when performing a credit to a bank account.


## OpenAPI

````yaml GET /api/custom/transactions/tech-maxx/gateways/banks
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://test.digitaltermination.com
  - url: https://business-sandbox.instntmny.com
security: []
paths:
  /api/custom/transactions/tech-maxx/gateways/banks:
    get:
      summary: Get supported bank list
      description: Retrieve list of supported banks for Tech Maxx
      responses:
        '200':
          description: A successful response with a list of supported banks
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: '200'
                  banks:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          example: Access bank
                        code:
                          type: string
                          example: '203948'
                        country:
                          type: string
                          example: GHA
                    example:
                      - name: Access bank
                        code: '203948'
                        country: GHA
                      - name: Ecobank
                        code: '198234'
                        country: GHA
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````