1. Banks
Tranzakt APIs
  • Introduction
  • Banks
    • Get Banks
      GET
  • Collections
    • Get Collection by ID
      GET
    • Get Collection Invoices
      GET
  • Invoices
    • Create Invoice
      POST
    • Get Invoice by ID
      GET
    • Invalidate Invoice
      POST
  • Linked Accounts
    • Add Linked Account
      POST
  • Webhooks
    • Webhooks 🔔
  1. Banks

Get Banks

Developing
GET
https://api.tranzakt.finance/api/v1/banks
Returns the list of supported banks available for inter-bank transfers and settlement accounts.

Request

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.tranzakt.finance/api/v1/banks' \
--header 'x-api-key: Your secret key'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "status": 200,
    "message": "",
    "data": [
        {
            "bankName": "Sample Bank",
            "bankCode": "042",
            "logoUrl": "https://example.com/image.png"
        },
        {
            "bankName": "OPay Digital Services Limited (OPay)",
            "bankCode": "100004",
            "logoUrl": null
        }
    ]
}
Modified at 2026-09-21 16:14:00
Previous
Introduction
Next
Collections
Built with