Skip to main content
GET
/
withdraw
/
open
/
otc
/
api
/
bank
/
list
Query Bank Account List
curl --request GET \
  --url https://openplatform.gateapi.io/withdraw/open/otc/api/bank/list \
  --header 'X-GatePay-Certificate-ClientId: <x-gatepay-certificate-clientid>' \
  --header 'X-GatePay-Nonce: <x-gatepay-nonce>' \
  --header 'X-GatePay-Signature: <x-gatepay-signature>' \
  --header 'X-GatePay-Timestamp: <x-gatepay-timestamp>'
{
  "code": "<string>",
  "status": "<string>",
  "data": [
    {
      "bankAccountId": "<string>",
      "bankAccountName": "<string>",
      "bankName": "<string>",
      "countryId": 123,
      "countryName": "<string>",
      "address": "<string>",
      "iban": "<string>",
      "swift": "<string>",
      "remittanceLineNumber": "<string>",
      "agentBankName": "<string>",
      "agentBankSwift": "<string>",
      "status": 1,
      "memo": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.gate.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

This page documents the GET /withdraw/open/otc/api/bank/list endpoint. The full schema, parameters, and examples are rendered from the linked OpenAPI definition above.

Notes

Supplemental Field Notes

Request Filters

  • bankAccountName: bank account name, supports fuzzy matching
  • iban: account number or IBAN, supports fuzzy matching
  • swift: SWIFT code, supports fuzzy matching
  • bankName: bank name, supports fuzzy matching

Key Response Fields

  • data[].countryId: country ID
  • data[].countryName: country name
  • data[].address: bank address
  • data[].remittanceLineNumber: routing or clearing code
  • data[].agentBankName: agent bank name
  • data[].agentBankSwift: agent bank SWIFT
  • data[].status: bank account review status. 1 = approved, 2 = pending review, 3 = pending supplementary materials, 99 = rejected
  • data[].memo: memo entered by operations staff, typically returned as the rejection reason when the bank account review is rejected

Headers

X-GatePay-Certificate-ClientId
string
required

Merchant application client ID used to identify the calling app.

X-GatePay-Signature
string
required

HMAC signature generated from the request according to GatePay signing rules.

X-GatePay-Timestamp
string
required

Unix timestamp used for replay protection and signature verification.

X-GatePay-Nonce
string
required

Random nonce used together with the timestamp to prevent replay attacks.

Response

200 - application/json

Success

code
string

Business response code.

status
string

Top-level request status.

data
object[]

Linked bank account list.