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

# Get User Information

> Retrieve the profile, settings and account details of the currently authenticated Famulor user via API. Useful for verifying tokens and account state.

This endpoint returns the profile information of the currently authenticated user, including account balance.

### Response Fields

<ResponseField name="name" type="string">
  The full name of the user
</ResponseField>

<ResponseField name="email" type="string">
  The email address of the user
</ResponseField>

<ResponseField name="total_balance" type="number">
  The current total balance of the user account
</ResponseField>

### Use Cases

This endpoint is useful for:

* **Verify authentication** - Confirm that the API key is valid and belongs to the expected user
* **Check account balance** - Monitor available credits before making API calls
* **Display user information** - Show the current user in your application's user interface

<ResponseExample>
  ```json 200 Response theme={null}
  {
    "name": "Your Name",
    "email": "example@example.com",
    "total_balance": 100.67447094
  }
  ```
</ResponseExample>

<Tip>
  Related pages: [Introduction](/en/api-reference/introduction) and [Authentication Guide](/en/developers/authentication-guide), and [API Integration Examples](/en/developers/api-integration-examples).
</Tip>
