Get available BINs
GET/api/v2/bins
Returns available BINs from provider to user.
Request
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
code Coderequired
BIN code
countryCode Countrycoderequired
ISO country code
currencyCode Currencycoderequired
ISO currency code
provider object
An enumeration.
billingAddress Billingaddressrequired
Billing address of the bank card.
paymentServices PaymentService[]
Possible values: [APPLE_PAY, GOOGLE_PAY, SAMSUNG_PAY]
List of supported tokenized payment services. If the list is empty, the BIN doesn't support tokenization.
merchants string[]
purposes BinPurposeEnum[]
Possible values: [CARDS_VIRTUAL, SHARED_BALANCE_VIRTUAL_CARDS]
fees objectrequired
issue objectrequired
feeAmount Feeamountrequired
unit Unitrequired
authorization object[]
minAmount Minamountrequired
maxAmount Maxamount
feeAmount Feeamountrequired
unit Unit
Default value: USD
decline objectrequired
feeAmount Feeamountrequired
unit Unitrequired
zeroAuth objectrequired
feeAmount Feeamountrequired
unit Unitrequired
[
{
"code": "string",
"countryCode": "string",
"currencyCode": "string",
"billingAddress": "string",
"paymentServices": [
"APPLE_PAY"
],
"merchants": [
"string"
],
"purposes": [
"CARDS_VIRTUAL"
],
"fees": {
"issue": {
"feeAmount": 0,
"unit": "string"
},
"authorization": [
{
"minAmount": 0,
"maxAmount": 0,
"feeAmount": 0,
"unit": "USD"
}
],
"decline": {
"feeAmount": 0,
"unit": "string"
},
"zeroAuth": {
"feeAmount": 0,
"unit": "string"
}
}
}
]
Loading...