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

# Get Payout Banks by Country

> Retrieve a list of available banks for payout in a specific country.

This endpoint returns the banks that are supported for payout operations
in the specified country. The country is identified by its ISO 3166-1 alpha-2 country code.




## OpenAPI

````yaml /issuing/api-reference/openapi.yaml get /payouts/{countryCode}/banks
openapi: 3.1.0
info:
  title: API Reference
  version: '1.0'
servers:
  - url: https://access.utgl.io/v1
  - url: https://sandbox.access.utgl.io/v1
security:
  - Basic: []
  - Bearer: []
tags:
  - name: Accounts
  - name: Transactions
  - name: Card Accounts
  - name: Card Products
  - name: Cards
  - name: Digital Custody
  - name: Fee
  - name: Payout
paths:
  /payouts/{countryCode}/banks:
    get:
      tags:
        - Payouts
      summary: Get Payout Banks by Country
      description: >
        Retrieve a list of available banks for payout in a specific country.


        This endpoint returns the banks that are supported for payout operations

        in the specified country. The country is identified by its ISO 3166-1
        alpha-2 country code.
      operationId: getPayoutBanksByCountry
      parameters:
        - name: countryCode
          in: path
          required: true
          description: >
            ISO 3166-1 alpha-2 country code (e.g., "CN" for China, "US" for
            United States). The country code must be a valid 2-letter country
            code.
          schema:
            type: string
            pattern: ^[A-Z]{2}$
            example: CN
      responses:
        '200':
          description: Successfully retrieved list of banks for the specified country
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPayoutBanksResponse'
              example:
                banks:
                  - code: ICBC
                    name: Industrial and Commercial Bank of China
                  - code: CCB
                    name: China Construction Bank
                  - code: ABC
                    name: Agricultural Bank of China
                  - code: BOC
                    name: Bank of China
        '400':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: COUNTRY_NOT_FOUND
                  message:
                    type: string
                    example: Country not found
              example:
                code: COUNTRY_NOT_FOUND
                message: Country not found
        '404':
          description: Country not found or not supported for payout operations
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: COUNTRY_NOT_FOUND
                  message:
                    type: string
                    example: >-
                      The specified country is not supported for payout
                      operations
components:
  schemas:
    GetPayoutBanksResponse:
      type: object
      properties:
        banks:
          type: array
          description: List of available banks for payout in the specified country
          items:
            $ref: '#/components/schemas/PayoutBank'
      required:
        - banks
    PayoutBank:
      type: object
      properties:
        code:
          type: string
          description: Bank code
          example: ICBC
        name:
          type: string
          description: Bank name
          example: Industrial and Commercial Bank of China
      required:
        - code
        - name
  securitySchemes:
    Basic:
      type: http
      scheme: basic
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````