curl --request GET \
--url http://localhost:8091/api/auth/me \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"username": "<string>",
"displayName": "<string>",
"status": "<string>",
"bot": true,
"createdAt": "2023-11-07T05:31:56Z",
"avatarPath": "<string>"
}
}Returns the authenticated user’s profile.
curl --request GET \
--url http://localhost:8091/api/auth/me \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"username": "<string>",
"displayName": "<string>",
"status": "<string>",
"bot": true,
"createdAt": "2023-11-07T05:31:56Z",
"avatarPath": "<string>"
}
}