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

# Users

### `GET` current user

## Get the profile of the authenticated user

<mark style="color:blue;">`GET`</mark> `https://api.tability.app/v2/whoami`

Return details about the user associated with the Personal API token provided in the Authorization header.

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

```json
{
    "id": "abcdefgh-1234-5678-9876-abcdef123456",
    "email": "user@example.com",
    "name": "Sam Taylor",
    "firstname": "Sam",
    "lastname": "Taylor",
    "confirmed_at": "2022-04-12T05:47:00.934Z",
    "created_at": "2022-04-12T05:47:01.241Z",
    "updated_at": "2023-12-07T21:13:26.294Z"
}
```

{% endtab %}
{% endtabs %}
