> 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/get-account-info.md).

# Get Account Info

## Create Client

<mark style="color:green;">`GET`</mark> `/v1/account`

**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": {
        "currency": "NGN",
        "accountNumber": "1000040000",
        "productName": "Bell Business Account",
        "accountType": "business",
        "accountName": "A and Y Media",
        "accountTier": 0,
        "createdAt": 1723416950964,
        "updatedAt": 1723416950964,
        "ledgerBalance": "892.00",
        "availableBalance": "892.00"
    }
}
</code></pre>

{% endtab %}

{% tab title="400" %}

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

{% endtab %}
{% endtabs %}
