# Detail

```html
POST {{uri}}/account/detail
```

***

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

```
{
    "code": 200,
    "message": "Account Information",
    "data": {
        "id": 1,
        "name": "Pretium Technologies Ltd",
        "email": "hello@pretium.co.ke",
        "status": "ACTIVE",
        "wallets": [
            {
                "id": 1,
                "balance": "1000",
                "currency": "KES",
                "country_name": "Kenya"
            },
            {
                "id": 2,
                "balance": "1000",
                "currency": "UGX",
                "country_name": "Uganda"
            }
        ],
        "created_at": "2024-10-21T18:34:32.000000Z"
    }
}
```

{% endtab %}

{% tab title="400 - Bad Request" %}

```
{
   "code": 400,
   "message": "Failed - Bad Request"
}
```

{% endtab %}
{% endtabs %}
