Get Supported Banks

Retrieve the list of banks supported for transfers in a specific country.

GET /v1/virtual-account/banks

Query Parameters

Parameter Type Required Description
country string Yes Country code: NG (Nigeria) or GH (Ghana)

Example Request

curl -X GET "https://api.esca.finance/v1/virtual-account/banks?country=NG" \
  -H "X-Api-Key: your_api_key_here"

Example Response

{
  "status": true,
  "data": [
    {
      "bankCode": "000007",
      "bankName": "Fidelity Bank Plc"
    },
    {
      "bankCode": "023",
      "bankName": "Citibank Nigeria"
    },
    {
      "bankCode": "050",
      "bankName": "Ecobank Nigeria"
    }
  ]
}