FPX Banks

The banks endpoint provides access to a list of supported FPX banks within the KineticPay API. This information is valuable when offering bank selection options to users during transaction processes.

GET/bank

List all FPX banks

This endpoint allows you to retrieve a comprehensive list of supported FPX banks within the KineticPay API. It provides you with the necessary data to present users with a range of bank options when they are performing transactions.

By utilizing this endpoint, you can enhance the payment experience for your users by providing them with a seamless and convenient bank selection process.

Please note that the list of banks returned by this endpoint may include additional details such as bank codes, display names, or other relevant information specific to each bank.

Properties

  • Name
    name
    Type
    string
    Description

    The name of the bank.

  • Name
    display
    Type
    string
    Description

    The display name or alias of the bank.

  • Name
    code
    Type
    string
    Description

    The bank code.

Request

GET
/bank
curl -G https://manage.kineticpay.my/api/v2/bank \
    -H 'Accept: application/json' \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "data": [
    {
      "name": "Affin Bank Berhad",
      "display": "Affin Bank",
      "code": "ABB0233"
    },
    {
      "name": "Bank Pertanian Malaysia Berhad (AgroBank)",
      "display": "AGRONet",
      "code": "AGRO01"
    }
    // ... other banks
  ]
}