Skip to main content
GET
/
api
/
v1
/
banks
/
{countryCode}
cURL
curl --request GET \
  --url https://api.novacpayment.com/api/v1/banks/{countryCode} \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "message": "Bank list retrieved",
  "currency": "NGN",
  "data": [
    {
      "bank_name": "First Bank of Nigeria",
      "bank_code": "011"
    },
    {
      "bank_name": "Access Bank",
      "bank_code": "044"
    }
  ]
}

Authorizations

Authorization
string
header
required

Input your Bearer token in this format - Bearer {your token here} to access this API

Path Parameters

countryCode
string
required

Response

OK

success
boolean
message
string | null
currency
string | null
data
object[] | null