> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finup.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Users

> Read and update the current Finup user profile.

The current-user endpoints use the authenticated user from the request credentials.

<Note>
  These endpoints are documented manually because the current filtered public OpenAPI source does not include them yet.
</Note>

## Get current user

```http theme={null}
GET /user
x-api-key: <key>
```

Returns the current user profile.

```json theme={null}
{
  "result": {
    "id": "66b9d4f5a22f2a00124a1c5e",
    "first_name": "Alex",
    "last_name": "Morgan",
    "email": "alex@example.com",
    "email_confirmed": true,
    "two_factor_status": "Enabled",
    "balance": "1000.00",
    "deposit": "2500.00",
    "withdraw": "1500.00"
  }
}
```
