Skip to main content
GET
/
payouts
/
{countryCode}
/
banks
Get Payout Banks by Country
curl --request GET \
  --url https://access.utgl.io/v1/payouts/{countryCode}/banks \
  --header 'Authorization: Basic <encoded-value>'
{
  "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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

countryCode
string
required

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.

Example:

"CN"

Response

Successfully retrieved list of banks for the specified country

banks
object[]
required

List of available banks for payout in the specified country