Introduction
- Welcome to Nomba
- Get API Keys
- Testing
Getting Started
- Dashboard Setup
- Authentication
- Definitions
Plugins and SDKs
Products
- Accounts
- Accept Payments
- Transfers
- Terminals
- Webhooks
- Transactions
- Airtime & Data Vending
- Cable & Bill Payments
Guides
API Patterns
Accounts
Perform virtual account lookup
Learn how to perform account lookup with virtual account number
Copy
curl --request GET \
--url https://vendor-api.kudi.ai/v1/accounts/virtual/{virtualAcctNumber} \
--header 'Authorization: Bearer <token>' \
--header 'accountId: <accountid>'
Copy
{
"code": "00",
"description": "SUCCESS",
"data": {
"createdAt": "2025-05-28T08:23:48.073Z",
"bankAccountNumber": "",
"bankAccountName": "",
"bankName": "Nombank MFB",
"accountRef": "created-wed-28-05-2501",
"accountHolderId": "",
"accountName": "",
"currency": "NGN",
"bvn": "00***",
"expired": false
},
"message": "SUCCESS",
"status": true
}
GET /v1/accounts/virtual/
Response body
Response code
Response description
Response message
transaction status
Account creation date.
bank account number.
bank account name
bank account name
bank account holder ID
bank account holder name
Currency code.
Account status.
Copy
curl --request GET \
--url https://vendor-api.kudi.ai/v1/accounts/virtual/{virtualAcctNumber} \
--header 'Authorization: Bearer <token>' \
--header 'accountId: <accountid>'
Copy
{
"code": "00",
"description": "SUCCESS",
"data": {
"createdAt": "2025-05-28T08:23:48.073Z",
"bankAccountNumber": "",
"bankAccountName": "",
"bankName": "Nombank MFB",
"accountRef": "created-wed-28-05-2501",
"accountHolderId": "",
"accountName": "",
"currency": "NGN",
"bvn": "00***",
"expired": false
},
"message": "SUCCESS",
"status": true
}
Copy
curl --request GET \
--url https://vendor-api.kudi.ai/v1/accounts/virtual/{virtualAcctNumber} \
--header 'Authorization: Bearer <token>' \
--header 'accountId: <accountid>'
Copy
{
"code": "00",
"description": "SUCCESS",
"data": {
"createdAt": "2025-05-28T08:23:48.073Z",
"bankAccountNumber": "",
"bankAccountName": "",
"bankName": "Nombank MFB",
"accountRef": "created-wed-28-05-2501",
"accountHolderId": "",
"accountName": "",
"currency": "NGN",
"bvn": "00***",
"expired": false
},
"message": "SUCCESS",
"status": true
}
Assistant
Responses are generated using AI and may contain mistakes.