curl --request GET \
--url https://api.example.com/cabinet/auth/me \
--header 'Authorization: Bearer <token>'{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"telegram_id": 123,
"username": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"email_verified": false,
"balance_kopeks": 0,
"balance_rubles": 0,
"referral_code": "<string>",
"language": "ru",
"auth_type": "telegram"
}Get current authenticated user info.
curl --request GET \
--url https://api.example.com/cabinet/auth/me \
--header 'Authorization: Bearer <token>'{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"telegram_id": 123,
"username": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"email_verified": false,
"balance_kopeks": 0,
"balance_rubles": 0,
"referral_code": "<string>",
"language": "ru",
"auth_type": "telegram"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
User data response.