Skip to main content
GET
https://app.famulor.de
/
api
/
user
/
me
Get User Information
curl --request GET \
  --url https://app.famulor.de/api/user/me \
  --header 'Authorization: Bearer <token>'
{
  "name": "Your Name",
  "email": "[email protected]",
  "total_balance": 100.67447094
}
This endpoint returns the profile information of the currently authenticated user, including account balance.

Response Fields

name
string
The full name of the user
email
string
The email address of the user
total_balance
number
The current total balance of the user account

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
{
  "name": "Your Name",
  "email": "[email protected]",
  "total_balance": 100.67447094
}