Validate a Customer Bank Account
The Bank Account verification endpoint allows you to verify if a bank account number is valid.
Main Features:
- Returns KYC details only if the account number exists at that bank.
GET (LIVE)
{{URL}}/dikript/verification/api/v1/getaccount/{accountNumber}/{bankCode}
Parameter
Key | Description |
---|---|
accountNumber | Account Number |
bankCode | Bank's code gotten from the uitlity endpoint get banks |
Header (LIVE)
Key | Description |
---|---|
x-api-key | Your Secret Key |
Responses
{
"status": true,
"message": "Successful",
"code": "200",
"apiVersion": "v1",
"transactionRef": "N202506131805293191",
"data": {
"accountNumber": "31***268",
"bankName": "First Bank of Nigeria",
"name": "OLADUNNI TEST"
},
"error": null
}
{
"status": false,
"message": "Unsuccessful",
"code": "400",
"apiVersion": "v1",
"transactionRef": "N202401101345487388",
"data": "",
"error": {
"code": 400,
"message": null
}
}