> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ouraicalling.com/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.

<Warning>
  **Famulor 1.0 API (legacy).** This page applies only to Famulor 1.0 (`app.famulor.de`) and is retained for legacy compatibility. For the current platform, use the [Famulor 2.0 API reference](/api-reference/introduction).
</Warning>

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](/api-v1/introduction) and [Authentication Guide](/api-v1/authentication), and [API Integration Examples](/api-v1/introduction).
</Tip>
