> ## 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 List Of Banks

> Retrieve a list of banks for a given country using the ISO country code.



## OpenAPI

````yaml GET /api/payouts/banks/{countryCode}
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/payouts/banks/{countryCode}:
    get:
      summary: Get bank details by country
      description: Retrieve a list of banks for a given country using the ISO country code.
      parameters:
        - name: countryCode
          in: path
          required: true
          description: The ISO country code for which to retrieve bank details.
          schema:
            type: string
            example: US
      responses:
        '200':
          description: A list of banks in the specified country.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: number
                    example: 200
                  banks:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          example: ACCESS BANK
                        code:
                          type: string
                          example: '300329'
                        country:
                          type: string
                          example: GHA
        '400':
          description: Invalid country ISO code.
        '404':
          description: No banks found for the specified country.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````