> For the complete documentation index, see [llms.txt](https://docs.bellmonie.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bellmonie.com/references/virtual-accounts/name-enquiry-internal.md).

# Name Enquiry (Internal)

## Create Client

<mark style="color:green;">`GET`</mark> `/v1/client-enquiry/{{accountNumber}}`

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Response**

{% tabs %}
{% tab title="200" %}

<pre class="language-json"><code class="lang-json"><strong>{
</strong>    "success": true,
    "data": {
        "accountName": "John Doe",
        "accountNumber": "000000018",
        "externalReference": "123456",
        "customAccountNumber": "8020304051",
        "nubanAccountNumber": "NUBAN generation is not enabled",
        "currency": "NGN",
        "accountTier": null,
        "mobileNumber": "08020304051",
        "emailAddress": "john1@doe.com"
    }
}
</code></pre>

{% endtab %}

{% tab title="400" %}

```json
{
  "success": false,
  "message": "Request Un-Successful",
  "data": null
}
```

{% endtab %}
{% endtabs %}
