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
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
number | Bank account number |
bank_code | Code of the user's bank |
Sample Response
{
"status": true,
"detail": "Verification Successful",
"account_data": {
"account_number": "4444444444",
"account_name": "Test Account"
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
account_data | An object containing the following fields: |
account_number | The account number of the bank account. |
account_name | The name of the account. |
Updated 8 months ago