Flashpay API
  1. Banks
Flashpay API
  • Quick Start
    • Overview
    • Configuring the Server
    • Integrating Flashpay in Your Frontend 
  • Payments
    • New payment intent
      POST
    • Payment details by ID
      GET
    • Recent payment by destination account
      GET
  • Banks
    • Fetch list of available banks
      GET
  1. Banks

Fetch list of available banks

Developing
GET
/api/v1/banks
Returns a list of active banks that users can pay with

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

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 --request GET 'https://example.com/api/v1/banks' \
--header 'Authorization: Bearer <token>'

Responses

🟢200
application/json
Body

Example
[
    {
        "id": "qt3a4ezrra97s9rfdvtjnz0a",
        "name": "Fidelity Bank",
        "active": true,
        "appUrlScheme": "com.flashpay.fidelity",
        "createdAt": "2025-05-02T13:17:02.50523Z",
        "updatedAt": {
            "Time": "0001-01-01T00:00:00Z"
        }
    },
    {
        "id": "kpa3i7fgc8j2x7ykdp9mbye5",
        "name": "Opay MFB",
        "active": true,
        "appUrlScheme": "com.flashpay.opay",
        "createdAt": "2025-05-20T16:24:47.788313Z",
        "updatedAt": {
            "Time": "0001-01-01T00:00:00Z"
        }
    },
    // ...
]
Modified at 2025-11-06 08:47:17
Previous
Recent payment by destination account
Built with