Skip to main content
POST
/
api
/
onboarding
/
nigeria_kyc
/
nuban_advanced
NUBAN Advanced
curl --request POST \
  --url https://adhere-api.smartcomply.com/api/onboarding/nigeria_kyc/nuban_advanced/ \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "account_number": "0123456789",
  "bank_code": "044"
}
'
{
  "status": "failed",
  "data": [
    "<unknown>"
  ],
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.smartcomply.com/llms.txt

Use this file to discover all available pages before exploring further.

The NUBAN Advanced endpoint provides a more comprehensive view of a bank account compared to the standard NUBAN check, returning additional identity data linked to the account.

Endpoint

POST /api/onboarding/nigeria_kyc/nuban_advanced/

Request

Headers

HeaderValueRequired
x-access-tokenYour API secret keyYes
Content-Typeapplication/jsonYes

Body Parameters

ParameterTypeRequiredDescription
account_numberstringYesThe 10-digit NUBAN account number
bank_codestringYesThe bank code (see NUBAN bank codes)

Example

curl -X POST "https://adhere-api.smartcomply.com/api/onboarding/nigeria_kyc/nuban_advanced/" \
  -H "x-access-token: YOUR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -d '{"account_number": "0768540312", "bank_code": "035"}'

Response

200 OK

FieldTypeDescription
data.bank_idintegerInternal bank identifier
data.account_namestringRegistered account holder name
data.account_numberstringAccount number that was queried
{
  "status": "success",
  "data": {
    "bank_id": 11,
    "account_name": "STEPHEN BADMUS",
    "account_number": "0768540312"
  },
  "message": "Nuban details retrieved successfully"
}

400 Bad Request

{
  "status": "failed",
  "data": [],
  "message": "Account Number and Bank Code are required"
}

401 Unauthorized

{
  "status": "failed",
  "message": "Authentication credentials were not provided."
}

Authorizations

x-access-token
string
header
required

Your Adhere API secret key

Body

application/json
account_number
string
required
Example:

"0123456789"

bank_code
string
required
Example:

"044"

Response

NUBAN advanced data retrieved