cURL
curl --request GET \ --url https://api.youappz.dev/user \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "username": "<string>", "name": "<string>", "email": "<string>", "createdAt": 123, "updatedAt": 123 }
Retrieves information related to the currently authenticated User.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response retrieving user data.