查询银行信息
Endpoint
Sandbox
POST https://preapi.futurepay-develop.com/api/v1/reference/bankProduction
POST https://api.futurepay.global/api/v1/reference/bankRequest Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| routingCodeType | Yes | string | swift_code、aba、bank_code、sort_code、bsb_code、ifsc、branch_code |
| routingCodeValue | Yes | string | Routing code value |
| countryCode | No | string | ISO 3166-1 Alpha-2 country code |
| bankName | No | string | Bank name |
Request Example
{
"routingCodeType": "branch_code",
"routingCodeValue": "11"
}Response
| Field | Type | Description |
|---|---|---|
| routingCodeValue | string | Routing code value |
| bankName | string | Bank name |
| bankAddress | string | Bank address |
| countryCode | string | Country 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"
}
]
}Updated about 1 month ago
Did this page help you?