Skip to main content
GET
/
transfers
/
banks
/
{currency}
List Supported Banks
curl --request GET \
  --url https://api.hyperrails.io/api/v1/transfers/banks/{currency} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-service-source: <x-service-source>'
[
  {
    "bankCode": "SPB-17646",
    "bankName": "Nombank"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.hyperrails.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication using Bearer token

Headers

x-service-source
string
default:HyperRails
required

Identifies the calling service.

Example:

"HyperRails"

Path Parameters

currency
enum<string>
required

The currency for which you want to retrieve the bank list.

Available options:
NGN,
GHS
Example:

"NGN"

Response

A JSON array of bank objects.

bankCode
string
Example:

"SPB-17646"

bankName
string
Example:

"Nombank"