查询银行信息

Endpoint

Sandbox

POST https://preapi.futurepay-develop.com/api/v1/reference/bank

Production

POST https://api.futurepay.global/api/v1/reference/bank

Request Parameters

ParameterRequiredTypeDescription
routingCodeTypeYesstringswift_codeababank_codesort_codebsb_codeifscbranch_code
routingCodeValueYesstringRouting code value
countryCodeNostringISO 3166-1 Alpha-2 country code
bankNameNostringBank name

Request Example

{
  "routingCodeType": "branch_code",
  "routingCodeValue": "11"
}

Response

FieldTypeDescription
routingCodeValuestringRouting code value
bankNamestringBank name
bankAddressstringBank address
countryCodestringCountry code

Response Example

{
  "code": "0",
  "msg": "succeeded",
  "serverTime": 1743562522626,
  "success": true,
  "data": [
    {
      "routingCodeValue": "11",
      "bankName": "CULTURA LIMITED",
      "bankAddress": "UNIT A, GROUND FLOOR, Q2, TIGNE POINT",
      "countryCode": "MT"
    }
  ]
}


Did this page help you?