Verify Bank Account
Verify a bank account before initiating a transfer.
GET /v1/virtual-account/account-query
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
bankCode |
string | Yes | Bank code from the banks list |
accountNumber |
string | Yes | Account number to verify |
currency |
string | Yes | Currency: NGN or GHS |
Example Request
curl -X GET "https://api.esca.finance/v1/virtual-account/account-query?bankCode=000007&accountNumber=0123456789¤cy=NGN" \
-H "X-Api-Key: your_api_key_here"
Example Response
{
"status": true,
"data": {
"accountNumber": "0123456789",
"accountName": "JOHN DOE"
}
}