Get the number of installments per country

You can get information about the number of installments available per country and BIN (Bank Identification Number) by using the following GET HTTP request.

Definition: GET /v1/installments?country={countryCode}&bin={bin}

Where:
  • {bin} – The Bank’s Identification Number

Request:

GET https://securetest.smart2pay.com/v1/installments?country=AR&bin=512345
Authorization: Basic MTAxMDpnYWJp

Response:

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
  "Country": "AR",
    "BIN": "512345",
    "CardBrand": "MasterCard",
    "CardSubBrand": "MasterCard",
    "Installments": [
    {
      "Number": "3",
      "Rate": "1097"
    },
    {
      "Number": "6",
      "Rate": "1951"
    },
    {
      "Number": "9",
      "Rate": "3146"
    },
    {
      "Number": "12",
      "Rate": "4211"
    }
  ]
}