Bank Code

Get bank code

Returns all bank codes for a given country. This endpoint is currently limited to Nigeria(NGN) and South Africa(ZAR) only.

get/bank/bankcode

Query parameters

country'NG' | 'ZA' required

The country to get the bank codes for. Use 'NG' for Nigeria and 'ZA' for South Africa.

Response

Bank code response

statusstring string
messagestring string

Example response

{
  "status": "ok",
  "message": "all bank codes retrieved successfully",
  "data": [
    {
      "bankName": "KUDA MICROFINANCE BANK",
      "nipBankCode": "090267"
    }
  ]
}

Changes

Changed in 2 of the 32 revisions of this API.15

  • d0fae6875ede14See the full diff
    • added the new required query request parameter country

      new-required-request-parameter

    • the endpoint scheme security ApiKeyAuth was removed from the API

      api-security-removed

    • the endpoint scheme security bearerAuth was removed from the API

      api-security-removed

    • api tag Bank Code added

      api-tag-added

    • api tag Bank Account removed

      api-tag-removed

    • endpoint added

      endpoint-added