Skip to content

Returns the banks available for Pay by Bank, filtered by payment flow and (optionally) country. All logic (filtering, shaping) lives in Latinum; this endpoint proxies Latinum's typed response.

GET
/api/v2/buy/pay-by-bank/banks
flow
string
Allowed values: one-off recurring

Payment flow to filter banks by.

Example
one-off
countryCode

ISO 3166-1 alpha-2 country code to filter banks by.

string
nullable

ISO 3166-1 alpha-2 country code to filter banks by.

Example
NL

Returns the banks available for Pay by Bank.

Array<object>
object
bankId
required

Unique identifier of the bank.

string
Example
ABNANL2A
name
required

Display name of the bank.

string
Example
ABN AMRO
country
required

ISO country code of the bank.

string
Example
NL
supportsOneOff
required

Whether the bank supports one-off payment initiation (PIS).

boolean
Example
true
supportsRecurring
required

Whether the bank supports recurring payment initiation (PIS_RECURRING).

boolean
bic
required

BIC(s) of the bank, for matching against a customer IBAN. Empty when none are published.

Array<string>
default:
Example
[
"ABNANL2A"
]
logo

Central logo id for the bank, resolved by Latinum (banks of one chain share an id). Render the logo asset keyed by this id; null when the bank has no BIC to derive it from.

string
nullable
Example
ing
requiredInput
required

Extra input fields this bank requires before a Pay by Bank session can be created for it. Empty when the bank requires none.

Array<object>
default:
object
name
required

Machine name of the field; used as the request key when submitting the collected value on session create.

string
Example
debtorIban
type
required

Input type hint for rendering and client-side validation of the field.

string
Example
iban
label
required

Human-readable label to render next to the input.

string
Example
IBAN
description

Longer help text for the field; null when the bank provides none.

string
nullable
Example
The IBAN of the account the payment is made from.
example

Example value to show as a placeholder; null when the bank provides none.

string
nullable
Example
NL37BUNQ2025406444

A list of possible errors for this endpoint.

object
code
required
string
Allowed values: ER061 ER800 ER801 ER802 ER803 ER805 ER806 ER999
message
required
string
solution
required
string
Example
{
"errors": {
"ER061": {
"code": "ER061",
"message": "Invalid ISO 3166-1 alpha-2 country code provided.",
"solution": "Provide a valid ISO 3166-1 alpha-2 country code."
},
"ER800": {
"code": "ER800",
"message": "Authorization token is invalid.",
"solution": "Provide a valid authorization token."
},
"ER801": {
"code": "ER801",
"message": "Authorization token has expired.",
"solution": "Request a new authorization token."
},
"ER802": {
"code": "ER802",
"message": "Authorization token not found.",
"solution": "Provide an authorization token."
},
"ER803": {
"code": "ER803",
"message": "Multiple authorization methods used.",
"solution": "Use exactly one authorization method."
},
"ER805": {
"code": "ER805",
"message": "API key is invalid.",
"solution": "Provide a valid API key."
},
"ER806": {
"code": "ER806",
"message": "API key not found.",
"solution": "Provide an API key."
},
"ER999": {
"code": "ER999",
"message": "A general error has occurred. Please contact our support team.",
"solution": "Contact our support team."
}
}
}