Core Banking Services
  1. Account
Core Banking Services
  • Introduction
  • Terminologies
  • Webhooks
  • Authentication
  • Account
    • Product List
      GET
    • Create Account
      POST
    • Find Client
      POST
    • Accounts
      GET
    • Create Additional Account
      POST
    • Account Details By BVN
      GET
    • Get Client Addresses
      GET
    • Get Account Details
      GET
    • Get Account Summary
      GET
    • Client Images
      GET
    • Update BVN
      POST
    • Update Transaction Limit
      POST
  • KYC
    • Get KYC Info
      POST
    • Update KYC
      POST
  • Transaction
    • Payment Types
      GET
    • Debit Account
      POST
    • Credit Account
      POST
    • Transaction History
      GET
    • Transaction Details
      GET
  • Transfer
    • Get Institutions
      GET
    • Name Inquiry
      POST
    • Interbank Transfer
      POST
    • InterBank Transfer Query
      GET
    • Transfer Details
      GET
    • IntraBank Transfer
      POST
    • Intrabank Transfer To Virtual Accounts
      POST
  • Reporting
    • Report Types
    • Get Report Parameters
    • Create Report
    • Report Details
    • Get Reports
  1. Account

Product List

GET
/core/products
This API retrieves a list of available savings products offered by various financial institutions. Examples of products include individual savings accounts, corporate current accounts, kiddies accounts, and more. The unique product ID returned by this API is used when creating accounts for clients.

Response Body#

The response is a JSON object containing a list of products.
Field NameTypeDescription
idintegerUnique identifier for the product.
namestringFull name of the product.
shortNamestringAbbreviated name of the product.
currencystringCurrency type for the product.
Let me know if you need any further modifications!

Request

None

Request 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 '/core/products'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": 1,
        "name": "Naira Savings Account",
        "shortName": "NSA",
        "currency": "NGN"
    }
]
Modified at 2025-03-19 14:57:45
Previous
Authentication
Next
Create Account
Built with