You can get the number of current unread chats (e.g. on the app icon) by calling this method:
HelpCrunch.getUnreadChatsCount(new Callback<Integer>() {
@Override
public void onSuccess(Integer result) {
//handle result
}
@Override
public void onError(@NotNull String message) {
//handle error
}
});