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

Get Account Details

GET
/core/account/{nuban}
This API fetches detailed account information for a specific client, including account type, balance, status, and other relevant data.

Path Parameter#

Field NameTypeRequiredDescription
nubanstringtrueNUBAN refers to the client's account number.

Response Table#

Field NameTypeDescription
idintegerUnique identifier of the account.
firstnamestringFirst name of the account holder.
lastnamestringLast name of the account holder.
nubanstringGenerated NUBAN (bank account number).
currentBalancefloatCurrent balance in the account.
availableBalancefloatAvailable balance in the account.
accountNamestringFull name of the account holder.
productNamestringName of the product associated with the account.
productShortNamestringUnique abbreviation of the product name.
productCurrencystringCurrency denomination of the account.
coreBankingIdintegerUnique identifier in the core banking system.

Request

Path Params

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/account/'

Responses

🟢200Success
application/json
Body

Example
{
    "id": 1,
    "firstname": "Mohammed",
    "lastname": "Olateju",
    "nuban": "0000000017",
    "currentBalance": 48051,
    "availableBalance": 42051,
    "accountName": "Mohammed Olateju",
    "productName": "TP Gateway Product",
    "productShortName": "HPAY",
    "productCurrency": "NGN",
    "coreBankingId": 1
}
Modified at 2025-03-19 15:01:55
Previous
Get Client Addresses
Next
Get Account Summary
Built with