Bank Accounts Basic

Verify bank account number

This endpoint allows you to instantly verify your customers’ bank account number. With this, you can easily and accurately verify the validity of any bank account number.

Our account number 1.0 API, utilizes advanced algorithms and data sources to verify bank account numbers in real-time, ensuring that you only transact with legitimate bank accounts.

👍

TEST DATA

number: 4444444444

bank_code: 214

📘

POST

{{URL}}/identitypass/verification/bank_account/basic

Request Header

KeyDescription
app-idYour App ID
x-api-keyYour Secret Key

Request Body

KeyDescription
numberBank account number
bank_codeCode of the user's bank

Sample Response

{
    "status": true,
    "detail": "Verification Successful",
    "account_data": {
        "account_number": "4444444444",
        "account_name": "Test Account"
    }
}

Response Description

ResponseDescription
statusIndicates that the request was successful.
detailThis field indicates the detail of the response.
account_dataAn object containing the following fields:
account_numberThe account number of the bank account.
account_nameThe name of the account.