> For the complete documentation index, see [llms.txt](https://padiwise.gitbook.io/padiwise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://padiwise.gitbook.io/padiwise/account.md).

# Account Information

Get my account information

<mark style="color:red;">`GET`</mark> `{{ BASE }}/my-account`

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

```javascript
Accept: application/json
Authorization: Bearer {{ access_token }}
```

{% endtab %}

{% tab title="Body" %}

```python
{
    "status": true,
    "message": "success",
    "data": {
        "business_name": "name",
        "email": "email",
        "account": {
            "balance": "balance",
            "commission": "commission"
        }
    }
}
```

{% endtab %}
{% endtabs %}
