> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dojah.io/llms.txt
> Use this file to discover all available pages before exploring further.

# NUBAN KYC status

> Check the KYC status and identity details tied to a Nigerian bank account (NUBAN).

<div className="dj-endpoint">
  <span className={`dj-method dj-method-get`}>GET</span>
  <code>/api/v1/kyc/nuban/status</code>
</div>

Return the account holder’s identity and KYC compliance tier for a Nigerian bank account. Unlike Resolve NUBAN (which returns just the name), this returns the linked identity type and kyc\_status tier.

## Headers

| Header          | Required | Description                                         |
| --------------- | -------- | --------------------------------------------------- |
| `Authorization` | Yes      | Your app's secret key, sent as-is — *not* `Bearer`. |
| `AppId`         | Yes      | The App ID from your dashboard.                     |

## Query parameters

| Parameter        | Type    | Required | Description                                                                                            |
| ---------------- | ------- | -------- | ------------------------------------------------------------------------------------------------------ |
| `account_number` | string  | Yes      | The bank account (NUBAN) number.                                                                       |
| `bank_code`      | integer | Yes      | The bank's numeric code. Get the list from [Fetch Banks](/api-reference/financial-credit/fetch-banks). |

## Response

Returns an `entity` with the account name and currency, the resolved identity (`identity_type`, `identity_number`), the holder’s names, and the `kyc_status` tier.

## Errors

| Code  | Meaning                                                                                       |
| ----- | --------------------------------------------------------------------------------------------- |
| `400` | Bad request — a required parameter is missing or malformed.                                   |
| `401` | Unauthorized — check your key and `AppId` (no `Bearer` prefix).                               |
| `402` | Insufficient wallet balance. [Fund your wallet](/api-reference/core-concepts/wallet-billing). |
| `404` | No record found for the supplied identifier.                                                  |
| `429` | Too many requests — back off and retry.                                                       |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    "https://api.dojah.io/api/v1/kyc/nuban/status?account_number=3046XXXX407&bank_code=058" \
    -H "Authorization: {{secret_key}}" \
    -H "AppId: {{app_id}}"
  ```

  ```js Node.js theme={null}
  const params = new URLSearchParams({
    "account_number": "3046XXXX407",
    "bank_code": "058",
  });

  const url = "https://api.dojah.io/api/v1/kyc/nuban/status?" + params;
  const res = await fetch(url, {
    headers: {
      Authorization: process.env.DOJAH_SECRET_KEY,
      AppId: process.env.DOJAH_APP_ID,
    },
  });
  const data = await res.json();
  ```

  ```python Python theme={null}
  import os, requests

  res = requests.get(
      "https://api.dojah.io/api/v1/kyc/nuban/status",
      headers={
          "Authorization": os.environ["DOJAH_SECRET_KEY"],
          "AppId": os.environ["DOJAH_APP_ID"],
      },
      params={
          "account_number": "3046XXXX407",
          "bank_code": "058",
      },
  )
  data = res.json()
  ```
</RequestExample>

<ResponseExample>
  ```json GET /api/v1/kyc/nuban/status theme={null}
  {
    "entity": {
      "account_currency": "NGN",
      "account_name": "JOHN DOE MUSA",
      "account_number": "3046***407",
      "bank": "GTB",
      "kyc_status": "2",
      "first_name": "John",
      "identity_number": "*********556",
      "identity_type": "BVN",
      "last_name": "Musa",
      "other_names": "DOE"
    }
  }
  ```
</ResponseExample>
