Whenever resetting the password, i will get a link including password reset token using this token how can i get the user related information?
I don't think it is possible. The reset password token can only be used to reset the password via call to accounts.resetPassword API (parameter name: passwordResetToken).
In order to get user related information the accounts.getAccountInfo API should be called, which require other parameters.
HTH