Account Enqury

Resolve account

POST /account-enquiry

This endpoint is used to retrieve detailed information about a specific bank account.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

X-Biz-Number

<x-biz-number>

Body

Name
Type
Description

account_number

string

Account number of the receiver

bank_code

string

Bank code that identifies the receiver's bank name

Response

{
    "status": 200,
    "success": true,
    "data": [
        {
            "bank_name": "GTBank",
            "account_name": "NGN",
            "account_number": "0264341458"
        }
    ]
}

Last updated